annotate src/share/vm/gc_implementation/g1/heapRegionRemSet.hpp @ 23024:cbc7c4c9e11c

8048179: Early reclaim of large objects that are referenced by a few objects Summary: Push the remembered sets of large objects with few referenced into the dirty card queue at the beginning of the evacuation so that they may end up with zero remembered set entries at the end of the collection, and are potentially reclaimed. Also improve timing measurements of the early reclaim mechanism, and shorten flag names. Reviewed-by: brutisso, jmasa, dfazunen
author tschatzl
date Wed, 07 Jan 2015 15:15:37 +0100
parents 7baf47cb97cb
children dd9cc155639c 626f594dffa6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
1 /*
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
4 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
7 * published by the Free Software Foundation.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
8 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
13 * accompanied this code).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
14 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1390
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1390
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1390
diff changeset
21 * questions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
22 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
23 */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONREMSET_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONREMSET_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
28 #include "gc_implementation/g1/g1CodeCacheRemSet.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "gc_implementation/g1/sparsePRT.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
31 // Remembered set for a heap region. Represent a set of "cards" that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
32 // contain pointers into the owner heap region. Cards are defined somewhat
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
33 // abstractly, in terms of what the "BlockOffsetTable" in use can parse.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
34
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
35 class G1CollectedHeap;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
36 class G1BlockOffsetSharedArray;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
37 class HeapRegion;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
38 class HeapRegionRemSetIterator;
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
39 class PerRegionTable;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
40 class SparsePRT;
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
41 class nmethod;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
42
2173
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
43 // Essentially a wrapper around SparsePRTCleanupTask. See
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
44 // sparsePRT.hpp for more details.
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
45 class HRRSCleanupTask : public SparsePRTCleanupTask {
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
46 };
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
47
17758
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
48 // The FromCardCache remembers the most recently processed card on the heap on
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
49 // a per-region and per-thread basis.
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
50 class FromCardCache : public AllStatic {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
51 private:
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
52 // Array of card indices. Indexed by thread X and heap region to minimize
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
53 // thread contention.
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
54 static int** _cache;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
55 static uint _max_regions;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
56 static size_t _static_mem_size;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
57
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
58 public:
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
59 enum {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
60 InvalidCard = -1 // Card value of an invalid card, i.e. a card index not otherwise used.
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
61 };
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
62
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
63 static void clear(uint region_idx);
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
64
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
65 // Returns true if the given card is in the cache at the given location, or
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
66 // replaces the card at that location and returns false.
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
67 static bool contains_or_replace(uint worker_id, uint region_idx, int card) {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
68 int card_in_cache = at(worker_id, region_idx);
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
69 if (card_in_cache == card) {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
70 return true;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
71 } else {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
72 set(worker_id, region_idx, card);
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
73 return false;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
74 }
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
75 }
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
76
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
77 static int at(uint worker_id, uint region_idx) {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
78 return _cache[worker_id][region_idx];
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
79 }
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
80
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
81 static void set(uint worker_id, uint region_idx, int val) {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
82 _cache[worker_id][region_idx] = val;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
83 }
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
84
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
85 static void initialize(uint n_par_rs, uint max_num_regions);
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
86
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
87 static void invalidate(uint start_idx, size_t num_regions);
17758
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
88
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
89 static void print(outputStream* out = gclog_or_tty) PRODUCT_RETURN;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
90
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
91 static size_t static_mem_size() {
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
92 return _static_mem_size;
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
93 }
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
94 };
ae7336d6337e 8034868: Extract G1 From Card Cache into separate class
tschatzl
parents: 17754
diff changeset
95
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
96 // The "_coarse_map" is a bitmap with one bit for each region, where set
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
97 // bits indicate that the corresponding region may contain some pointer
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
98 // into the owning region.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
99
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
100 // The "_fine_grain_entries" array is an open hash table of PerRegionTables
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
101 // (PRTs), indicating regions for which we're keeping the RS as a set of
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
102 // cards. The strategy is to cap the size of the fine-grain table,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
103 // deleting an entry and setting the corresponding coarse-grained bit when
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
104 // we would overflow this cap.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
105
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
106 // We use a mixture of locking and lock-free techniques here. We allow
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
107 // threads to locate PRTs without locking, but threads attempting to alter
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
108 // a bucket list obtain a lock. This means that any failing attempt to
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
109 // find a PRT must be retried with the lock. It might seem dangerous that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
110 // a read can find a PRT that is concurrently deleted. This is all right,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
111 // because:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
112 //
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
113 // 1) We only actually free PRT's at safe points (though we reuse them at
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
114 // other times).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
115 // 2) We find PRT's in an attempt to add entries. If a PRT is deleted,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
116 // it's _coarse_map bit is set, so the that we were attempting to add
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
117 // is represented. If a deleted PRT is re-used, a thread adding a bit,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
118 // thinking the PRT is for a different region, does no harm.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
119
549
fe3d7c11b4b7 6700941: G1: allocation spec missing for some G1 classes
apetrusenko
parents: 342
diff changeset
120 class OtherRegionsTable VALUE_OBJ_CLASS_SPEC {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
121 friend class HeapRegionRemSetIterator;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
122
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
123 G1CollectedHeap* _g1h;
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
124 Mutex* _m;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
125 HeapRegion* _hr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
126
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
127 // These are protected by "_m".
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
128 BitMap _coarse_map;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
129 size_t _n_coarse_entries;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
130 static jint _n_coarsenings;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
131
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
132 PerRegionTable** _fine_grain_regions;
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
133 size_t _n_fine_entries;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
134
6253
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
135 // The fine grain remembered sets are doubly linked together using
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
136 // their 'next' and 'prev' fields.
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
137 // This allows fast bulk freeing of all the fine grain remembered
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
138 // set entries, and fast finding of all of them without iterating
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
139 // over the _fine_grain_regions table.
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
140 PerRegionTable * _first_all_fine_prts;
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
141 PerRegionTable * _last_all_fine_prts;
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
142
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
143 // Used to sample a subset of the fine grain PRTs to determine which
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
144 // PRT to evict and coarsen.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
145 size_t _fine_eviction_start;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
146 static size_t _fine_eviction_stride;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
147 static size_t _fine_eviction_sample_size;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
148
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
149 SparsePRT _sparse_table;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
150
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
151 // These are static after init.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
152 static size_t _max_fine_entries;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
153 static size_t _mod_max_fine_entries_mask;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
154
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
155 // Requires "prt" to be the first element of the bucket list appropriate
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
156 // for "hr". If this list contains an entry for "hr", return it,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
157 // otherwise return "NULL".
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
158 PerRegionTable* find_region_table(size_t ind, HeapRegion* hr) const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
159
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
160 // Find, delete, and return a candidate PerRegionTable, if any exists,
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
161 // adding the deleted region to the coarse bitmap. Requires the caller
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
162 // to hold _m, and the fine-grain table to be full.
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
163 PerRegionTable* delete_region_table();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
164
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
165 // If a PRT for "hr" is in the bucket list indicated by "ind" (which must
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
166 // be the correct index for "hr"), delete it and return true; else return
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
167 // false.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
168 bool del_single_region_table(size_t ind, HeapRegion* hr);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
169
6253
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
170 // link/add the given fine grain remembered set into the "all" list
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
171 void link_to_all(PerRegionTable * prt);
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
172 // unlink/remove the given fine grain remembered set into the "all" list
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
173 void unlink_from_all(PerRegionTable * prt);
db823a892a55 7182260: G1: Fine grain RSet freeing bottleneck
johnc
parents: 6198
diff changeset
174
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
175 public:
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
176 OtherRegionsTable(HeapRegion* hr, Mutex* m);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
177
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
178 HeapRegion* hr() const { return _hr; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
179
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
180 // For now. Could "expand" some tables in the future, so that this made
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
181 // sense.
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
182 void add_reference(OopOrNarrowOopStar from, int tid);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
183
23024
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
184 // Returns whether this remembered set (and all sub-sets) have an occupancy
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
185 // that is less or equal than the given occupancy.
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
186 bool occupancy_less_or_equal_than(size_t limit) const;
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
187
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
188 // Removes any entries shown by the given bitmaps to contain only dead
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
189 // objects.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
190 void scrub(CardTableModRefBS* ctbs, BitMap* region_bm, BitMap* card_bm);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
191
20296
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
192 // Returns whether this remembered set (and all sub-sets) contain no entries.
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
193 bool is_empty() const;
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
194
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
195 size_t occupied() const;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
196 size_t occ_fine() const;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
197 size_t occ_coarse() const;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
198 size_t occ_sparse() const;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
199
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
200 static jint n_coarsenings() { return _n_coarsenings; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
201
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
202 // Returns size in bytes.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
203 // Not const because it takes a lock.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
204 size_t mem_size() const;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
205 static size_t static_mem_size();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
206 static size_t fl_mem_size();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
207
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
208 bool contains_reference(OopOrNarrowOopStar from) const;
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
209 bool contains_reference_locked(OopOrNarrowOopStar from) const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
210
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
211 void clear();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
212
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
213 // Specifically clear the from_card_cache.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
214 void clear_fcc();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
215
2173
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
216 void do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task);
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
217
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
218 // Declare the heap size (in # of regions) to the OtherRegionsTable.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
219 // (Uses it to initialize from_card_cache).
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
220 static void initialize(uint max_regions);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
221
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
222 // Declares that regions between start_idx <= i < start_idx + num_regions are
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
223 // not in use. Make sure that any entries for these regions are invalid.
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
224 static void invalidate(uint start_idx, size_t num_regions);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
225
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
226 static void print_from_card_cache();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
227 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
228
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6010
diff changeset
229 class HeapRegionRemSet : public CHeapObj<mtGC> {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
230 friend class VMStructs;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
231 friend class HeapRegionRemSetIterator;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
232
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
233 public:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
234 enum Event {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
235 Event_EvacStart, Event_EvacEnd, Event_RSUpdateEnd
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
236 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
237
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
238 private:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
239 G1BlockOffsetSharedArray* _bosa;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
240 G1BlockOffsetSharedArray* bosa() const { return _bosa; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
241
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
242 // A set of code blobs (nmethods) whose code contains pointers into
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
243 // the region that owns this RSet.
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
244 G1CodeRootSet _code_roots;
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
245
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
246 Mutex _m;
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
247
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
248 OtherRegionsTable _other_regions;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
249
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
250 enum ParIterState { Unclaimed, Claimed, Complete };
1261
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
251 volatile ParIterState _iter_state;
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
252 volatile jlong _iter_claimed;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
253
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
254 // Unused unless G1RecordHRRSOops is true.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
255
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
256 static const int MaxRecorded = 1000000;
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
257 static OopOrNarrowOopStar* _recorded_oops;
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
258 static HeapWord** _recorded_cards;
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
259 static HeapRegion** _recorded_regions;
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
260 static int _n_recorded;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
261
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
262 static const int MaxRecordedEvents = 1000;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
263 static Event* _recorded_events;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
264 static int* _recorded_event_index;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
265 static int _n_recorded_events;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
266
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
267 static void print_event(outputStream* str, Event evnt);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
268
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
269 public:
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
270 HeapRegionRemSet(G1BlockOffsetSharedArray* bosa, HeapRegion* hr);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
271
17754
d7070f371770 8035815: Cache-align and pad the from card cache
tschatzl
parents: 17753
diff changeset
272 static uint num_par_rem_sets();
1261
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
273 static void setup_remset_size();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
274
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
275 HeapRegion* hr() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
276 return _other_regions.hr();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
277 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
278
20296
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
279 bool is_empty() const {
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
280 return (strong_code_roots_list_length() == 0) && _other_regions.is_empty();
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
281 }
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
282
23024
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
283 bool occupancy_less_or_equal_than(size_t occ) const {
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
284 return (strong_code_roots_list_length() == 0) && _other_regions.occupancy_less_or_equal_than(occ);
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
285 }
cbc7c4c9e11c 8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents: 20494
diff changeset
286
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
287 size_t occupied() {
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
288 MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag);
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
289 return occupied_locked();
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
290 }
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
291 size_t occupied_locked() {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
292 return _other_regions.occupied();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
293 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
294 size_t occ_fine() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
295 return _other_regions.occ_fine();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
296 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
297 size_t occ_coarse() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
298 return _other_regions.occ_coarse();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
299 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
300 size_t occ_sparse() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
301 return _other_regions.occ_sparse();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
302 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
303
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
304 static jint n_coarsenings() { return OtherRegionsTable::n_coarsenings(); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
305
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
306 // Used in the sequential case.
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
307 void add_reference(OopOrNarrowOopStar from) {
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
308 _other_regions.add_reference(from, 0);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
309 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
310
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
311 // Used in the parallel case.
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
312 void add_reference(OopOrNarrowOopStar from, int tid) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
313 _other_regions.add_reference(from, tid);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
314 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
315
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
316 // Removes any entries shown by the given bitmaps to contain only dead
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
317 // objects.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
318 void scrub(CardTableModRefBS* ctbs, BitMap* region_bm, BitMap* card_bm);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
319
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
320 // The region is being reclaimed; clear its remset, and any mention of
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
321 // entries for this region in other remsets.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
322 void clear();
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
323 void clear_locked();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
324
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
325 // Attempt to claim the region. Returns true iff this call caused an
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
326 // atomic transition from Unclaimed to Claimed.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
327 bool claim_iter();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
328 // Sets the iteration state to "complete".
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
329 void set_iter_complete();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
330 // Returns "true" iff the region's iteration is complete.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
331 bool iter_is_complete();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
332
1261
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
333 // Support for claiming blocks of cards during iteration
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
334 size_t iter_claimed() const { return (size_t)_iter_claimed; }
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
335 // Claim the next block of cards
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
336 size_t iter_claimed_next(size_t step) {
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
337 size_t current, next;
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
338 do {
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
339 current = iter_claimed();
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
340 next = current + step;
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
341 } while (Atomic::cmpxchg((jlong)next, &_iter_claimed, (jlong)current) != (jlong)current);
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
342 return current;
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
343 }
3777
e8b0b0392037 7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents: 2173
diff changeset
344 void reset_for_par_iteration();
e8b0b0392037 7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents: 2173
diff changeset
345
e8b0b0392037 7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents: 2173
diff changeset
346 bool verify_ready_for_par_iteration() {
e8b0b0392037 7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents: 2173
diff changeset
347 return (_iter_state == Unclaimed) && (_iter_claimed == 0);
e8b0b0392037 7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents: 2173
diff changeset
348 }
1261
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
349
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
350 // The actual # of bytes this hr_remset takes up.
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
351 // Note also includes the strong code root set.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
352 size_t mem_size() {
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
353 MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
354 return _other_regions.mem_size()
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
355 // This correction is necessary because the above includes the second
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
356 // part.
20218
828056cf311f 8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname)
tschatzl
parents: 20214
diff changeset
357 + (sizeof(HeapRegionRemSet) - sizeof(OtherRegionsTable))
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
358 + strong_code_roots_mem_size();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
359 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
360
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
361 // Returns the memory occupancy of all static data structures associated
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
362 // with remembered sets.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
363 static size_t static_mem_size() {
20494
7baf47cb97cb 8048268: G1 Code Root Migration performs poorly
mgerdin
parents: 20337
diff changeset
364 return OtherRegionsTable::static_mem_size() + G1CodeRootSet::static_mem_size();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
365 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
366
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
367 // Returns the memory occupancy of all free_list data structures associated
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
368 // with remembered sets.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
369 static size_t fl_mem_size() {
20494
7baf47cb97cb 8048268: G1 Code Root Migration performs poorly
mgerdin
parents: 20337
diff changeset
370 return OtherRegionsTable::fl_mem_size();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
371 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
372
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
373 bool contains_reference(OopOrNarrowOopStar from) const {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
374 return _other_regions.contains_reference(from);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
375 }
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
376
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
377 // Routines for managing the list of code roots that point into
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
378 // the heap region that owns this RSet.
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
379 void add_strong_code_root(nmethod* nm);
20494
7baf47cb97cb 8048268: G1 Code Root Migration performs poorly
mgerdin
parents: 20337
diff changeset
380 void add_strong_code_root_locked(nmethod* nm);
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
381 void remove_strong_code_root(nmethod* nm);
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
382
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
383 // Applies blk->do_code_blob() to each of the entries in
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
384 // the strong code roots list
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
385 void strong_code_roots_do(CodeBlobClosure* blk) const;
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
386
20494
7baf47cb97cb 8048268: G1 Code Root Migration performs poorly
mgerdin
parents: 20337
diff changeset
387 void clean_strong_code_roots(HeapRegion* hr);
7baf47cb97cb 8048268: G1 Code Root Migration performs poorly
mgerdin
parents: 20337
diff changeset
388
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
389 // Returns the number of elements in the strong code roots list
20296
a3953c777565 8027959: Early reclamation of large objects in G1
tschatzl
parents: 20218
diff changeset
390 size_t strong_code_roots_list_length() const {
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
391 return _code_roots.length();
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
392 }
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
393
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
394 // Returns true if the strong code roots contains the given
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
395 // nmethod.
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
396 bool strong_code_roots_list_contains(nmethod* nm) {
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
397 return _code_roots.contains(nm);
12080
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
398 }
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
399
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
400 // Returns the amount of memory, in bytes, currently
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
401 // consumed by the strong code roots.
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
402 size_t strong_code_roots_mem_size();
5888334c9c24 7145569: G1: optimize nmethods scanning
johnc
parents: 10333
diff changeset
403
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
404 void print() PRODUCT_RETURN;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
405
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
406 // Called during a stop-world phase to perform any deferred cleanups.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
407 static void cleanup();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
408
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
409 // Declare the heap size (in # of regions) to the HeapRegionRemSet(s).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
410 // (Uses it to initialize from_card_cache).
6010
720b6a76dd9d 7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents: 3986
diff changeset
411 static void init_heap(uint max_regions) {
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
412 OtherRegionsTable::initialize(max_regions);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
413 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
414
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
415 static void invalidate(uint start_idx, uint num_regions) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20296
diff changeset
416 OtherRegionsTable::invalidate(start_idx, num_regions);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
417 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
418
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
419 #ifndef PRODUCT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
420 static void print_from_card_cache() {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
421 OtherRegionsTable::print_from_card_cache();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
422 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
423 #endif
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
424
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 794
diff changeset
425 static void record(HeapRegion* hr, OopOrNarrowOopStar f);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
426 static void print_recorded();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
427 static void record_event(Event evnt);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
428
2173
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
429 // These are wrappers for the similarly-named methods on
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
430 // SparsePRT. Look at sparsePRT.hpp for more details.
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
431 static void reset_for_cleanup_tasks();
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
432 void do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task);
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
433 static void finish_cleanup_task(HRRSCleanupTask* hrrs_cleanup_task);
97ba643ea3ed 7014261: G1: RSet-related failures
tonyp
parents: 1972
diff changeset
434
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
435 // Run unit tests.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
436 #ifndef PRODUCT
10333
6702da6b6082 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 10182
diff changeset
437 static void test_prt();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
438 static void test();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
439 #endif
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
440 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
441
10182
5c93c1f61226 8011724: G1: Stack allocate instances of HeapRegionRemSetIterator
johnc
parents: 6253
diff changeset
442 class HeapRegionRemSetIterator : public StackObj {
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
443 private:
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
444 // The region RSet over which we are iterating.
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
445 HeapRegionRemSet* _hrrs;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
446
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
447 // Local caching of HRRS fields.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
448 const BitMap* _coarse_map;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
449
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
450 G1BlockOffsetSharedArray* _bosa;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
451 G1CollectedHeap* _g1h;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
452
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
453 // The number of cards yielded since initialization.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
454 size_t _n_yielded_fine;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
455 size_t _n_yielded_coarse;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
456 size_t _n_yielded_sparse;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
457
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
458 // Indicates what granularity of table that we are currently iterating over.
10182
5c93c1f61226 8011724: G1: Stack allocate instances of HeapRegionRemSetIterator
johnc
parents: 6253
diff changeset
459 // We start iterating over the sparse table, progress to the fine grain
5c93c1f61226 8011724: G1: Stack allocate instances of HeapRegionRemSetIterator
johnc
parents: 6253
diff changeset
460 // table, and then finish with the coarse table.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
461 enum IterState {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
462 Sparse,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
463 Fine,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
464 Coarse
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
465 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
466 IterState _is;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
467
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
468 // For both Coarse and Fine remembered set iteration this contains the
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
469 // first card number of the heap region we currently iterate over.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
470 size_t _cur_region_card_offset;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
471
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
472 // Current region index for the Coarse remembered set iteration.
3986
65a8ff39a6da 7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents: 3777
diff changeset
473 int _coarse_cur_region_index;
65a8ff39a6da 7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents: 3777
diff changeset
474 size_t _coarse_cur_region_cur_card;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
475
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
476 bool coarse_has_next(size_t& card_index);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
477
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
478 // The PRT we are currently iterating over.
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
479 PerRegionTable* _fine_cur_prt;
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
480 // Card offset within the current PRT.
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
481 size_t _cur_card_in_prt;
6188
7994a5a35fcf 6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents: 6010
diff changeset
482
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
483 // Update internal variables when switching to the given PRT.
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
484 void switch_to_prt(PerRegionTable* prt);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
485 bool fine_has_next();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
486 bool fine_has_next(size_t& card_index);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
487
20213
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
488 // The Sparse remembered set iterator.
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
489 SparsePRTIter _sparse_iter;
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
490
ff7b317d2af8 8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents: 20211
diff changeset
491 public:
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17467
diff changeset
492 HeapRegionRemSetIterator(HeapRegionRemSet* hrrs);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
493
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
494 // If there remains one or more cards to be yielded, returns true and
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
495 // sets "card_index" to one of those cards (which is then considered
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
496 // yielded.) Otherwise, returns false (and leaves "card_index"
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
497 // undefined.)
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
498 bool has_next(size_t& card_index);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
499
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
500 size_t n_yielded_fine() { return _n_yielded_fine; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
501 size_t n_yielded_coarse() { return _n_yielded_coarse; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
502 size_t n_yielded_sparse() { return _n_yielded_sparse; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
503 size_t n_yielded() {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
504 return n_yielded_fine() + n_yielded_coarse() + n_yielded_sparse();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
505 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
506 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
507
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
508 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONREMSET_HPP