author | tonyp |
Wed, 25 Jan 2012 12:58:23 -0500 | |
changeset 11584 | e1df4d08a1f4 |
parent 11583 | 83a7383de44c |
child 12381 | 1438e0fbfa27 |
permissions | -rw-r--r-- |
9994 | 1 |
/* |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
2 |
* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. |
9994 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP |
|
26 |
#define SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP |
|
27 |
||
28 |
#include "gc_implementation/g1/concurrentMark.hpp" |
|
29 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
|
30 |
||
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
31 |
// Returns the index in the liveness accounting card bitmap |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
32 |
// for the given address |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
33 |
inline BitMap::idx_t ConcurrentMark::card_bitmap_index_for(HeapWord* addr) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
34 |
// Below, the term "card num" means the result of shifting an address |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
35 |
// by the card shift -- address 0 corresponds to card number 0. One |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
36 |
// must subtract the card num of the bottom of the heap to obtain a |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
37 |
// card table index. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
38 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
39 |
intptr_t card_num = intptr_t(uintptr_t(addr) >> CardTableModRefBS::card_shift); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
40 |
return card_num - heap_bottom_card_num(); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
41 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
42 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
43 |
// Counts the given memory region in the given task/worker |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
44 |
// counting data structures. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
45 |
inline void ConcurrentMark::count_region(MemRegion mr, HeapRegion* hr, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
46 |
size_t* marked_bytes_array, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
47 |
BitMap* task_card_bm) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
48 |
G1CollectedHeap* g1h = _g1h; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
49 |
HeapWord* start = mr.start(); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
50 |
HeapWord* last = mr.last(); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
51 |
size_t region_size_bytes = mr.byte_size(); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
52 |
size_t index = hr->hrs_index(); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
53 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
54 |
assert(!hr->continuesHumongous(), "should not be HC region"); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
55 |
assert(hr == g1h->heap_region_containing(start), "sanity"); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
56 |
assert(hr == g1h->heap_region_containing(mr.last()), "sanity"); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
57 |
assert(marked_bytes_array != NULL, "pre-condition"); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
58 |
assert(task_card_bm != NULL, "pre-condition"); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
59 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
60 |
// Add to the task local marked bytes for this region. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
61 |
marked_bytes_array[index] += region_size_bytes; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
62 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
63 |
BitMap::idx_t start_idx = card_bitmap_index_for(start); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
64 |
BitMap::idx_t last_idx = card_bitmap_index_for(last); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
65 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
66 |
// The card bitmap is task/worker specific => no need to use 'par' routines. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
67 |
// Set bits in the inclusive bit range [start_idx, last_idx]. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
68 |
// |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
69 |
// For small ranges use a simple loop; otherwise use set_range |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
70 |
// The range are the cards that are spanned by the object/region |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
71 |
// so 8 cards will allow objects/regions up to 4K to be handled |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
72 |
// using the loop. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
73 |
if ((last_idx - start_idx) <= 8) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
74 |
for (BitMap::idx_t i = start_idx; i <= last_idx; i += 1) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
75 |
task_card_bm->set_bit(i); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
76 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
77 |
} else { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
78 |
assert(last_idx < task_card_bm->size(), "sanity"); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
79 |
// Note: BitMap::set_range() is exclusive. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
80 |
task_card_bm->set_range(start_idx, last_idx+1); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
81 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
82 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
83 |
|
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
84 |
// Counts the given memory region in the task/worker counting |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
85 |
// data structures for the given worker id. |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
86 |
inline void ConcurrentMark::count_region(MemRegion mr, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
87 |
HeapRegion* hr, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
88 |
uint worker_id) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
89 |
size_t* marked_bytes_array = count_marked_bytes_array_for(worker_id); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
90 |
BitMap* task_card_bm = count_card_bitmap_for(worker_id); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
91 |
count_region(mr, hr, marked_bytes_array, task_card_bm); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
92 |
} |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
93 |
|
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
94 |
// Counts the given memory region, which may be a single object, in the |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
95 |
// task/worker counting data structures for the given worker id. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
96 |
inline void ConcurrentMark::count_region(MemRegion mr, uint worker_id) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
97 |
HeapWord* addr = mr.start(); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
98 |
HeapRegion* hr = _g1h->heap_region_containing_raw(addr); |
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
99 |
count_region(mr, hr, worker_id); |
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
100 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
101 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
102 |
// Counts the given object in the given task/worker counting data structures. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
103 |
inline void ConcurrentMark::count_object(oop obj, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
104 |
HeapRegion* hr, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
105 |
size_t* marked_bytes_array, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
106 |
BitMap* task_card_bm) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
107 |
MemRegion mr((HeapWord*)obj, obj->size()); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
108 |
count_region(mr, hr, marked_bytes_array, task_card_bm); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
109 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
110 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
111 |
// Counts the given object in the task/worker counting data |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
112 |
// structures for the given worker id. |
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
113 |
inline void ConcurrentMark::count_object(oop obj, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
114 |
HeapRegion* hr, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
115 |
uint worker_id) { |
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
116 |
size_t* marked_bytes_array = count_marked_bytes_array_for(worker_id); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
117 |
BitMap* task_card_bm = count_card_bitmap_for(worker_id); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
118 |
HeapWord* addr = (HeapWord*) obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
119 |
count_object(obj, hr, marked_bytes_array, task_card_bm); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
120 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
121 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
122 |
// Attempts to mark the given object and, if successful, counts |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
123 |
// the object in the given task/worker counting structures. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
124 |
inline bool ConcurrentMark::par_mark_and_count(oop obj, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
125 |
HeapRegion* hr, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
126 |
size_t* marked_bytes_array, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
127 |
BitMap* task_card_bm) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
128 |
HeapWord* addr = (HeapWord*)obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
129 |
if (_nextMarkBitMap->parMark(addr)) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
130 |
// Update the task specific count data for the object. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
131 |
count_object(obj, hr, marked_bytes_array, task_card_bm); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
132 |
return true; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
133 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
134 |
return false; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
135 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
136 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
137 |
// Attempts to mark the given object and, if successful, counts |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
138 |
// the object in the task/worker counting structures for the |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
139 |
// given worker id. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
140 |
inline bool ConcurrentMark::par_mark_and_count(oop obj, |
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
141 |
size_t word_size, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
142 |
HeapRegion* hr, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
143 |
uint worker_id) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
144 |
HeapWord* addr = (HeapWord*)obj; |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
145 |
if (_nextMarkBitMap->parMark(addr)) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
146 |
MemRegion mr(addr, word_size); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
147 |
count_region(mr, hr, worker_id); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
148 |
return true; |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
149 |
} |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
150 |
return false; |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
151 |
} |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
152 |
|
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
153 |
// Attempts to mark the given object and, if successful, counts |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
154 |
// the object in the task/worker counting structures for the |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
155 |
// given worker id. |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
156 |
inline bool ConcurrentMark::par_mark_and_count(oop obj, |
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
157 |
HeapRegion* hr, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
158 |
uint worker_id) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
159 |
HeapWord* addr = (HeapWord*)obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
160 |
if (_nextMarkBitMap->parMark(addr)) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
161 |
// Update the task specific count data for the object. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
162 |
count_object(obj, hr, worker_id); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
163 |
return true; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
164 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
165 |
return false; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
166 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
167 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
168 |
// As above - but we don't know the heap region containing the |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
169 |
// object and so have to supply it. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
170 |
inline bool ConcurrentMark::par_mark_and_count(oop obj, uint worker_id) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
171 |
HeapWord* addr = (HeapWord*)obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
172 |
HeapRegion* hr = _g1h->heap_region_containing_raw(addr); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
173 |
return par_mark_and_count(obj, hr, worker_id); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
174 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
175 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
176 |
// Similar to the above routine but we already know the size, in words, of |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
177 |
// the object that we wish to mark/count |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
178 |
inline bool ConcurrentMark::par_mark_and_count(oop obj, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
179 |
size_t word_size, |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
180 |
uint worker_id) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
181 |
HeapWord* addr = (HeapWord*)obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
182 |
if (_nextMarkBitMap->parMark(addr)) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
183 |
// Update the task specific count data for the object. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
184 |
MemRegion mr(addr, word_size); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
185 |
count_region(mr, worker_id); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
186 |
return true; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
187 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
188 |
return false; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
189 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
190 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
191 |
// Unconditionally mark the given object, and unconditinally count |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
192 |
// the object in the counting structures for worker id 0. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
193 |
// Should *not* be called from parallel code. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
194 |
inline bool ConcurrentMark::mark_and_count(oop obj, HeapRegion* hr) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
195 |
HeapWord* addr = (HeapWord*)obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
196 |
_nextMarkBitMap->mark(addr); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
197 |
// Update the task specific count data for the object. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
198 |
count_object(obj, hr, 0 /* worker_id */); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
199 |
return true; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
200 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
201 |
|
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
202 |
// As above - but we don't have the heap region containing the |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
203 |
// object, so we have to supply it. |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
204 |
inline bool ConcurrentMark::mark_and_count(oop obj) { |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
205 |
HeapWord* addr = (HeapWord*)obj; |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
206 |
HeapRegion* hr = _g1h->heap_region_containing_raw(addr); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
207 |
return mark_and_count(obj, hr); |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
208 |
} |
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
209 |
|
11574
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
210 |
inline bool CMBitMapRO::iterate(BitMapClosure* cl, MemRegion mr) { |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
211 |
HeapWord* start_addr = MAX2(startWord(), mr.start()); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
212 |
HeapWord* end_addr = MIN2(endWord(), mr.end()); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
213 |
|
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
214 |
if (end_addr > start_addr) { |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
215 |
// Right-open interval [start-offset, end-offset). |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
216 |
BitMap::idx_t start_offset = heapWordToOffset(start_addr); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
217 |
BitMap::idx_t end_offset = heapWordToOffset(end_addr); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
218 |
|
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
219 |
start_offset = _bm.get_next_one_offset(start_offset, end_offset); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
220 |
while (start_offset < end_offset) { |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
221 |
HeapWord* obj_addr = offsetToHeapWord(start_offset); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
222 |
oop obj = (oop) obj_addr; |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
223 |
if (!cl->do_bit(start_offset)) { |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
224 |
return false; |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
225 |
} |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
226 |
HeapWord* next_addr = MIN2(obj_addr + obj->size(), end_addr); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
227 |
BitMap::idx_t next_offset = heapWordToOffset(next_addr); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
228 |
start_offset = _bm.get_next_one_offset(next_offset, end_offset); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
229 |
} |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
230 |
} |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
231 |
return true; |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
232 |
} |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
233 |
|
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
234 |
inline bool CMBitMapRO::iterate(BitMapClosure* cl) { |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
235 |
MemRegion mr(startWord(), sizeInWords()); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
236 |
return iterate(cl, mr); |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
237 |
} |
8a7fe61966c0
7121547: G1: High number mispredicted branches while iterating over the marking bitmap
johnc
parents:
11455
diff
changeset
|
238 |
|
9994 | 239 |
inline void CMTask::push(oop obj) { |
240 |
HeapWord* objAddr = (HeapWord*) obj; |
|
241 |
assert(_g1h->is_in_g1_reserved(objAddr), "invariant"); |
|
242 |
assert(!_g1h->is_on_master_free_list( |
|
243 |
_g1h->heap_region_containing((HeapWord*) objAddr)), "invariant"); |
|
244 |
assert(!_g1h->is_obj_ill(obj), "invariant"); |
|
245 |
assert(_nextMarkBitMap->isMarked(objAddr), "invariant"); |
|
246 |
||
247 |
if (_cm->verbose_high()) { |
|
248 |
gclog_or_tty->print_cr("[%d] pushing "PTR_FORMAT, _task_id, (void*) obj); |
|
249 |
} |
|
250 |
||
251 |
if (!_task_queue->push(obj)) { |
|
252 |
// The local task queue looks full. We need to push some entries |
|
253 |
// to the global stack. |
|
254 |
||
255 |
if (_cm->verbose_medium()) { |
|
256 |
gclog_or_tty->print_cr("[%d] task queue overflow, " |
|
257 |
"moving entries to the global stack", |
|
258 |
_task_id); |
|
259 |
} |
|
260 |
move_entries_to_global_stack(); |
|
261 |
||
262 |
// this should succeed since, even if we overflow the global |
|
263 |
// stack, we should have definitely removed some entries from the |
|
264 |
// local queue. So, there must be space on it. |
|
265 |
bool success = _task_queue->push(obj); |
|
266 |
assert(success, "invariant"); |
|
267 |
} |
|
268 |
||
269 |
statsOnly( int tmp_size = _task_queue->size(); |
|
9999
5f0b78217054
7055073: G1: code cleanup in the concurrentMark.* files
tonyp
parents:
9994
diff
changeset
|
270 |
if (tmp_size > _local_max_size) { |
9994 | 271 |
_local_max_size = tmp_size; |
9999
5f0b78217054
7055073: G1: code cleanup in the concurrentMark.* files
tonyp
parents:
9994
diff
changeset
|
272 |
} |
9994 | 273 |
++_local_pushes ); |
274 |
} |
|
275 |
||
276 |
// This determines whether the method below will check both the local |
|
277 |
// and global fingers when determining whether to push on the stack a |
|
278 |
// gray object (value 1) or whether it will only check the global one |
|
279 |
// (value 0). The tradeoffs are that the former will be a bit more |
|
280 |
// accurate and possibly push less on the stack, but it might also be |
|
281 |
// a little bit slower. |
|
282 |
||
283 |
#define _CHECK_BOTH_FINGERS_ 1 |
|
284 |
||
285 |
inline void CMTask::deal_with_reference(oop obj) { |
|
286 |
if (_cm->verbose_high()) { |
|
287 |
gclog_or_tty->print_cr("[%d] we're dealing with reference = "PTR_FORMAT, |
|
288 |
_task_id, (void*) obj); |
|
289 |
} |
|
290 |
||
291 |
++_refs_reached; |
|
292 |
||
293 |
HeapWord* objAddr = (HeapWord*) obj; |
|
294 |
assert(obj->is_oop_or_null(true /* ignore mark word */), "Error"); |
|
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
295 |
if (_g1h->is_in_g1_reserved(objAddr)) { |
9994 | 296 |
assert(obj != NULL, "null check is implicit"); |
297 |
if (!_nextMarkBitMap->isMarked(objAddr)) { |
|
298 |
// Only get the containing region if the object is not marked on the |
|
299 |
// bitmap (otherwise, it's a waste of time since we won't do |
|
300 |
// anything with it). |
|
301 |
HeapRegion* hr = _g1h->heap_region_containing_raw(obj); |
|
302 |
if (!hr->obj_allocated_since_next_marking(obj)) { |
|
303 |
if (_cm->verbose_high()) { |
|
304 |
gclog_or_tty->print_cr("[%d] "PTR_FORMAT" is not considered marked", |
|
305 |
_task_id, (void*) obj); |
|
306 |
} |
|
307 |
||
308 |
// we need to mark it first |
|
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
309 |
if (_cm->par_mark_and_count(obj, hr, _marked_bytes_array, _card_bm)) { |
9994 | 310 |
// No OrderAccess:store_load() is needed. It is implicit in the |
11583
83a7383de44c
6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents:
11574
diff
changeset
|
311 |
// CAS done in CMBitMap::parMark() call in the routine above. |
9994 | 312 |
HeapWord* global_finger = _cm->finger(); |
313 |
||
314 |
#if _CHECK_BOTH_FINGERS_ |
|
315 |
// we will check both the local and global fingers |
|
316 |
||
317 |
if (_finger != NULL && objAddr < _finger) { |
|
318 |
if (_cm->verbose_high()) { |
|
319 |
gclog_or_tty->print_cr("[%d] below the local finger ("PTR_FORMAT"), " |
|
320 |
"pushing it", _task_id, _finger); |
|
321 |
} |
|
322 |
push(obj); |
|
323 |
} else if (_curr_region != NULL && objAddr < _region_limit) { |
|
324 |
// do nothing |
|
325 |
} else if (objAddr < global_finger) { |
|
326 |
// Notice that the global finger might be moving forward |
|
327 |
// concurrently. This is not a problem. In the worst case, we |
|
328 |
// mark the object while it is above the global finger and, by |
|
329 |
// the time we read the global finger, it has moved forward |
|
330 |
// passed this object. In this case, the object will probably |
|
331 |
// be visited when a task is scanning the region and will also |
|
332 |
// be pushed on the stack. So, some duplicate work, but no |
|
333 |
// correctness problems. |
|
334 |
||
335 |
if (_cm->verbose_high()) { |
|
336 |
gclog_or_tty->print_cr("[%d] below the global finger " |
|
337 |
"("PTR_FORMAT"), pushing it", |
|
338 |
_task_id, global_finger); |
|
339 |
} |
|
340 |
push(obj); |
|
341 |
} else { |
|
342 |
// do nothing |
|
343 |
} |
|
344 |
#else // _CHECK_BOTH_FINGERS_ |
|
345 |
// we will only check the global finger |
|
346 |
||
347 |
if (objAddr < global_finger) { |
|
348 |
// see long comment above |
|
349 |
||
350 |
if (_cm->verbose_high()) { |
|
351 |
gclog_or_tty->print_cr("[%d] below the global finger " |
|
352 |
"("PTR_FORMAT"), pushing it", |
|
353 |
_task_id, global_finger); |
|
354 |
} |
|
355 |
push(obj); |
|
356 |
} |
|
357 |
#endif // _CHECK_BOTH_FINGERS_ |
|
358 |
} |
|
359 |
} |
|
360 |
} |
|
361 |
} |
|
362 |
} |
|
363 |
||
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
364 |
inline void ConcurrentMark::markPrev(oop p) { |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
365 |
assert(!_prevMarkBitMap->isMarked((HeapWord*) p), "sanity"); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
366 |
// Note we are overriding the read-only view of the prev map here, via |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
367 |
// the cast. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
368 |
((CMBitMap*)_prevMarkBitMap)->mark((HeapWord*) p); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
369 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
370 |
|
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
371 |
inline void ConcurrentMark::grayRoot(oop obj, size_t word_size, |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
372 |
uint worker_id, HeapRegion* hr) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
373 |
assert(obj != NULL, "pre-condition"); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
374 |
HeapWord* addr = (HeapWord*) obj; |
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
375 |
if (hr == NULL) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
376 |
hr = _g1h->heap_region_containing_raw(addr); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
377 |
} else { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
378 |
assert(hr->is_in(addr), "pre-condition"); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
379 |
} |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
380 |
assert(hr != NULL, "sanity"); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
381 |
// Given that we're looking for a region that contains an object |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
382 |
// header it's impossible to get back a HC region. |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
383 |
assert(!hr->continuesHumongous(), "sanity"); |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
384 |
|
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
385 |
// We cannot assert that word_size == obj->size() given that obj |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
386 |
// might not be in a consistent state (another thread might be in |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
387 |
// the process of copying it). So the best thing we can do is to |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
388 |
// assert that word_size is under an upper bound which is its |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
389 |
// containing region's capacity. |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
390 |
assert(word_size * HeapWordSize <= hr->capacity(), |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
391 |
err_msg("size: "SIZE_FORMAT" capacity: "SIZE_FORMAT" "HR_FORMAT, |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
392 |
word_size * HeapWordSize, hr->capacity(), |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
393 |
HR_FORMAT_PARAMS(hr))); |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
394 |
|
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
395 |
if (addr < hr->next_top_at_mark_start()) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
396 |
if (!_nextMarkBitMap->isMarked(addr)) { |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
397 |
par_mark_and_count(obj, word_size, hr, worker_id); |
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
11583
diff
changeset
|
398 |
} |
11455
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
399 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
400 |
} |
a6ab3d8b9a4c
6888336: G1: avoid explicitly marking and pushing objects in survivor spaces
tonyp
parents:
9999
diff
changeset
|
401 |
|
9994 | 402 |
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP |