annotate src/share/vm/memory/cardTableModRefBS.hpp @ 356:1ee8caae33af

Merge
author tonyp
date Thu, 21 Aug 2008 23:36:31 -0400
parents 37f87013dfd8 d1605aabd0a1
children 2494ab195856
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 2000-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // This kind of "BarrierSet" allows a "CollectedHeap" to detect and
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // enumerate ref fields that have been modified (since the last
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // enumeration.)
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // As it currently stands, this barrier is *imprecise*: when a ref field in
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // an object "o" is modified, the card table entry for the card containing
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // the head of "o" is dirtied, not necessarily the card containing the
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // modified field itself. For object arrays, however, the barrier *is*
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // precise; only the card containing the modified element is dirtied.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Any MemRegionClosures used to scan dirty cards should take these
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // considerations into account.
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class Generation;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class OopsInGenClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class DirtyCardToOopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class CardTableModRefBS: public ModRefBarrierSet {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Some classes get to look at some private stuff.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 friend class BytecodeInterpreter;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 friend class CardTableRS;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 friend class CheckForUnmarkedOops; // Needs access to raw card bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // For debugging.
a61af66fc99e Initial load
duke
parents:
diff changeset
49 friend class GuaranteeNotModClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
51 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 enum CardValues {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 clean_card = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
55 dirty_card = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
56 precleaned_card = 1,
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
57 claimed_card = 3,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 last_card = 4,
a61af66fc99e Initial load
duke
parents:
diff changeset
59 CT_MR_BS_last_reserved = 10
a61af66fc99e Initial load
duke
parents:
diff changeset
60 };
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // dirty and precleaned are equivalent wrt younger_refs_iter.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 static bool card_is_dirty_wrt_gen_iter(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 return cv == dirty_card || cv == precleaned_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Returns "true" iff the value "cv" will cause the card containing it
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // to be scanned in the current traversal. May be overridden by
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // subtypes.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 virtual bool card_will_be_scanned(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 return CardTableModRefBS::card_is_dirty_wrt_gen_iter(cv);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Returns "true" iff the value "cv" may have represented a dirty card at
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // some point.
a61af66fc99e Initial load
duke
parents:
diff changeset
76 virtual bool card_may_have_been_dirty(jbyte cv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return card_is_dirty_wrt_gen_iter(cv);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // The declaration order of these const fields is important; see the
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // constructor before changing.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 const MemRegion _whole_heap; // the region covered by the card table
a61af66fc99e Initial load
duke
parents:
diff changeset
83 const size_t _guard_index; // index of very last element in the card
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // table; it is set to a guard value
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // (last_card) and should never be modified
a61af66fc99e Initial load
duke
parents:
diff changeset
86 const size_t _last_valid_index; // index of the last valid element
a61af66fc99e Initial load
duke
parents:
diff changeset
87 const size_t _page_size; // page size used when mapping _byte_map
a61af66fc99e Initial load
duke
parents:
diff changeset
88 const size_t _byte_map_size; // in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
89 jbyte* _byte_map; // the card marking array
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 int _cur_covered_regions;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // The covered regions should be in address order.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 MemRegion* _covered;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // The committed regions correspond one-to-one to the covered regions.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // They represent the card-table memory that has been committed to service
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // the corresponding covered region. It may be that committed region for
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // one covered region corresponds to a larger region because of page-size
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // roundings. Thus, a committed region for one covered region may
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // actually extend onto the card-table space for the next covered region.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 MemRegion* _committed;
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // The last card is a guard card, and we commit the page for it so
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // we can use the card for verification purposes. We make sure we never
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // uncommit the MemRegion for that page.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 MemRegion _guard_region;
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Initialization utilities; covered_words is the size of the covered region
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // in, um, words.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 inline size_t cards_required(size_t covered_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 inline size_t compute_byte_map_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Finds and return the index of the region, if any, to which the given
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // region would be contiguous. If none exists, assign a new region and
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // returns its index. Requires that no more than the maximum number of
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // covered regions defined in the constructor are ever in use.
a61af66fc99e Initial load
duke
parents:
diff changeset
117 int find_covering_region_by_base(HeapWord* base);
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Same as above, but finds the region containing the given address
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // instead of starting at a given base address.
a61af66fc99e Initial load
duke
parents:
diff changeset
121 int find_covering_region_containing(HeapWord* addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Resize one of the regions covered by the remembered set.
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void resize_covered_region(MemRegion new_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Returns the leftmost end of a committed region corresponding to a
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // covered region before covered region "ind", or else "NULL" if "ind" is
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // the first covered region.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 HeapWord* largest_prev_committed_end(int ind) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Returns the part of the region mr that doesn't intersect with
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // any committed region other than self. Used to prevent uncommitting
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // regions that are also committed by other regions. Also protects
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // against uncommitting the guard region.
a61af66fc99e Initial load
duke
parents:
diff changeset
135 MemRegion committed_unique_to_self(int self, MemRegion mr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Mapping from address to card marking array entry
a61af66fc99e Initial load
duke
parents:
diff changeset
138 jbyte* byte_for(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 assert(_whole_heap.contains(p),
a61af66fc99e Initial load
duke
parents:
diff changeset
140 "out of bounds access to card marking array");
a61af66fc99e Initial load
duke
parents:
diff changeset
141 jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
a61af66fc99e Initial load
duke
parents:
diff changeset
142 assert(result >= _byte_map && result < _byte_map + _byte_map_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
143 "out of bounds accessor for card marking array");
a61af66fc99e Initial load
duke
parents:
diff changeset
144 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // The card table byte one after the card marking array
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // entry for argument address. Typically used for higher bounds
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // for loops iterating through the card table.
a61af66fc99e Initial load
duke
parents:
diff changeset
150 jbyte* byte_after(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return byte_for(p) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Iterate over the portion of the card-table which covers the given
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // region mr in the given space and apply cl to any dirty sub-regions
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // of mr. cl and dcto_cl must either be the same closure or cl must
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // wrap dcto_cl. Both are required - neither may be NULL. Also, dcto_cl
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // may be modified. Note that this function will operate in a parallel
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // mode if worker threads are available.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void non_clean_card_iterate(Space* sp, MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
161 DirtyCardToOopClosure* dcto_cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
162 MemRegionClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
163 bool clear);
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Utility function used to implement the other versions below.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 void non_clean_card_iterate_work(MemRegion mr, MemRegionClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
167 bool clear);
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void par_non_clean_card_iterate_work(Space* sp, MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
170 DirtyCardToOopClosure* dcto_cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
171 MemRegionClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
172 bool clear,
a61af66fc99e Initial load
duke
parents:
diff changeset
173 int n_threads);
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // Dirty the bytes corresponding to "mr" (not all of which must be
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // covered.)
a61af66fc99e Initial load
duke
parents:
diff changeset
177 void dirty_MemRegion(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Clear (to clean_card) the bytes entirely contained within "mr" (not
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // all of which must be covered.)
a61af66fc99e Initial load
duke
parents:
diff changeset
181 void clear_MemRegion(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // *** Support for parallel card scanning.
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 enum SomeConstantsForParallelism {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 StridesPerThread = 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
187 CardsPerStrideChunk = 256
a61af66fc99e Initial load
duke
parents:
diff changeset
188 };
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // This is an array, one element per covered region of the card table.
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Each entry is itself an array, with one element per chunk in the
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // covered region. Each entry of these arrays is the lowest non-clean
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // card of the corresponding chunk containing part of an object from the
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // previous chunk, or else NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
195 typedef jbyte* CardPtr;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 typedef CardPtr* CardArr;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 CardArr* _lowest_non_clean;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 size_t* _lowest_non_clean_chunk_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 uintptr_t* _lowest_non_clean_base_chunk_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 int* _last_LNC_resizing_collection;
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // Initializes "lowest_non_clean" to point to the array for the region
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // covering "sp", and "lowest_non_clean_base_chunk_index" to the chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // index of the corresponding to the first element of that array.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Ensures that these arrays are of sufficient size, allocating if necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // May be called by several threads concurrently.
a61af66fc99e Initial load
duke
parents:
diff changeset
207 void get_LNC_array_for_space(Space* sp,
a61af66fc99e Initial load
duke
parents:
diff changeset
208 jbyte**& lowest_non_clean,
a61af66fc99e Initial load
duke
parents:
diff changeset
209 uintptr_t& lowest_non_clean_base_chunk_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 size_t& lowest_non_clean_chunk_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // Returns the number of chunks necessary to cover "mr".
a61af66fc99e Initial load
duke
parents:
diff changeset
213 size_t chunks_to_cover(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 return (size_t)(addr_to_chunk_index(mr.last()) -
a61af66fc99e Initial load
duke
parents:
diff changeset
215 addr_to_chunk_index(mr.start()) + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // Returns the index of the chunk in a stride which
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // covers the given address.
a61af66fc99e Initial load
duke
parents:
diff changeset
220 uintptr_t addr_to_chunk_index(const void* addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 uintptr_t card = (uintptr_t) byte_for(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 return card / CardsPerStrideChunk;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // Apply cl, which must either itself apply dcto_cl or be dcto_cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // to the cards in the stride (of n_strides) within the given space.
a61af66fc99e Initial load
duke
parents:
diff changeset
227 void process_stride(Space* sp,
a61af66fc99e Initial load
duke
parents:
diff changeset
228 MemRegion used,
a61af66fc99e Initial load
duke
parents:
diff changeset
229 jint stride, int n_strides,
a61af66fc99e Initial load
duke
parents:
diff changeset
230 DirtyCardToOopClosure* dcto_cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
231 MemRegionClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
232 bool clear,
a61af66fc99e Initial load
duke
parents:
diff changeset
233 jbyte** lowest_non_clean,
a61af66fc99e Initial load
duke
parents:
diff changeset
234 uintptr_t lowest_non_clean_base_chunk_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
235 size_t lowest_non_clean_chunk_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Makes sure that chunk boundaries are handled appropriately, by
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // adjusting the min_done of dcto_cl, and by using a special card-table
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // value to indicate how min_done should be set.
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void process_chunk_boundaries(Space* sp,
a61af66fc99e Initial load
duke
parents:
diff changeset
241 DirtyCardToOopClosure* dcto_cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
242 MemRegion chunk_mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
243 MemRegion used,
a61af66fc99e Initial load
duke
parents:
diff changeset
244 jbyte** lowest_non_clean,
a61af66fc99e Initial load
duke
parents:
diff changeset
245 uintptr_t lowest_non_clean_base_chunk_index,
a61af66fc99e Initial load
duke
parents:
diff changeset
246 size_t lowest_non_clean_chunk_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // Constants
a61af66fc99e Initial load
duke
parents:
diff changeset
250 enum SomePublicConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 card_shift = 9,
a61af66fc99e Initial load
duke
parents:
diff changeset
252 card_size = 1 << card_shift,
a61af66fc99e Initial load
duke
parents:
diff changeset
253 card_size_in_words = card_size / sizeof(HeapWord)
a61af66fc99e Initial load
duke
parents:
diff changeset
254 };
a61af66fc99e Initial load
duke
parents:
diff changeset
255
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
256 static int clean_card_val() { return clean_card; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
257 static int dirty_card_val() { return dirty_card; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
258 static int claimed_card_val() { return claimed_card; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
259 static int precleaned_card_val() { return precleaned_card; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
260
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // For RTTI simulation.
a61af66fc99e Initial load
duke
parents:
diff changeset
262 bool is_a(BarrierSet::Name bsn) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
263 return bsn == BarrierSet::CardTableModRef || ModRefBarrierSet::is_a(bsn);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 CardTableModRefBS(MemRegion whole_heap, int max_covered_regions);
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // *** Barrier set functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
269
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
270 bool has_write_ref_pre_barrier() { return false; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
271
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
272 inline bool write_ref_needs_barrier(void* field, oop new_val) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // Note that this assumes the perm gen is the highest generation
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // in the address space
a61af66fc99e Initial load
duke
parents:
diff changeset
275 return new_val != NULL && !new_val->is_perm();
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Record a reference update. Note that these versions are precise!
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // The scanning code has to handle the fact that the write barrier may be
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // either precise or imprecise. We make non-virtual inline variants of
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // these functions here for performance.
a61af66fc99e Initial load
duke
parents:
diff changeset
282 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
283 void write_ref_field_work(oop obj, size_t offset, oop newVal);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
284 void write_ref_field_work(void* field, oop newVal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
285 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 bool has_write_ref_array_opt() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
288 bool has_write_region_opt() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 inline void inline_write_region(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 dirty_MemRegion(mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
294 void write_region_work(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 inline_write_region(mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 inline void inline_write_ref_array(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 dirty_MemRegion(mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
303 void write_ref_array_work(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 inline_write_ref_array(mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 bool is_aligned(HeapWord* addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 return is_card_aligned(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // *** Card-table-barrier-specific things.
a61af66fc99e Initial load
duke
parents:
diff changeset
313
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
314 inline void inline_write_ref_field_pre(void* field, oop newVal) {}
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
315
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
316 inline void inline_write_ref_field(void* field, oop newVal) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
317 jbyte* byte = byte_for(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
318 *byte = dirty_card;
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
321 // These are used by G1, when it uses the card table as a temporary data
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
322 // structure for card claiming.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
323 bool is_card_dirty(size_t card_index) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
324 return _byte_map[card_index] == dirty_card_val();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
325 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
326
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
327 void mark_card_dirty(size_t card_index) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
328 _byte_map[card_index] = dirty_card_val();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
329 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
330
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
331 bool is_card_claimed(size_t card_index) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
332 return _byte_map[card_index] == claimed_card_val();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
333 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
334
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
335 bool claim_card(size_t card_index);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
336
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
337 bool is_card_clean(size_t card_index) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
338 return _byte_map[card_index] == clean_card_val();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
339 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
340
0
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Card marking array base (adjusted for heap low boundary)
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // This would be the 0th element of _byte_map, if the heap started at 0x0.
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // But since the heap starts at some higher address, this points to somewhere
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // before the beginning of the actual _byte_map.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 jbyte* byte_map_base;
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // Return true if "p" is at the start of a card.
a61af66fc99e Initial load
duke
parents:
diff changeset
348 bool is_card_aligned(HeapWord* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
349 jbyte* pcard = byte_for(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 return (addr_for(pcard) == p);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // The kinds of precision a CardTableModRefBS may offer.
a61af66fc99e Initial load
duke
parents:
diff changeset
354 enum PrecisionStyle {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 Precise,
a61af66fc99e Initial load
duke
parents:
diff changeset
356 ObjHeadPreciseArray
a61af66fc99e Initial load
duke
parents:
diff changeset
357 };
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // Tells what style of precision this card table offers.
a61af66fc99e Initial load
duke
parents:
diff changeset
360 PrecisionStyle precision() {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 return ObjHeadPreciseArray; // Only one supported for now.
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // ModRefBS functions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
365 virtual void invalidate(MemRegion mr, bool whole_heap = false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void clear(MemRegion mr);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
367 void dirty(MemRegion mr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
368 void mod_oop_in_space_iterate(Space* sp, OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
369 bool clear = false,
a61af66fc99e Initial load
duke
parents:
diff changeset
370 bool before_save_marks = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // *** Card-table-RemSet-specific things.
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Invoke "cl.do_MemRegion" on a set of MemRegions that collectively
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // includes all the modified cards (expressing each card as a
a61af66fc99e Initial load
duke
parents:
diff changeset
376 // MemRegion). Thus, several modified cards may be lumped into one
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // region. The regions are non-overlapping, and are visited in
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // *decreasing* address order. (This order aids with imprecise card
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // marking, where a dirty card may cause scanning, and summarization
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // marking, of objects that extend onto subsequent cards.)
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // If "clear" is true, the card is (conceptually) marked unmodified before
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // applying the closure.
a61af66fc99e Initial load
duke
parents:
diff changeset
383 void mod_card_iterate(MemRegionClosure* cl, bool clear = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 non_clean_card_iterate_work(_whole_heap, cl, clear);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // Like the "mod_cards_iterate" above, except only invokes the closure
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // for cards within the MemRegion "mr" (which is required to be
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // card-aligned and sized.)
a61af66fc99e Initial load
duke
parents:
diff changeset
390 void mod_card_iterate(MemRegion mr, MemRegionClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
391 bool clear = false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 non_clean_card_iterate_work(mr, cl, clear);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 static uintx ct_max_alignment_constraint();
a61af66fc99e Initial load
duke
parents:
diff changeset
396
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
397 // Apply closure "cl" to the dirty cards containing some part of
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
398 // MemRegion "mr".
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
399 void dirty_card_iterate(MemRegion mr, MemRegionClosure* cl);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // Return the MemRegion corresponding to the first maximal run
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
402 // of dirty cards lying completely within MemRegion mr.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
403 // If reset is "true", then sets those card table entries to the given
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
404 // value.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
405 MemRegion dirty_card_range_after_reset(MemRegion mr, bool reset,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
406 int reset_val);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // Set all the dirty cards in the given region to precleaned state.
a61af66fc99e Initial load
duke
parents:
diff changeset
409 void preclean_dirty_cards(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
410
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
411 // Provide read-only access to the card table array.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
412 const jbyte* byte_for_const(const void* p) const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
413 return byte_for(p);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
414 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
415 const jbyte* byte_after_const(const void* p) const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
416 return byte_after(p);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
417 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
418
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
419 // Mapping from card marking array entry to address of first word
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
420 HeapWord* addr_for(const jbyte* p) const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
421 assert(p >= _byte_map && p < _byte_map + _byte_map_size,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
422 "out of bounds access to card marking array");
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
423 size_t delta = pointer_delta(p, byte_map_base, sizeof(jbyte));
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
424 HeapWord* result = (HeapWord*) (delta << card_shift);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
425 assert(_whole_heap.contains(result),
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
426 "out of bounds accessor from card marking array");
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
427 return result;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
428 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
429
0
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // Mapping from address to card marking array index.
a61af66fc99e Initial load
duke
parents:
diff changeset
431 int index_for(void* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 assert(_whole_heap.contains(p),
a61af66fc99e Initial load
duke
parents:
diff changeset
433 "out of bounds access to card marking array");
a61af66fc99e Initial load
duke
parents:
diff changeset
434 return byte_for(p) - _byte_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
438 void verify_guard();
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 void verify_clean_region(MemRegion mr) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 static size_t par_chunk_heapword_alignment() {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 return CardsPerStrideChunk * card_size_in_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
445
0
a61af66fc99e Initial load
duke
parents:
diff changeset
446 };
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 class CardTableRS;
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // A specialization for the CardTableRS gen rem set.
a61af66fc99e Initial load
duke
parents:
diff changeset
451 class CardTableModRefBSForCTRS: public CardTableModRefBS {
a61af66fc99e Initial load
duke
parents:
diff changeset
452 CardTableRS* _rs;
a61af66fc99e Initial load
duke
parents:
diff changeset
453 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
454 bool card_will_be_scanned(jbyte cv);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 bool card_may_have_been_dirty(jbyte cv);
a61af66fc99e Initial load
duke
parents:
diff changeset
456 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
457 CardTableModRefBSForCTRS(MemRegion whole_heap,
a61af66fc99e Initial load
duke
parents:
diff changeset
458 int max_covered_regions) :
a61af66fc99e Initial load
duke
parents:
diff changeset
459 CardTableModRefBS(whole_heap, max_covered_regions) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 void set_CTRS(CardTableRS* rs) { _rs = rs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 };