annotate src/share/vm/gc_implementation/parallelScavenge/parMarkBitMap.cpp @ 989:148e5441d916

6863023: need non-perm oops in code cache for JSR 292 Summary: Make a special root-list for those few nmethods which might contain non-perm oops. Reviewed-by: twisti, kvn, never, jmasa, ysr
author jrose
date Tue, 15 Sep 2009 21:53:47 -0700
parents 1fdb98a17101
children c18cbe5936b8
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: 79
diff changeset
2 * Copyright 2005-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 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_parMarkBitMap.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 bool
a61af66fc99e Initial load
duke
parents:
diff changeset
29 ParMarkBitMap::initialize(MemRegion covered_region)
a61af66fc99e Initial load
duke
parents:
diff changeset
30 {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 const idx_t bits = bits_required(covered_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // The bits will be divided evenly between two bitmaps; each of them should be
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // an integral number of words.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 assert(bits % (BitsPerWord * 2) == 0, "region size unaligned");
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 const size_t words = bits / BitsPerWord;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 const size_t raw_bytes = words * sizeof(idx_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 const size_t page_sz = os::page_size_for_region(raw_bytes, raw_bytes, 10);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 const size_t granularity = os::vm_allocation_granularity();
a61af66fc99e Initial load
duke
parents:
diff changeset
40 const size_t bytes = align_size_up(raw_bytes, MAX2(page_sz, granularity));
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 const size_t rs_align = page_sz == (size_t) os::vm_page_size() ? 0 :
a61af66fc99e Initial load
duke
parents:
diff changeset
43 MAX2(page_sz, granularity);
79
82db0859acbe 6642862: Code cache allocation fails with large pages after 6588638
jcoomes
parents: 0
diff changeset
44 ReservedSpace rs(bytes, rs_align, rs_align > 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 os::trace_page_sizes("par bitmap", raw_bytes, raw_bytes, page_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
46 rs.base(), rs.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _virtual_space = new PSVirtualSpace(rs, page_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 if (_virtual_space != NULL && _virtual_space->expand_by(bytes)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _region_start = covered_region.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _region_size = covered_region.word_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
51 idx_t* map = (idx_t*)_virtual_space->reserved_low_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _beg_bits.set_map(map);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _beg_bits.set_size(bits / 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _end_bits.set_map(map + words / 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _end_bits.set_size(bits / 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _region_start = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _region_size = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (_virtual_space != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 delete _virtual_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 _virtual_space = NULL;
237
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 196
diff changeset
64 // Release memory reserved in the space.
1fdb98a17101 6716785: implicit null checks not triggering with CompressedOops
coleenp
parents: 196
diff changeset
65 rs.release();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
71 extern size_t mark_bitmap_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 extern size_t mark_bitmap_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 #endif // #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ParMarkBitMap::mark_obj(HeapWord* addr, size_t size)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 const idx_t beg_bit = addr_to_bit(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (_beg_bits.par_set_bit(beg_bit)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 const idx_t end_bit = addr_to_bit(addr + size - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 bool end_bit_ok = _end_bits.par_set_bit(end_bit);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 assert(end_bit_ok, "concurrency problem");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 DEBUG_ONLY(Atomic::inc_ptr(&mark_bitmap_count));
a61af66fc99e Initial load
duke
parents:
diff changeset
84 DEBUG_ONLY(Atomic::add_ptr(size, &mark_bitmap_size));
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 size_t
a61af66fc99e Initial load
duke
parents:
diff changeset
91 ParMarkBitMap::live_words_in_range(HeapWord* beg_addr, HeapWord* end_addr) const
a61af66fc99e Initial load
duke
parents:
diff changeset
92 {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 assert(beg_addr <= end_addr, "bad range");
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 idx_t live_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // The bitmap routines require the right boundary to be word-aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 const idx_t end_bit = addr_to_bit(end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 const idx_t range_end = BitMap::word_align_up(end_bit);
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 idx_t beg_bit = find_obj_beg(addr_to_bit(beg_addr), range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 while (beg_bit < end_bit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 idx_t tmp_end = find_obj_end(beg_bit, range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 if (tmp_end < end_bit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 live_bits += tmp_end - beg_bit + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 beg_bit = find_obj_beg(tmp_end + 1, range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 live_bits += end_bit - beg_bit; // No + 1 here; end_bit is not counted.
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return bits_to_words(live_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return bits_to_words(live_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 size_t ParMarkBitMap::live_words_in_range(HeapWord* beg_addr, oop end_obj) const
a61af66fc99e Initial load
duke
parents:
diff changeset
116 {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(beg_addr <= (HeapWord*)end_obj, "bad range");
a61af66fc99e Initial load
duke
parents:
diff changeset
118 assert(is_marked(end_obj), "end_obj must be live");
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 idx_t live_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // The bitmap routines require the right boundary to be word-aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 const idx_t end_bit = addr_to_bit((HeapWord*)end_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 const idx_t range_end = BitMap::word_align_up(end_bit);
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 idx_t beg_bit = find_obj_beg(addr_to_bit(beg_addr), range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 while (beg_bit < end_bit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 idx_t tmp_end = find_obj_end(beg_bit, range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 assert(tmp_end < end_bit, "missing end bit");
a61af66fc99e Initial load
duke
parents:
diff changeset
130 live_bits += tmp_end - beg_bit + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 beg_bit = find_obj_beg(tmp_end + 1, range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return bits_to_words(live_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 ParMarkBitMap::IterationStatus
a61af66fc99e Initial load
duke
parents:
diff changeset
137 ParMarkBitMap::iterate(ParMarkBitMapClosure* live_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
138 idx_t range_beg, idx_t range_end) const
a61af66fc99e Initial load
duke
parents:
diff changeset
139 {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 DEBUG_ONLY(verify_bit(range_beg);)
a61af66fc99e Initial load
duke
parents:
diff changeset
141 DEBUG_ONLY(verify_bit(range_end);)
a61af66fc99e Initial load
duke
parents:
diff changeset
142 assert(range_beg <= range_end, "live range invalid");
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // The bitmap routines require the right boundary to be word-aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 const idx_t search_end = BitMap::word_align_up(range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 idx_t cur_beg = find_obj_beg(range_beg, search_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 while (cur_beg < range_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 const idx_t cur_end = find_obj_end(cur_beg, search_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (cur_end >= range_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // The obj ends outside the range.
a61af66fc99e Initial load
duke
parents:
diff changeset
152 live_closure->set_source(bit_to_addr(cur_beg));
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return incomplete;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 const size_t size = obj_size(cur_beg, cur_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 IterationStatus status = live_closure->do_addr(bit_to_addr(cur_beg), size);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (status != incomplete) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 assert(status == would_overflow || status == full, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
160 return status;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // Successfully processed the object; look for the next object.
a61af66fc99e Initial load
duke
parents:
diff changeset
164 cur_beg = find_obj_beg(cur_end + 1, search_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 live_closure->set_source(bit_to_addr(range_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
168 return complete;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 ParMarkBitMap::IterationStatus
a61af66fc99e Initial load
duke
parents:
diff changeset
172 ParMarkBitMap::iterate(ParMarkBitMapClosure* live_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
173 ParMarkBitMapClosure* dead_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
174 idx_t range_beg, idx_t range_end,
a61af66fc99e Initial load
duke
parents:
diff changeset
175 idx_t dead_range_end) const
a61af66fc99e Initial load
duke
parents:
diff changeset
176 {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 DEBUG_ONLY(verify_bit(range_beg);)
a61af66fc99e Initial load
duke
parents:
diff changeset
178 DEBUG_ONLY(verify_bit(range_end);)
a61af66fc99e Initial load
duke
parents:
diff changeset
179 DEBUG_ONLY(verify_bit(dead_range_end);)
a61af66fc99e Initial load
duke
parents:
diff changeset
180 assert(range_beg <= range_end, "live range invalid");
a61af66fc99e Initial load
duke
parents:
diff changeset
181 assert(range_end <= dead_range_end, "dead range invalid");
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // The bitmap routines require the right boundary to be word-aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
184 const idx_t live_search_end = BitMap::word_align_up(range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 const idx_t dead_search_end = BitMap::word_align_up(dead_range_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 idx_t cur_beg = range_beg;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (range_beg < range_end && is_unmarked(range_beg)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // The range starts with dead space. Look for the next object, then fill.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 cur_beg = find_obj_beg(range_beg + 1, dead_search_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 const idx_t dead_space_end = MIN2(cur_beg - 1, dead_range_end - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 const size_t size = obj_size(range_beg, dead_space_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 dead_closure->do_addr(bit_to_addr(range_beg), size);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 while (cur_beg < range_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 const idx_t cur_end = find_obj_end(cur_beg, live_search_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (cur_end >= range_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // The obj ends outside the range.
a61af66fc99e Initial load
duke
parents:
diff changeset
200 live_closure->set_source(bit_to_addr(cur_beg));
a61af66fc99e Initial load
duke
parents:
diff changeset
201 return incomplete;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 const size_t size = obj_size(cur_beg, cur_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 IterationStatus status = live_closure->do_addr(bit_to_addr(cur_beg), size);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (status != incomplete) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 assert(status == would_overflow || status == full, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
208 return status;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Look for the start of the next object.
a61af66fc99e Initial load
duke
parents:
diff changeset
212 const idx_t dead_space_beg = cur_end + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
213 cur_beg = find_obj_beg(dead_space_beg, dead_search_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (cur_beg > dead_space_beg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // Found dead space; compute the size and invoke the dead closure.
a61af66fc99e Initial load
duke
parents:
diff changeset
216 const idx_t dead_space_end = MIN2(cur_beg - 1, dead_range_end - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 const size_t size = obj_size(dead_space_beg, dead_space_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 dead_closure->do_addr(bit_to_addr(dead_space_beg), size);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 live_closure->set_source(bit_to_addr(range_end));
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return complete;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
227 void ParMarkBitMap::reset_counters()
a61af66fc99e Initial load
duke
parents:
diff changeset
228 {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 _cas_tries = _cas_retries = _cas_by_another = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 #endif // #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void ParMarkBitMap::verify_clear() const
a61af66fc99e Initial load
duke
parents:
diff changeset
235 {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 const idx_t* const beg = (const idx_t*)_virtual_space->committed_low_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
237 const idx_t* const end = (const idx_t*)_virtual_space->committed_high_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 for (const idx_t* p = beg; p < end; ++p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 assert(*p == 0, "bitmap not clear");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 #endif // #ifdef ASSERT