author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46502 | hotspot/src/share/vm/gc/parallel/psPromotionManager.inline.hpp@116a09d8f142 |
child 49592 | 77fb0be7d19f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29792
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29208
diff
changeset
|
2 |
* Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_PARALLEL_PSPROMOTIONMANAGER_INLINE_HPP |
26 |
#define SHARE_VM_GC_PARALLEL_PSPROMOTIONMANAGER_INLINE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/parallel/parallelScavengeHeap.hpp" |
46502
116a09d8f142
8180755: Remove use of bitMap.inline.hpp include from instanceKlass.hpp and c1_ValueSet.hpp
tschatzl
parents:
35901
diff
changeset
|
29 |
#include "gc/parallel/parMarkBitMap.inline.hpp" |
30764 | 30 |
#include "gc/parallel/psOldGen.hpp" |
31 |
#include "gc/parallel/psPromotionLAB.inline.hpp" |
|
32 |
#include "gc/parallel/psPromotionManager.hpp" |
|
33 |
#include "gc/parallel/psScavenge.hpp" |
|
34 |
#include "gc/shared/taskqueue.inline.hpp" |
|
35061 | 35 |
#include "logging/log.hpp" |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
29792
diff
changeset
|
36 |
#include "oops/oop.inline.hpp" |
7397 | 37 |
|
31330
77061bb01b18
8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents:
30764
diff
changeset
|
38 |
inline PSPromotionManager* PSPromotionManager::manager_array(uint index) { |
1 | 39 |
assert(_manager_array != NULL, "access of NULL manager_array"); |
31330
77061bb01b18
8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents:
30764
diff
changeset
|
40 |
assert(index <= ParallelGCThreads, "out of range manager_array access"); |
19285
0a3b3f115402
8022880: False sharing between PSPromotionManager instances
stefank
parents:
18025
diff
changeset
|
41 |
return &_manager_array[index]; |
1 | 42 |
} |
43 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
44 |
template <class T> |
30566
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
45 |
inline void PSPromotionManager::push_depth(T* p) { |
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
46 |
claimed_stack_depth()->push(p); |
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
47 |
} |
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
48 |
|
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
49 |
template <class T> |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
50 |
inline void PSPromotionManager::claim_or_forward_internal_depth(T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
51 |
if (p != NULL) { // XXX: error if p != NULL here |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
52 |
oop o = oopDesc::load_decode_heap_oop_not_null(p); |
1 | 53 |
if (o->is_forwarded()) { |
54 |
o = o->forwardee(); |
|
55 |
// Card mark |
|
17852
59b05e1db547
8015486: PSScavenge::is_obj_in_young is unnecessarily slow with UseCompressedOops
stefank
parents:
13925
diff
changeset
|
56 |
if (PSScavenge::is_obj_in_young(o)) { |
1 | 57 |
PSScavenge::card_table()->inline_write_ref_field_gc(p, o); |
58 |
} |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
59 |
oopDesc::encode_store_heap_oop_not_null(p, o); |
1 | 60 |
} else { |
61 |
push_depth(p); |
|
62 |
} |
|
63 |
} |
|
64 |
} |
|
65 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
66 |
template <class T> |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
67 |
inline void PSPromotionManager::claim_or_forward_depth(T* p) { |
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
68 |
assert(should_scavenge(p, true), "revisiting object?"); |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30150
diff
changeset
|
69 |
assert(ParallelScavengeHeap::heap()->is_in(p), "pointer outside heap"); |
1 | 70 |
|
71 |
claim_or_forward_internal_depth(p); |
|
72 |
} |
|
73 |
||
28177
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
74 |
inline void PSPromotionManager::promotion_trace_event(oop new_obj, oop old_obj, |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
75 |
size_t obj_size, |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
76 |
uint age, bool tenured, |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
77 |
const PSPromotionLAB* lab) { |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
78 |
// Skip if memory allocation failed |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
79 |
if (new_obj != NULL) { |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
80 |
const ParallelScavengeTracer* gc_tracer = PSScavenge::gc_tracer(); |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
81 |
|
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
82 |
if (lab != NULL) { |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
83 |
// Promotion of object through newly allocated PLAB |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
84 |
if (gc_tracer->should_report_promotion_in_new_plab_event()) { |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
85 |
size_t obj_bytes = obj_size * HeapWordSize; |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
86 |
size_t lab_size = lab->capacity(); |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
87 |
gc_tracer->report_promotion_in_new_plab_event(old_obj->klass(), obj_bytes, |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
88 |
age, tenured, lab_size); |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
89 |
} |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
90 |
} else { |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
91 |
// Promotion of object directly to heap |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
92 |
if (gc_tracer->should_report_promotion_outside_plab_event()) { |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
93 |
size_t obj_bytes = obj_size * HeapWordSize; |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
94 |
gc_tracer->report_promotion_outside_plab_event(old_obj->klass(), obj_bytes, |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
95 |
age, tenured); |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
96 |
} |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
97 |
} |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
98 |
} |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
99 |
} |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
100 |
|
29792
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29208
diff
changeset
|
101 |
inline void PSPromotionManager::push_contents(oop obj) { |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
29792
diff
changeset
|
102 |
obj->ps_push_contents(this); |
29792
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29208
diff
changeset
|
103 |
} |
11753 | 104 |
// |
105 |
// This method is pretty bulky. It would be nice to split it up |
|
106 |
// into smaller submethods, but we need to be careful not to hurt |
|
107 |
// performance. |
|
108 |
// |
|
109 |
template<bool promote_immediately> |
|
30566
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
110 |
inline oop PSPromotionManager::copy_to_survivor_space(oop o) { |
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
111 |
assert(should_scavenge(&o), "Sanity"); |
11753 | 112 |
|
113 |
oop new_obj = NULL; |
|
114 |
||
115 |
// NOTE! We must be very careful with any methods that access the mark |
|
116 |
// in o. There may be multiple threads racing on it, and it may be forwarded |
|
117 |
// at any time. Do not use oop methods for accessing the mark! |
|
118 |
markOop test_mark = o->mark(); |
|
119 |
||
120 |
// The same test as "o->is_forwarded()" |
|
121 |
if (!test_mark->is_marked()) { |
|
122 |
bool new_obj_is_tenured = false; |
|
123 |
size_t new_obj_size = o->size(); |
|
124 |
||
28177
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
125 |
// Find the objects age, MT safe. |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
126 |
uint age = (test_mark->has_displaced_mark_helper() /* o->has_displaced_mark() */) ? |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
127 |
test_mark->displaced_mark_helper()->age() : test_mark->age(); |
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
128 |
|
11753 | 129 |
if (!promote_immediately) { |
130 |
// Try allocating obj in to-space (unless too old) |
|
131 |
if (age < PSScavenge::tenuring_threshold()) { |
|
132 |
new_obj = (oop) _young_lab.allocate(new_obj_size); |
|
133 |
if (new_obj == NULL && !_young_gen_is_full) { |
|
134 |
// Do we allocate directly, or flush and refill? |
|
135 |
if (new_obj_size > (YoungPLABSize / 2)) { |
|
136 |
// Allocate this object directly |
|
137 |
new_obj = (oop)young_space()->cas_allocate(new_obj_size); |
|
28177
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
138 |
promotion_trace_event(new_obj, o, new_obj_size, age, false, NULL); |
11753 | 139 |
} else { |
140 |
// Flush and fill |
|
141 |
_young_lab.flush(); |
|
142 |
||
143 |
HeapWord* lab_base = young_space()->cas_allocate(YoungPLABSize); |
|
144 |
if (lab_base != NULL) { |
|
145 |
_young_lab.initialize(MemRegion(lab_base, YoungPLABSize)); |
|
146 |
// Try the young lab allocation again. |
|
147 |
new_obj = (oop) _young_lab.allocate(new_obj_size); |
|
28177
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
148 |
promotion_trace_event(new_obj, o, new_obj_size, age, false, &_young_lab); |
11753 | 149 |
} else { |
150 |
_young_gen_is_full = true; |
|
151 |
} |
|
152 |
} |
|
153 |
} |
|
154 |
} |
|
155 |
} |
|
156 |
||
157 |
// Otherwise try allocating obj tenured |
|
158 |
if (new_obj == NULL) { |
|
159 |
#ifndef PRODUCT |
|
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30150
diff
changeset
|
160 |
if (ParallelScavengeHeap::heap()->promotion_should_fail()) { |
11753 | 161 |
return oop_promotion_failed(o, test_mark); |
162 |
} |
|
163 |
#endif // #ifndef PRODUCT |
|
164 |
||
165 |
new_obj = (oop) _old_lab.allocate(new_obj_size); |
|
166 |
new_obj_is_tenured = true; |
|
167 |
||
168 |
if (new_obj == NULL) { |
|
169 |
if (!_old_gen_is_full) { |
|
170 |
// Do we allocate directly, or flush and refill? |
|
171 |
if (new_obj_size > (OldPLABSize / 2)) { |
|
172 |
// Allocate this object directly |
|
173 |
new_obj = (oop)old_gen()->cas_allocate(new_obj_size); |
|
28177
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
174 |
promotion_trace_event(new_obj, o, new_obj_size, age, true, NULL); |
11753 | 175 |
} else { |
176 |
// Flush and fill |
|
177 |
_old_lab.flush(); |
|
178 |
||
179 |
HeapWord* lab_base = old_gen()->cas_allocate(OldPLABSize); |
|
180 |
if(lab_base != NULL) { |
|
13924 | 181 |
#ifdef ASSERT |
182 |
// Delay the initialization of the promotion lab (plab). |
|
183 |
// This exposes uninitialized plabs to card table processing. |
|
184 |
if (GCWorkerDelayMillis > 0) { |
|
185 |
os::sleep(Thread::current(), GCWorkerDelayMillis, false); |
|
186 |
} |
|
187 |
#endif |
|
11753 | 188 |
_old_lab.initialize(MemRegion(lab_base, OldPLABSize)); |
189 |
// Try the old lab allocation again. |
|
190 |
new_obj = (oop) _old_lab.allocate(new_obj_size); |
|
28177
318600b0d7db
8066442: Add PS and ParOld support for promotion event
sfriberg
parents:
25905
diff
changeset
|
191 |
promotion_trace_event(new_obj, o, new_obj_size, age, true, &_old_lab); |
11753 | 192 |
} |
193 |
} |
|
194 |
} |
|
195 |
||
196 |
// This is the promotion failed test, and code handling. |
|
197 |
// The code belongs here for two reasons. It is slightly |
|
18025 | 198 |
// different than the code below, and cannot share the |
11753 | 199 |
// CAS testing code. Keeping the code here also minimizes |
200 |
// the impact on the common case fast path code. |
|
201 |
||
202 |
if (new_obj == NULL) { |
|
203 |
_old_gen_is_full = true; |
|
204 |
return oop_promotion_failed(o, test_mark); |
|
205 |
} |
|
206 |
} |
|
207 |
} |
|
208 |
||
209 |
assert(new_obj != NULL, "allocation should have succeeded"); |
|
210 |
||
211 |
// Copy obj |
|
212 |
Copy::aligned_disjoint_words((HeapWord*)o, (HeapWord*)new_obj, new_obj_size); |
|
213 |
||
214 |
// Now we have to CAS in the header. |
|
215 |
if (o->cas_forward_to(new_obj, test_mark)) { |
|
216 |
// We won any races, we "own" this object. |
|
217 |
assert(new_obj == o->forwardee(), "Sanity"); |
|
218 |
||
219 |
// Increment age if obj still in new generation. Now that |
|
220 |
// we're dealing with a markOop that cannot change, it is |
|
221 |
// okay to use the non mt safe oop methods. |
|
222 |
if (!new_obj_is_tenured) { |
|
223 |
new_obj->incr_age(); |
|
224 |
assert(young_space()->contains(new_obj), "Attempt to push non-promoted obj"); |
|
225 |
} |
|
226 |
||
227 |
// Do the size comparison first with new_obj_size, which we |
|
228 |
// already have. Hopefully, only a few objects are larger than |
|
229 |
// _min_array_size_for_chunking, and most of them will be arrays. |
|
230 |
// So, the is->objArray() test would be very infrequent. |
|
231 |
if (new_obj_size > _min_array_size_for_chunking && |
|
232 |
new_obj->is_objArray() && |
|
233 |
PSChunkLargeArrays) { |
|
234 |
// we'll chunk it |
|
235 |
oop* const masked_o = mask_chunked_array_oop(o); |
|
236 |
push_depth(masked_o); |
|
237 |
TASKQUEUE_STATS_ONLY(++_arrays_chunked; ++_masked_pushes); |
|
238 |
} else { |
|
239 |
// we'll just push its contents |
|
29792
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29208
diff
changeset
|
240 |
push_contents(new_obj); |
11753 | 241 |
} |
242 |
} else { |
|
243 |
// We lost, someone else "owns" this object |
|
244 |
guarantee(o->is_forwarded(), "Object must be forwarded if the cas failed."); |
|
245 |
||
246 |
// Try to deallocate the space. If it was directly allocated we cannot |
|
247 |
// deallocate it, so we have to test. If the deallocation fails, |
|
248 |
// overwrite with a filler object. |
|
249 |
if (new_obj_is_tenured) { |
|
250 |
if (!_old_lab.unallocate_object((HeapWord*) new_obj, new_obj_size)) { |
|
251 |
CollectedHeap::fill_with_object((HeapWord*) new_obj, new_obj_size); |
|
252 |
} |
|
253 |
} else if (!_young_lab.unallocate_object((HeapWord*) new_obj, new_obj_size)) { |
|
254 |
CollectedHeap::fill_with_object((HeapWord*) new_obj, new_obj_size); |
|
255 |
} |
|
256 |
||
257 |
// don't update this before the unallocation! |
|
258 |
new_obj = o->forwardee(); |
|
259 |
} |
|
260 |
} else { |
|
261 |
assert(o->is_forwarded(), "Sanity"); |
|
262 |
new_obj = o->forwardee(); |
|
263 |
} |
|
264 |
||
265 |
// This code must come after the CAS test, or it will print incorrect |
|
266 |
// information. |
|
35061 | 267 |
log_develop_trace(gc, scavenge)("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}", |
268 |
should_scavenge(&new_obj) ? "copying" : "tenuring", |
|
269 |
new_obj->klass()->internal_name(), p2i((void *)o), p2i((void *)new_obj), new_obj->size()); |
|
11753 | 270 |
|
271 |
return new_obj; |
|
272 |
} |
|
273 |
||
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
274 |
// Attempt to "claim" oop at p via CAS, push the new obj if successful |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
275 |
// This version tests the oop* to make sure it is within the heap before |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
276 |
// attempting marking. |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
277 |
template <class T, bool promote_immediately> |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
278 |
inline void PSPromotionManager::copy_and_push_safe_barrier(T* p) { |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
279 |
assert(should_scavenge(p, true), "revisiting object?"); |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
280 |
|
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
281 |
oop o = oopDesc::load_decode_heap_oop_not_null(p); |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
282 |
oop new_obj = o->is_forwarded() |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
283 |
? o->forwardee() |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
284 |
: copy_to_survivor_space<promote_immediately>(o); |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
285 |
|
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
286 |
// This code must come after the CAS test, or it will print incorrect |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
287 |
// information. |
35901
f5028c67e7cb
8147918: Rename develop_log_is_enabled() to log_develop_is_enabled()
pliden
parents:
35061
diff
changeset
|
288 |
if (log_develop_is_enabled(Trace, gc, scavenge) && o->is_forwarded()) { |
35061 | 289 |
log_develop_trace(gc, scavenge)("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}", |
290 |
"forwarding", |
|
291 |
new_obj->klass()->internal_name(), p2i((void *)o), p2i((void *)new_obj), new_obj->size()); |
|
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
292 |
} |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
293 |
|
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
294 |
oopDesc::encode_store_heap_oop_not_null(p, new_obj); |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
295 |
|
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
296 |
// We cannot mark without test, as some code passes us pointers |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
297 |
// that are outside the heap. These pointers are either from roots |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
298 |
// or from metadata. |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
299 |
if ((!PSScavenge::is_obj_in_young((HeapWord*)p)) && |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30150
diff
changeset
|
300 |
ParallelScavengeHeap::heap()->is_in_reserved(p)) { |
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
301 |
if (PSScavenge::is_obj_in_young(new_obj)) { |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
302 |
PSScavenge::card_table()->inline_write_ref_field_gc(p, new_obj); |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
303 |
} |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
304 |
} |
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
305 |
} |
11753 | 306 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
307 |
inline void PSPromotionManager::process_popped_location_depth(StarTask p) { |
1 | 308 |
if (is_oop_masked(p)) { |
309 |
assert(PSChunkLargeArrays, "invariant"); |
|
310 |
oop const old = unmask_chunked_array_oop(p); |
|
311 |
process_array_chunk(old); |
|
312 |
} else { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
313 |
if (p.is_narrow()) { |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
670
diff
changeset
|
314 |
assert(UseCompressedOops, "Error"); |
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
315 |
copy_and_push_safe_barrier<narrowOop, /*promote_immediately=*/false>(p); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
316 |
} else { |
29208
b570d043f295
8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents:
28177
diff
changeset
|
317 |
copy_and_push_safe_barrier<oop, /*promote_immediately=*/false>(p); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
318 |
} |
1 | 319 |
} |
320 |
} |
|
6067 | 321 |
|
30566
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
322 |
inline bool PSPromotionManager::steal_depth(int queue_num, int* seed, StarTask& t) { |
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
323 |
return stack_array_depth()->steal(queue_num, seed, t); |
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
324 |
} |
18eb9aa972d0
8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents:
30173
diff
changeset
|
325 |
|
6067 | 326 |
#if TASKQUEUE_STATS |
327 |
void PSPromotionManager::record_steal(StarTask& p) { |
|
328 |
if (is_oop_masked(p)) { |
|
329 |
++_masked_steals; |
|
330 |
} |
|
331 |
} |
|
332 |
#endif // TASKQUEUE_STATS |
|
7397 | 333 |
|
30764 | 334 |
#endif // SHARE_VM_GC_PARALLEL_PSPROMOTIONMANAGER_INLINE_HPP |