annotate src/share/vm/gc_implementation/parNew/parNewGeneration.cpp @ 695:becb17ad5e51

6824570: ParNew: Fix memory leak introduced in 6819891 Summary: Allocate worker-local overflow stacks, introduced in 6819891, along with ParNewGeneration, rather than with the per-scavenge ParScanThreadState. Reviewed-by: jmasa
author ysr
date Thu, 02 Apr 2009 15:57:41 -0700
parents cea947c8a988
children 148e5441d916
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
579
0fbdb4381b99 6814575: Update copyright year
xdono
parents: 534
diff changeset
2 * Copyright 2001-2009 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/_parNewGeneration.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #pragma warning( push )
a61af66fc99e Initial load
duke
parents:
diff changeset
30 #pragma warning( disable:4355 ) // 'this' : used in base member initializer list
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
32 ParScanThreadState::ParScanThreadState(Space* to_space_,
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ParNewGeneration* gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
34 Generation* old_gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 int thread_num_,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 ObjToScanQueueSet* work_queue_set_,
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
37 GrowableArray<oop>** overflow_stack_set_,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 size_t desired_plab_sz_,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ParallelTaskTerminator& term_) :
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
40 _to_space(to_space_), _old_gen(old_gen_), _young_gen(gen_), _thread_num(thread_num_),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _work_queue(work_queue_set_->queue(thread_num_)), _to_space_full(false),
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
42 _overflow_stack(overflow_stack_set_[thread_num_]),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _ageTable(false), // false ==> not the global age table, no perf data.
a61af66fc99e Initial load
duke
parents:
diff changeset
44 _to_space_alloc_buffer(desired_plab_sz_),
a61af66fc99e Initial load
duke
parents:
diff changeset
45 _to_space_closure(gen_, this), _old_gen_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
46 _to_space_root_closure(gen_, this), _old_gen_root_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _older_gen_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _evacuate_followers(this, &_to_space_closure, &_old_gen_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
49 &_to_space_root_closure, gen_, &_old_gen_root_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
50 work_queue_set_, &term_),
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _is_alive_closure(gen_), _scan_weak_ref_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _keep_alive_closure(&_scan_weak_ref_closure),
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _pushes(0), _pops(0), _steals(0), _steal_attempts(0), _term_attempts(0),
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _strong_roots_time(0.0), _term_time(0.0)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _survivor_chunk_array =
a61af66fc99e Initial load
duke
parents:
diff changeset
57 (ChunkArray*) old_gen()->get_data_recorder(thread_num());
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _hash_seed = 17; // Might want to take time-based random value.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _start = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _old_gen_closure.set_generation(old_gen_);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _old_gen_root_closure.set_generation(old_gen_);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
64 #pragma warning( pop )
a61af66fc99e Initial load
duke
parents:
diff changeset
65 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 void ParScanThreadState::record_survivor_plab(HeapWord* plab_start,
a61af66fc99e Initial load
duke
parents:
diff changeset
68 size_t plab_word_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ChunkArray* sca = survivor_chunk_array();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 if (sca != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // A non-null SCA implies that we want the PLAB data recorded.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 sca->record_sample(plab_start, plab_word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool ParScanThreadState::should_be_partially_scanned(oop new_obj, oop old_obj) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return new_obj->is_objArray() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
78 arrayOop(new_obj)->length() > ParGCArrayScanChunk &&
a61af66fc99e Initial load
duke
parents:
diff changeset
79 new_obj != old_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void ParScanThreadState::scan_partial_array_and_push_remainder(oop old) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 assert(old->is_objArray(), "must be obj array");
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(old->is_forwarded(), "must be forwarded");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(Universe::heap()->is_in_reserved(old), "must be in heap.");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
86 assert(!old_gen()->is_in(old), "must be in young generation.");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 objArrayOop obj = objArrayOop(old->forwardee());
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Process ParGCArrayScanChunk elements now
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // and push the remainder back onto queue
a61af66fc99e Initial load
duke
parents:
diff changeset
91 int start = arrayOop(old)->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int end = obj->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 int remainder = end - start;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(start <= end, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (remainder > 2 * ParGCArrayScanChunk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Test above combines last partial chunk with a full chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
97 end = start + ParGCArrayScanChunk;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 arrayOop(old)->set_length(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Push remainder.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 bool ok = work_queue()->push(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 assert(ok, "just popped, push must be okay");
a61af66fc99e Initial load
duke
parents:
diff changeset
102 note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Restore length so that it can be used if there
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // is a promotion failure and forwarding pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // must be removed.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 arrayOop(old)->set_length(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
109
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // process our set of indices (include header in first chunk)
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
111 // should make sure end is even (aligned to HeapWord in case of compressed oops)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112 if ((HeapWord *)obj < young_old_boundary()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // object is in to_space
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
114 obj->oop_iterate_range(&_to_space_closure, start, end);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
115 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // object is in old generation
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
117 obj->oop_iterate_range(&_old_gen_closure, start, end);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void ParScanThreadState::trim_queues(int max_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 ObjToScanQueue* queue = work_queue();
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
124 do {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
125 while (queue->size() > (juint)max_size) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
126 oop obj_to_scan;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
127 if (queue->pop_local(obj_to_scan)) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
128 note_pop();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
129 if ((HeapWord *)obj_to_scan < young_old_boundary()) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
130 if (obj_to_scan->is_objArray() &&
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
131 obj_to_scan->is_forwarded() &&
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
132 obj_to_scan->forwardee() != obj_to_scan) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
133 scan_partial_array_and_push_remainder(obj_to_scan);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
134 } else {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
135 // object is in to_space
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
136 obj_to_scan->oop_iterate(&_to_space_closure);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
137 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138 } else {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
139 // object is in old generation
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
140 obj_to_scan->oop_iterate(&_old_gen_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
144 // For the case of compressed oops, we have a private, non-shared
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
145 // overflow stack, so we eagerly drain it so as to more evenly
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
146 // distribute load early. Note: this may be good to do in
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
147 // general rather than delay for the final stealing phase.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
148 // If applicable, we'll transfer a set of objects over to our
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
149 // work queue, allowing them to be stolen and draining our
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
150 // private overflow stack.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
151 } while (ParGCTrimOverflow && young_gen()->take_from_overflow_list(this));
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
152 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
153
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
154 bool ParScanThreadState::take_from_overflow_stack() {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
155 assert(ParGCUseLocalOverflow, "Else should not call");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
156 assert(young_gen()->overflow_list() == NULL, "Error");
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
157 ObjToScanQueue* queue = work_queue();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
158 GrowableArray<oop>* of_stack = overflow_stack();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
159 uint num_overflow_elems = of_stack->length();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
160 uint num_take_elems = MIN2(MIN2((queue->max_elems() - queue->size())/4,
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
161 (juint)ParGCDesiredObjsFromOverflowList),
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
162 num_overflow_elems);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
163 // Transfer the most recent num_take_elems from the overflow
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
164 // stack to our work queue.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
165 for (size_t i = 0; i != num_take_elems; i++) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
166 oop cur = of_stack->pop();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
167 oop obj_to_push = cur->forwardee();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
168 assert(Universe::heap()->is_in_reserved(cur), "Should be in heap");
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
169 assert(!old_gen()->is_in_reserved(cur), "Should be in young gen");
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
170 assert(Universe::heap()->is_in_reserved(obj_to_push), "Should be in heap");
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
171 if (should_be_partially_scanned(obj_to_push, cur)) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
172 assert(arrayOop(cur)->length() == 0, "entire array remaining to be scanned");
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
173 obj_to_push = cur;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
174 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
175 bool ok = queue->push(obj_to_push);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
176 assert(ok, "Should have succeeded");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
178 assert(young_gen()->overflow_list() == NULL, "Error");
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
179 return num_take_elems > 0; // was something transferred?
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
180 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
181
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
182 void ParScanThreadState::push_on_overflow_stack(oop p) {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
183 assert(ParGCUseLocalOverflow, "Else should not call");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
184 overflow_stack()->push(p);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
185 assert(young_gen()->overflow_list() == NULL, "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 HeapWord* ParScanThreadState::alloc_in_to_space_slow(size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // Otherwise, if the object is small enough, try to reallocate the
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
192 HeapWord* obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 if (!_to_space_full) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 ParGCAllocBuffer* const plab = to_space_alloc_buffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 Space* const sp = to_space();
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if (word_sz * 100 <
a61af66fc99e Initial load
duke
parents:
diff changeset
197 ParallelGCBufferWastePct * plab->word_sz()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Is small enough; abandon this buffer and start a new one.
a61af66fc99e Initial load
duke
parents:
diff changeset
199 plab->retire(false, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 size_t buf_size = plab->word_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 HeapWord* buf_space = sp->par_allocate(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 if (buf_space == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 const size_t min_bytes =
a61af66fc99e Initial load
duke
parents:
diff changeset
204 ParGCAllocBuffer::min_size() << LogHeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 size_t free_bytes = sp->free();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 while(buf_space == NULL && free_bytes >= min_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 buf_size = free_bytes >> LogHeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 assert(buf_size == (size_t)align_object_size(buf_size),
a61af66fc99e Initial load
duke
parents:
diff changeset
209 "Invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
210 buf_space = sp->par_allocate(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 free_bytes = sp->free();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214 if (buf_space != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 plab->set_word_size(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 plab->set_buf(buf_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 record_survivor_plab(buf_space, buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 obj = plab->allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // Note that we cannot compare buf_size < word_sz below
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // because of AlignmentReserve (see ParGCAllocBuffer::allocate()).
a61af66fc99e Initial load
duke
parents:
diff changeset
221 assert(obj != NULL || plab->words_remaining() < word_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
222 "Else should have been able to allocate");
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // It's conceivable that we may be able to use the
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // buffer we just grabbed for subsequent small requests
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // even if not for this one.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // We're used up.
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _to_space_full = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Too large; allocate the object individually.
a61af66fc99e Initial load
duke
parents:
diff changeset
233 obj = sp->par_allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void ParScanThreadState::undo_alloc_in_to_space(HeapWord* obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
241 size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Is the alloc in the current alloc buffer?
a61af66fc99e Initial load
duke
parents:
diff changeset
243 if (to_space_alloc_buffer()->contains(obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 assert(to_space_alloc_buffer()->contains(obj + word_sz - 1),
a61af66fc99e Initial load
duke
parents:
diff changeset
245 "Should contain whole object.");
a61af66fc99e Initial load
duke
parents:
diff changeset
246 to_space_alloc_buffer()->undo_allocation(obj, word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 } else {
481
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 457
diff changeset
248 CollectedHeap::fill_with_object(obj, word_sz);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249 }
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 class ParScanThreadStateSet: private ResourceArray {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Initializes states for the specified number of threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 ParScanThreadStateSet(int num_threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
256 Space& to_space,
a61af66fc99e Initial load
duke
parents:
diff changeset
257 ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
258 Generation& old_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
259 ObjToScanQueueSet& queue_set,
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
260 GrowableArray<oop>** overflow_stacks_,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 size_t desired_plab_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
262 ParallelTaskTerminator& term);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 inline ParScanThreadState& thread_sate(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 int pushes() { return _pushes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 int pops() { return _pops; }
a61af66fc99e Initial load
duke
parents:
diff changeset
266 int steals() { return _steals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
267 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
268 void flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
269 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
270 ParallelTaskTerminator& _term;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 ParNewGeneration& _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 Generation& _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // staticstics
a61af66fc99e Initial load
duke
parents:
diff changeset
274 int _pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 int _pops;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 int _steals;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 };
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 ParScanThreadStateSet::ParScanThreadStateSet(
a61af66fc99e Initial load
duke
parents:
diff changeset
281 int num_threads, Space& to_space, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
282 Generation& old_gen, ObjToScanQueueSet& queue_set,
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
283 GrowableArray<oop>** overflow_stack_set_,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284 size_t desired_plab_sz, ParallelTaskTerminator& term)
a61af66fc99e Initial load
duke
parents:
diff changeset
285 : ResourceArray(sizeof(ParScanThreadState), num_threads),
a61af66fc99e Initial load
duke
parents:
diff changeset
286 _gen(gen), _next_gen(old_gen), _term(term),
a61af66fc99e Initial load
duke
parents:
diff changeset
287 _pushes(0), _pops(0), _steals(0)
a61af66fc99e Initial load
duke
parents:
diff changeset
288 {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 assert(num_threads > 0, "sanity check!");
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // Initialize states.
a61af66fc99e Initial load
duke
parents:
diff changeset
291 for (int i = 0; i < num_threads; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 new ((ParScanThreadState*)_data + i)
a61af66fc99e Initial load
duke
parents:
diff changeset
293 ParScanThreadState(&to_space, &gen, &old_gen, i, &queue_set,
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
294 overflow_stack_set_, desired_plab_sz, term);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 inline ParScanThreadState& ParScanThreadStateSet::thread_sate(int i)
a61af66fc99e Initial load
duke
parents:
diff changeset
299 {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 assert(i >= 0 && i < length(), "sanity check!");
a61af66fc99e Initial load
duke
parents:
diff changeset
301 return ((ParScanThreadState*)_data)[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 void ParScanThreadStateSet::reset()
a61af66fc99e Initial load
duke
parents:
diff changeset
306 {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 _term.reset_for_reuse();
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 void ParScanThreadStateSet::flush()
a61af66fc99e Initial load
duke
parents:
diff changeset
311 {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 for (int i = 0; i < length(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 ParScanThreadState& par_scan_state = thread_sate(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // Flush stats related to To-space PLAB activity and
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // retire the last buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
317 par_scan_state.to_space_alloc_buffer()->
a61af66fc99e Initial load
duke
parents:
diff changeset
318 flush_stats_and_retire(_gen.plab_stats(),
a61af66fc99e Initial load
duke
parents:
diff changeset
319 false /* !retain */);
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // Every thread has its own age table. We need to merge
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // them all into one.
a61af66fc99e Initial load
duke
parents:
diff changeset
323 ageTable *local_table = par_scan_state.age_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
324 _gen.age_table()->merge(local_table);
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // Inform old gen that we're done.
a61af66fc99e Initial load
duke
parents:
diff changeset
327 _next_gen.par_promote_alloc_done(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 _next_gen.par_oop_since_save_marks_iterate_done(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // Flush stats related to work queue activity (push/pop/steal)
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // This could conceivably become a bottleneck; if so, we'll put the
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // stat's gathering under the flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
333 if (PAR_STATS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 _pushes += par_scan_state.pushes();
a61af66fc99e Initial load
duke
parents:
diff changeset
335 _pops += par_scan_state.pops();
a61af66fc99e Initial load
duke
parents:
diff changeset
336 _steals += par_scan_state.steals();
a61af66fc99e Initial load
duke
parents:
diff changeset
337 if (ParallelGCVerbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 gclog_or_tty->print("Thread %d complete:\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
339 " Pushes: %7d Pops: %7d Steals %7d (in %d attempts)\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
340 i, par_scan_state.pushes(), par_scan_state.pops(),
a61af66fc99e Initial load
duke
parents:
diff changeset
341 par_scan_state.steals(), par_scan_state.steal_attempts());
a61af66fc99e Initial load
duke
parents:
diff changeset
342 if (par_scan_state.overflow_pushes() > 0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
343 par_scan_state.overflow_refills() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 gclog_or_tty->print(" Overflow pushes: %7d "
a61af66fc99e Initial load
duke
parents:
diff changeset
345 "Overflow refills: %7d for %d objs.\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
346 par_scan_state.overflow_pushes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
347 par_scan_state.overflow_refills(),
a61af66fc99e Initial load
duke
parents:
diff changeset
348 par_scan_state.overflow_refill_objs());
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 double elapsed = par_scan_state.elapsed();
a61af66fc99e Initial load
duke
parents:
diff changeset
352 double strong_roots = par_scan_state.strong_roots_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
353 double term = par_scan_state.term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
354 gclog_or_tty->print(
a61af66fc99e Initial load
duke
parents:
diff changeset
355 " Elapsed: %7.2f ms.\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
356 " Strong roots: %7.2f ms (%6.2f%%)\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
357 " Termination: %7.2f ms (%6.2f%%) (in %d entries)\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
358 elapsed * 1000.0,
a61af66fc99e Initial load
duke
parents:
diff changeset
359 strong_roots * 1000.0, (strong_roots*100.0/elapsed),
a61af66fc99e Initial load
duke
parents:
diff changeset
360 term * 1000.0, (term*100.0/elapsed),
a61af66fc99e Initial load
duke
parents:
diff changeset
361 par_scan_state.term_attempts());
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 }
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 ParScanClosure::ParScanClosure(ParNewGeneration* g,
a61af66fc99e Initial load
duke
parents:
diff changeset
368 ParScanThreadState* par_scan_state) :
a61af66fc99e Initial load
duke
parents:
diff changeset
369 OopsInGenClosure(g), _par_scan_state(par_scan_state), _g(g)
a61af66fc99e Initial load
duke
parents:
diff changeset
370 {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 assert(_g->level() == 0, "Optimized for youngest generation");
a61af66fc99e Initial load
duke
parents:
diff changeset
372 _boundary = _g->reserved().end();
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
375 void ParScanWithBarrierClosure::do_oop(oop* p) { ParScanClosure::do_oop_work(p, true, false); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
376 void ParScanWithBarrierClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, true, false); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
377
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
378 void ParScanWithoutBarrierClosure::do_oop(oop* p) { ParScanClosure::do_oop_work(p, false, false); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
379 void ParScanWithoutBarrierClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, false, false); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
380
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
381 void ParRootScanWithBarrierTwoGensClosure::do_oop(oop* p) { ParScanClosure::do_oop_work(p, true, true); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
382 void ParRootScanWithBarrierTwoGensClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, true, true); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
383
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
384 void ParRootScanWithoutBarrierClosure::do_oop(oop* p) { ParScanClosure::do_oop_work(p, false, true); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
385 void ParRootScanWithoutBarrierClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, false, true); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
386
0
a61af66fc99e Initial load
duke
parents:
diff changeset
387 ParScanWeakRefClosure::ParScanWeakRefClosure(ParNewGeneration* g,
a61af66fc99e Initial load
duke
parents:
diff changeset
388 ParScanThreadState* par_scan_state)
a61af66fc99e Initial load
duke
parents:
diff changeset
389 : ScanWeakRefClosure(g), _par_scan_state(par_scan_state)
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
390 {}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
391
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
392 void ParScanWeakRefClosure::do_oop(oop* p) { ParScanWeakRefClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
393 void ParScanWeakRefClosure::do_oop(narrowOop* p) { ParScanWeakRefClosure::do_oop_work(p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 #ifdef WIN32
a61af66fc99e Initial load
duke
parents:
diff changeset
396 #pragma warning(disable: 4786) /* identifier was truncated to '255' characters in the browser information */
a61af66fc99e Initial load
duke
parents:
diff changeset
397 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 ParEvacuateFollowersClosure::ParEvacuateFollowersClosure(
a61af66fc99e Initial load
duke
parents:
diff changeset
400 ParScanThreadState* par_scan_state_,
a61af66fc99e Initial load
duke
parents:
diff changeset
401 ParScanWithoutBarrierClosure* to_space_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
402 ParScanWithBarrierClosure* old_gen_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
403 ParRootScanWithoutBarrierClosure* to_space_root_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
404 ParNewGeneration* par_gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
405 ParRootScanWithBarrierTwoGensClosure* old_gen_root_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
406 ObjToScanQueueSet* task_queues_,
a61af66fc99e Initial load
duke
parents:
diff changeset
407 ParallelTaskTerminator* terminator_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 _par_scan_state(par_scan_state_),
a61af66fc99e Initial load
duke
parents:
diff changeset
410 _to_space_closure(to_space_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
411 _old_gen_closure(old_gen_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
412 _to_space_root_closure(to_space_root_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
413 _old_gen_root_closure(old_gen_root_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
414 _par_gen(par_gen_),
a61af66fc99e Initial load
duke
parents:
diff changeset
415 _task_queues(task_queues_),
a61af66fc99e Initial load
duke
parents:
diff changeset
416 _terminator(terminator_)
a61af66fc99e Initial load
duke
parents:
diff changeset
417 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 void ParEvacuateFollowersClosure::do_void() {
a61af66fc99e Initial load
duke
parents:
diff changeset
420 ObjToScanQueue* work_q = par_scan_state()->work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // Scan to-space and old-gen objs until we run out of both.
a61af66fc99e Initial load
duke
parents:
diff changeset
425 oop obj_to_scan;
a61af66fc99e Initial load
duke
parents:
diff changeset
426 par_scan_state()->trim_queues(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // We have no local work, attempt to steal from other threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // attempt to steal work from promoted.
a61af66fc99e Initial load
duke
parents:
diff changeset
431 par_scan_state()->note_steal_attempt();
a61af66fc99e Initial load
duke
parents:
diff changeset
432 if (task_queues()->steal(par_scan_state()->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
433 par_scan_state()->hash_seed(),
a61af66fc99e Initial load
duke
parents:
diff changeset
434 obj_to_scan)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 par_scan_state()->note_steal();
a61af66fc99e Initial load
duke
parents:
diff changeset
436 bool res = work_q->push(obj_to_scan);
a61af66fc99e Initial load
duke
parents:
diff changeset
437 assert(res, "Empty queue should have room for a push.");
a61af66fc99e Initial load
duke
parents:
diff changeset
438
a61af66fc99e Initial load
duke
parents:
diff changeset
439 par_scan_state()->note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // if successful, goto Start.
a61af66fc99e Initial load
duke
parents:
diff changeset
441 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // try global overflow list.
a61af66fc99e Initial load
duke
parents:
diff changeset
444 } else if (par_gen()->take_from_overflow_list(par_scan_state())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // Otherwise, offer termination.
a61af66fc99e Initial load
duke
parents:
diff changeset
449 par_scan_state()->start_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
450 if (terminator()->offer_termination()) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 par_scan_state()->end_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
453 assert(par_gen()->_overflow_list == NULL && par_gen()->_num_par_pushes == 0,
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
454 "Broken overflow list?");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // Finish the last termination pause.
a61af66fc99e Initial load
duke
parents:
diff changeset
456 par_scan_state()->end_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 ParNewGenTask::ParNewGenTask(ParNewGeneration* gen, Generation* next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
460 HeapWord* young_old_boundary, ParScanThreadStateSet* state_set) :
a61af66fc99e Initial load
duke
parents:
diff changeset
461 AbstractGangTask("ParNewGeneration collection"),
a61af66fc99e Initial load
duke
parents:
diff changeset
462 _gen(gen), _next_gen(next_gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
463 _young_old_boundary(young_old_boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
464 _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
465 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467 void ParNewGenTask::work(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
468 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // Since this is being done in a separate thread, need new resource
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // and handle marks.
a61af66fc99e Initial load
duke
parents:
diff changeset
471 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // We would need multiple old-gen queues otherwise.
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
474 assert(gch->n_gens() == 2, "Par young collection currently only works with one older gen.");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 Generation* old_gen = gch->next_gen(_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 ParScanThreadState& par_scan_state = _state_set->thread_sate(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 par_scan_state.set_young_old_boundary(_young_old_boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 par_scan_state.start_strong_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
482 gch->gen_process_strong_roots(_gen->level(),
a61af66fc99e Initial load
duke
parents:
diff changeset
483 true, // Process younger gens, if any,
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // as strong roots.
a61af66fc99e Initial load
duke
parents:
diff changeset
485 false,// not collecting perm generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
486 SharedHeap::SO_AllClasses,
a61af66fc99e Initial load
duke
parents:
diff changeset
487 &par_scan_state.older_gen_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
488 &par_scan_state.to_space_root_closure());
a61af66fc99e Initial load
duke
parents:
diff changeset
489 par_scan_state.end_strong_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // "evacuate followers".
a61af66fc99e Initial load
duke
parents:
diff changeset
492 par_scan_state.evacuate_followers_closure().do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
496 #pragma warning( push )
a61af66fc99e Initial load
duke
parents:
diff changeset
497 #pragma warning( disable:4355 ) // 'this' : used in base member initializer list
a61af66fc99e Initial load
duke
parents:
diff changeset
498 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
499 ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
500 ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level)
a61af66fc99e Initial load
duke
parents:
diff changeset
501 : DefNewGeneration(rs, initial_byte_size, level, "PCopy"),
a61af66fc99e Initial load
duke
parents:
diff changeset
502 _overflow_list(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
503 _is_alive_closure(this),
a61af66fc99e Initial load
duke
parents:
diff changeset
504 _plab_stats(YoungPLABSize, PLABWeight)
a61af66fc99e Initial load
duke
parents:
diff changeset
505 {
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
506 NOT_PRODUCT(_overflow_counter = ParGCWorkQueueOverflowInterval;)
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
507 NOT_PRODUCT(_num_par_pushes = 0;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
508 _task_queues = new ObjToScanQueueSet(ParallelGCThreads);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 guarantee(_task_queues != NULL, "task_queues allocation failure.");
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 for (uint i1 = 0; i1 < ParallelGCThreads; i1++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
512 ObjToScanQueuePadded *q_padded = new ObjToScanQueuePadded();
a61af66fc99e Initial load
duke
parents:
diff changeset
513 guarantee(q_padded != NULL, "work_queue Allocation failure.");
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515 _task_queues->register_queue(i1, &q_padded->work_queue);
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 for (uint i2 = 0; i2 < ParallelGCThreads; i2++)
a61af66fc99e Initial load
duke
parents:
diff changeset
519 _task_queues->queue(i2)->initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
520
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
521 _overflow_stacks = NEW_C_HEAP_ARRAY(GrowableArray<oop>*, ParallelGCThreads);
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
522 guarantee(_overflow_stacks != NULL, "Overflow stack set allocation failure");
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
523 for (uint i = 0; i < ParallelGCThreads; i++) {
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
524 if (ParGCUseLocalOverflow) {
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
525 _overflow_stacks[i] = new (ResourceObj::C_HEAP) GrowableArray<oop>(512, true);
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
526 guarantee(_overflow_stacks[i] != NULL, "Overflow Stack allocation failure.");
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
527 } else {
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
528 _overflow_stacks[i] = NULL;
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
529 }
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
530 }
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
531
0
a61af66fc99e Initial load
duke
parents:
diff changeset
532 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
533 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
534 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 const char* cname =
a61af66fc99e Initial load
duke
parents:
diff changeset
537 PerfDataManager::counter_name(_gen_counters->name_space(), "threads");
a61af66fc99e Initial load
duke
parents:
diff changeset
538 PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
a61af66fc99e Initial load
duke
parents:
diff changeset
539 ParallelGCThreads, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
540 }
a61af66fc99e Initial load
duke
parents:
diff changeset
541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
542 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
543 #pragma warning( pop )
a61af66fc99e Initial load
duke
parents:
diff changeset
544 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
547 ParKeepAliveClosure::ParKeepAliveClosure(ParScanWeakRefClosure* cl) :
a61af66fc99e Initial load
duke
parents:
diff changeset
548 DefNewGeneration::KeepAliveClosure(cl), _par_cl(cl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
549
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
550 template <class T>
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
551 void /*ParNewGeneration::*/ParKeepAliveClosure::do_oop_work(T* p) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
552 #ifdef ASSERT
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
553 {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
554 assert(!oopDesc::is_null(*p), "expected non-null ref");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
555 oop obj = oopDesc::load_decode_heap_oop_not_null(p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
556 // We never expect to see a null reference being processed
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
557 // as a weak reference.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
558 assert(obj->is_oop(), "expected an oop while scanning weak refs");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
559 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
560 #endif // ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 _par_cl->do_oop_nv(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
563
a61af66fc99e Initial load
duke
parents:
diff changeset
564 if (Universe::heap()->is_in_reserved(p)) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
565 oop obj = oopDesc::load_decode_heap_oop_not_null(p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
566 _rs->write_ref_field_gc_par(p, obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
569
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
570 void /*ParNewGeneration::*/ParKeepAliveClosure::do_oop(oop* p) { ParKeepAliveClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
571 void /*ParNewGeneration::*/ParKeepAliveClosure::do_oop(narrowOop* p) { ParKeepAliveClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
572
0
a61af66fc99e Initial load
duke
parents:
diff changeset
573 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
574 KeepAliveClosure::KeepAliveClosure(ScanWeakRefClosure* cl) :
a61af66fc99e Initial load
duke
parents:
diff changeset
575 DefNewGeneration::KeepAliveClosure(cl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
576
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
577 template <class T>
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
578 void /*ParNewGeneration::*/KeepAliveClosure::do_oop_work(T* p) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
579 #ifdef ASSERT
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
580 {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
581 assert(!oopDesc::is_null(*p), "expected non-null ref");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
582 oop obj = oopDesc::load_decode_heap_oop_not_null(p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
583 // We never expect to see a null reference being processed
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
584 // as a weak reference.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
585 assert(obj->is_oop(), "expected an oop while scanning weak refs");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
586 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
587 #endif // ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
588
a61af66fc99e Initial load
duke
parents:
diff changeset
589 _cl->do_oop_nv(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
590
a61af66fc99e Initial load
duke
parents:
diff changeset
591 if (Universe::heap()->is_in_reserved(p)) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
592 oop obj = oopDesc::load_decode_heap_oop_not_null(p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
593 _rs->write_ref_field_gc_par(p, obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
596
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
597 void /*ParNewGeneration::*/KeepAliveClosure::do_oop(oop* p) { KeepAliveClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
598 void /*ParNewGeneration::*/KeepAliveClosure::do_oop(narrowOop* p) { KeepAliveClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
599
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
600 template <class T> void ScanClosureWithParBarrier::do_oop_work(T* p) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
601 T heap_oop = oopDesc::load_heap_oop(p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
602 if (!oopDesc::is_null(heap_oop)) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
603 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
604 if ((HeapWord*)obj < _boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
605 assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
606 oop new_obj = obj->is_forwarded()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
607 ? obj->forwardee()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
608 : _g->DefNewGeneration::copy_to_survivor_space(obj);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
609 oopDesc::encode_store_heap_oop_not_null(p, new_obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
610 }
a61af66fc99e Initial load
duke
parents:
diff changeset
611 if (_gc_barrier) {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 // If p points to a younger generation, mark the card.
a61af66fc99e Initial load
duke
parents:
diff changeset
613 if ((HeapWord*)obj < _gen_boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
614 _rs->write_ref_field_gc_par(p, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
615 }
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
619
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
620 void ScanClosureWithParBarrier::do_oop(oop* p) { ScanClosureWithParBarrier::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
621 void ScanClosureWithParBarrier::do_oop(narrowOop* p) { ScanClosureWithParBarrier::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
622
0
a61af66fc99e Initial load
duke
parents:
diff changeset
623 class ParNewRefProcTaskProxy: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
624 typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
625 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
626 ParNewRefProcTaskProxy(ProcessTask& task, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
627 Generation& next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
628 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
629 ParScanThreadStateSet& state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
630
a61af66fc99e Initial load
duke
parents:
diff changeset
631 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
632 virtual void work(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
635 ParNewGeneration& _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
636 ProcessTask& _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
637 Generation& _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
638 HeapWord* _young_old_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
639 ParScanThreadStateSet& _state_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
640 };
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 ParNewRefProcTaskProxy::ParNewRefProcTaskProxy(
a61af66fc99e Initial load
duke
parents:
diff changeset
643 ProcessTask& task, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
644 Generation& next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
645 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
646 ParScanThreadStateSet& state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
647 : AbstractGangTask("ParNewGeneration parallel reference processing"),
a61af66fc99e Initial load
duke
parents:
diff changeset
648 _gen(gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
649 _task(task),
a61af66fc99e Initial load
duke
parents:
diff changeset
650 _next_gen(next_gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
651 _young_old_boundary(young_old_boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
652 _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
653 {
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656 void ParNewRefProcTaskProxy::work(int i)
a61af66fc99e Initial load
duke
parents:
diff changeset
657 {
a61af66fc99e Initial load
duke
parents:
diff changeset
658 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
659 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
660 ParScanThreadState& par_scan_state = _state_set.thread_sate(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 par_scan_state.set_young_old_boundary(_young_old_boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
662 _task.work(i, par_scan_state.is_alive_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
663 par_scan_state.keep_alive_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
664 par_scan_state.evacuate_followers_closure());
a61af66fc99e Initial load
duke
parents:
diff changeset
665 }
a61af66fc99e Initial load
duke
parents:
diff changeset
666
a61af66fc99e Initial load
duke
parents:
diff changeset
667 class ParNewRefEnqueueTaskProxy: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
668 typedef AbstractRefProcTaskExecutor::EnqueueTask EnqueueTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
669 EnqueueTask& _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
670
a61af66fc99e Initial load
duke
parents:
diff changeset
671 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
672 ParNewRefEnqueueTaskProxy(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
673 : AbstractGangTask("ParNewGeneration parallel reference enqueue"),
a61af66fc99e Initial load
duke
parents:
diff changeset
674 _task(task)
a61af66fc99e Initial load
duke
parents:
diff changeset
675 { }
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 virtual void work(int i)
a61af66fc99e Initial load
duke
parents:
diff changeset
678 {
a61af66fc99e Initial load
duke
parents:
diff changeset
679 _task.work(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 };
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684 void ParNewRefProcTaskExecutor::execute(ProcessTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
685 {
a61af66fc99e Initial load
duke
parents:
diff changeset
686 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
687 assert(gch->kind() == CollectedHeap::GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
688 "not a generational heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
689 WorkGang* workers = gch->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
690 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
691 ParNewRefProcTaskProxy rp_task(task, _generation, *_generation.next_gen(),
a61af66fc99e Initial load
duke
parents:
diff changeset
692 _generation.reserved().end(), _state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
693 workers->run_task(&rp_task);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 _state_set.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 void ParNewRefProcTaskExecutor::execute(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
698 {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
700 WorkGang* workers = gch->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
701 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
702 ParNewRefEnqueueTaskProxy enq_task(task);
a61af66fc99e Initial load
duke
parents:
diff changeset
703 workers->run_task(&enq_task);
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706 void ParNewRefProcTaskExecutor::set_single_threaded_mode()
a61af66fc99e Initial load
duke
parents:
diff changeset
707 {
a61af66fc99e Initial load
duke
parents:
diff changeset
708 _state_set.flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
709 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
710 gch->set_par_threads(0); // 0 ==> non-parallel.
a61af66fc99e Initial load
duke
parents:
diff changeset
711 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
712 }
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 ScanClosureWithParBarrier::
a61af66fc99e Initial load
duke
parents:
diff changeset
715 ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier) :
a61af66fc99e Initial load
duke
parents:
diff changeset
716 ScanClosure(g, gc_barrier) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 EvacuateFollowersClosureGeneral::
a61af66fc99e Initial load
duke
parents:
diff changeset
719 EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
720 OopsInGenClosure* cur,
a61af66fc99e Initial load
duke
parents:
diff changeset
721 OopsInGenClosure* older) :
a61af66fc99e Initial load
duke
parents:
diff changeset
722 _gch(gch), _level(level),
a61af66fc99e Initial load
duke
parents:
diff changeset
723 _scan_cur_or_nonheap(cur), _scan_older(older)
a61af66fc99e Initial load
duke
parents:
diff changeset
724 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 void EvacuateFollowersClosureGeneral::do_void() {
a61af66fc99e Initial load
duke
parents:
diff changeset
727 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // Beware: this call will lead to closure applications via virtual
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
730 _gch->oop_since_save_marks_iterate(_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
731 _scan_cur_or_nonheap,
a61af66fc99e Initial load
duke
parents:
diff changeset
732 _scan_older);
a61af66fc99e Initial load
duke
parents:
diff changeset
733 } while (!_gch->no_allocs_since_save_marks(_level));
a61af66fc99e Initial load
duke
parents:
diff changeset
734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736
a61af66fc99e Initial load
duke
parents:
diff changeset
737 bool ParNewGeneration::_avoid_promotion_undo = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 void ParNewGeneration::adjust_desired_tenuring_threshold() {
a61af66fc99e Initial load
duke
parents:
diff changeset
740 // Set the desired survivor size to half the real survivor space
a61af66fc99e Initial load
duke
parents:
diff changeset
741 _tenuring_threshold =
a61af66fc99e Initial load
duke
parents:
diff changeset
742 age_table()->compute_tenuring_threshold(to()->capacity()/HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // A Generation that does parallel young-gen collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 void ParNewGeneration::collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
748 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
749 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
750 bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 assert(full || size > 0, "otherwise we don't want to collect");
a61af66fc99e Initial load
duke
parents:
diff changeset
752 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
753 assert(gch->kind() == CollectedHeap::GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
754 "not a CMS generational heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
755 AdaptiveSizePolicy* size_policy = gch->gen_policy()->size_policy();
a61af66fc99e Initial load
duke
parents:
diff changeset
756 WorkGang* workers = gch->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
757 _next_gen = gch->next_gen(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
758 assert(_next_gen != NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
759 "This must be the youngest gen, and not the only gen");
a61af66fc99e Initial load
duke
parents:
diff changeset
760 assert(gch->n_gens() == 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
761 "Par collection currently only works with single older gen.");
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Do we have to avoid promotion_undo?
a61af66fc99e Initial load
duke
parents:
diff changeset
763 if (gch->collector_policy()->is_concurrent_mark_sweep_policy()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
764 set_avoid_promotion_undo(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
765 }
a61af66fc99e Initial load
duke
parents:
diff changeset
766
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // If the next generation is too full to accomodate worst-case promotion
a61af66fc99e Initial load
duke
parents:
diff changeset
768 // from this generation, pass on collection; let the next generation
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // do it.
a61af66fc99e Initial load
duke
parents:
diff changeset
770 if (!collection_attempt_is_safe()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
771 gch->set_incremental_collection_will_fail();
a61af66fc99e Initial load
duke
parents:
diff changeset
772 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
773 }
a61af66fc99e Initial load
duke
parents:
diff changeset
774 assert(to()->is_empty(), "Else not collection_attempt_is_safe");
a61af66fc99e Initial load
duke
parents:
diff changeset
775
a61af66fc99e Initial load
duke
parents:
diff changeset
776 init_assuming_no_promotion_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778 if (UseAdaptiveSizePolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
779 set_survivor_overflow(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
780 size_policy->minor_collection_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
781 }
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 TraceTime t1("GC", PrintGC && !PrintGCDetails, true, gclog_or_tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // Capture heap used before collection (for printing).
a61af66fc99e Initial load
duke
parents:
diff changeset
785 size_t gch_prev_used = gch->used();
a61af66fc99e Initial load
duke
parents:
diff changeset
786
a61af66fc99e Initial load
duke
parents:
diff changeset
787 SpecializationStats::clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789 age_table()->clear();
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
790 to()->clear(SpaceDecorator::Mangle);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
791
a61af66fc99e Initial load
duke
parents:
diff changeset
792 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
793 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
794 ParallelTaskTerminator _term(workers->total_workers(), task_queues());
a61af66fc99e Initial load
duke
parents:
diff changeset
795 ParScanThreadStateSet thread_state_set(workers->total_workers(),
a61af66fc99e Initial load
duke
parents:
diff changeset
796 *to(), *this, *_next_gen, *task_queues(),
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
797 _overflow_stacks, desired_plab_sz(), _term);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 ParNewGenTask tsk(this, _next_gen, reserved().end(), &thread_state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
800 int n_workers = workers->total_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
801 gch->set_par_threads(n_workers);
a61af66fc99e Initial load
duke
parents:
diff changeset
802 gch->change_strong_roots_parity();
a61af66fc99e Initial load
duke
parents:
diff changeset
803 gch->rem_set()->prepare_for_younger_refs_iterate(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
804 // It turns out that even when we're using 1 thread, doing the work in a
a61af66fc99e Initial load
duke
parents:
diff changeset
805 // separate thread causes wide variance in run times. We can't help this
a61af66fc99e Initial load
duke
parents:
diff changeset
806 // in the multi-threaded case, but we special-case n=1 here to get
a61af66fc99e Initial load
duke
parents:
diff changeset
807 // repeatable measurements of the 1-thread overhead of the parallel code.
a61af66fc99e Initial load
duke
parents:
diff changeset
808 if (n_workers > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
809 workers->run_task(&tsk);
a61af66fc99e Initial load
duke
parents:
diff changeset
810 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
811 tsk.work(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
812 }
a61af66fc99e Initial load
duke
parents:
diff changeset
813 thread_state_set.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
814
a61af66fc99e Initial load
duke
parents:
diff changeset
815 if (PAR_STATS_ENABLED && ParallelGCVerbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
816 gclog_or_tty->print("Thread totals:\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
817 " Pushes: %7d Pops: %7d Steals %7d (sum = %7d).\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
818 thread_state_set.pushes(), thread_state_set.pops(),
a61af66fc99e Initial load
duke
parents:
diff changeset
819 thread_state_set.steals(),
a61af66fc99e Initial load
duke
parents:
diff changeset
820 thread_state_set.pops()+thread_state_set.steals());
a61af66fc99e Initial load
duke
parents:
diff changeset
821 }
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
822 assert(thread_state_set.pushes() == thread_state_set.pops()
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
823 + thread_state_set.steals(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
824 "Or else the queues are leaky.");
a61af66fc99e Initial load
duke
parents:
diff changeset
825
a61af66fc99e Initial load
duke
parents:
diff changeset
826 // Process (weak) reference objects found during scavenge.
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
827 ReferenceProcessor* rp = ref_processor();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
828 IsAliveClosure is_alive(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
829 ScanWeakRefClosure scan_weak_ref(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
830 KeepAliveClosure keep_alive(&scan_weak_ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
831 ScanClosure scan_without_gc_barrier(this, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
832 ScanClosureWithParBarrier scan_with_gc_barrier(this, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
833 set_promo_failure_scan_stack_closure(&scan_without_gc_barrier);
a61af66fc99e Initial load
duke
parents:
diff changeset
834 EvacuateFollowersClosureGeneral evacuate_followers(gch, _level,
a61af66fc99e Initial load
duke
parents:
diff changeset
835 &scan_without_gc_barrier, &scan_with_gc_barrier);
457
27a80744a83b 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 454
diff changeset
836 rp->setup_policy(clear_all_soft_refs);
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
837 if (rp->processing_is_mt()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
838 ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
839 rp->process_discovered_references(&is_alive, &keep_alive,
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
840 &evacuate_followers, &task_executor);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
841 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
842 thread_state_set.flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
843 gch->set_par_threads(0); // 0 ==> non-parallel.
a61af66fc99e Initial load
duke
parents:
diff changeset
844 gch->save_marks();
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
845 rp->process_discovered_references(&is_alive, &keep_alive,
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
846 &evacuate_followers, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
847 }
a61af66fc99e Initial load
duke
parents:
diff changeset
848 if (!promotion_failed()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 // Swap the survivor spaces.
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
850 eden()->clear(SpaceDecorator::Mangle);
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
851 from()->clear(SpaceDecorator::Mangle);
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
852 if (ZapUnusedHeapArea) {
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
853 // This is now done here because of the piece-meal mangling which
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
854 // can check for valid mangling at intermediate points in the
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
855 // collection(s). When a minor collection fails to collect
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
856 // sufficient space resizing of the young generation can occur
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
857 // an redistribute the spaces in the young generation. Mangle
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
858 // here so that unzapped regions don't get distributed to
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
859 // other spaces.
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
860 to()->mangle_unused_area();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
861 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
862 swap_spaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
863
a61af66fc99e Initial load
duke
parents:
diff changeset
864 assert(to()->is_empty(), "to space should be empty now");
a61af66fc99e Initial load
duke
parents:
diff changeset
865 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
866 assert(HandlePromotionFailure,
a61af66fc99e Initial load
duke
parents:
diff changeset
867 "Should only be here if promotion failure handling is on");
a61af66fc99e Initial load
duke
parents:
diff changeset
868 if (_promo_failure_scan_stack != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // Can be non-null because of reference processing.
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // Free stack with its elements.
a61af66fc99e Initial load
duke
parents:
diff changeset
871 delete _promo_failure_scan_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
872 _promo_failure_scan_stack = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
873 }
a61af66fc99e Initial load
duke
parents:
diff changeset
874 remove_forwarding_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
875 if (PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
876 gclog_or_tty->print(" (promotion failed)");
a61af66fc99e Initial load
duke
parents:
diff changeset
877 }
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // All the spaces are in play for mark-sweep.
a61af66fc99e Initial load
duke
parents:
diff changeset
879 swap_spaces(); // Make life simpler for CMS || rescan; see 6483690.
a61af66fc99e Initial load
duke
parents:
diff changeset
880 from()->set_next_compaction_space(to());
a61af66fc99e Initial load
duke
parents:
diff changeset
881 gch->set_incremental_collection_will_fail();
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
882
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
883 // Reset the PromotionFailureALot counters.
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
884 NOT_PRODUCT(Universe::heap()->reset_promotion_should_fail();)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
886 // set new iteration safe limit for the survivor spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
887 from()->set_concurrent_iteration_safe_limit(from()->top());
a61af66fc99e Initial load
duke
parents:
diff changeset
888 to()->set_concurrent_iteration_safe_limit(to()->top());
a61af66fc99e Initial load
duke
parents:
diff changeset
889
a61af66fc99e Initial load
duke
parents:
diff changeset
890 adjust_desired_tenuring_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
891 if (ResizePLAB) {
a61af66fc99e Initial load
duke
parents:
diff changeset
892 plab_stats()->adjust_desired_plab_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
893 }
a61af66fc99e Initial load
duke
parents:
diff changeset
894
a61af66fc99e Initial load
duke
parents:
diff changeset
895 if (PrintGC && !PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
896 gch->print_heap_change(gch_prev_used);
a61af66fc99e Initial load
duke
parents:
diff changeset
897 }
a61af66fc99e Initial load
duke
parents:
diff changeset
898
a61af66fc99e Initial load
duke
parents:
diff changeset
899 if (UseAdaptiveSizePolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
900 size_policy->minor_collection_end(gch->gc_cause());
a61af66fc99e Initial load
duke
parents:
diff changeset
901 size_policy->avg_survived()->sample(from()->used());
a61af66fc99e Initial load
duke
parents:
diff changeset
902 }
a61af66fc99e Initial load
duke
parents:
diff changeset
903
a61af66fc99e Initial load
duke
parents:
diff changeset
904 update_time_of_last_gc(os::javaTimeMillis());
a61af66fc99e Initial load
duke
parents:
diff changeset
905
a61af66fc99e Initial load
duke
parents:
diff changeset
906 SpecializationStats::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
907
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
908 rp->set_enqueuing_is_done(true);
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
909 if (rp->processing_is_mt()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
910 ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
911 rp->enqueue_discovered_references(&task_executor);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
912 } else {
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
913 rp->enqueue_discovered_references(NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
914 }
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
915 rp->verify_no_references_recorded();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
916 }
a61af66fc99e Initial load
duke
parents:
diff changeset
917
a61af66fc99e Initial load
duke
parents:
diff changeset
918 static int sum;
a61af66fc99e Initial load
duke
parents:
diff changeset
919 void ParNewGeneration::waste_some_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 for (int i = 0; i < 100; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
921 sum += i;
a61af66fc99e Initial load
duke
parents:
diff changeset
922 }
a61af66fc99e Initial load
duke
parents:
diff changeset
923 }
a61af66fc99e Initial load
duke
parents:
diff changeset
924
a61af66fc99e Initial load
duke
parents:
diff changeset
925 static const oop ClaimedForwardPtr = oop(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
926
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // Because of concurrency, there are times where an object for which
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // "is_forwarded()" is true contains an "interim" forwarding pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
929 // value. Such a value will soon be overwritten with a real value.
a61af66fc99e Initial load
duke
parents:
diff changeset
930 // This method requires "obj" to have a forwarding pointer, and waits, if
a61af66fc99e Initial load
duke
parents:
diff changeset
931 // necessary for a real one to be inserted, and returns it.
a61af66fc99e Initial load
duke
parents:
diff changeset
932
a61af66fc99e Initial load
duke
parents:
diff changeset
933 oop ParNewGeneration::real_forwardee(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
934 oop forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
935 if (forward_ptr != ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
936 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
937 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
938 return real_forwardee_slow(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
939 }
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 oop ParNewGeneration::real_forwardee_slow(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
943 // Spin-read if it is claimed but not yet written by another thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
944 oop forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
945 while (forward_ptr == ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
946 waste_some_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
947 assert(obj->is_forwarded(), "precondition");
a61af66fc99e Initial load
duke
parents:
diff changeset
948 forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
949 }
a61af66fc99e Initial load
duke
parents:
diff changeset
950 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
952
a61af66fc99e Initial load
duke
parents:
diff changeset
953 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
954 bool ParNewGeneration::is_legal_forward_ptr(oop p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 return
a61af66fc99e Initial load
duke
parents:
diff changeset
956 (_avoid_promotion_undo && p == ClaimedForwardPtr)
a61af66fc99e Initial load
duke
parents:
diff changeset
957 || Universe::heap()->is_in_reserved(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
960
a61af66fc99e Initial load
duke
parents:
diff changeset
961 void ParNewGeneration::preserve_mark_if_necessary(oop obj, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
962 if ((m != markOopDesc::prototype()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
963 (!UseBiasedLocking || (m != markOopDesc::biased_locking_prototype()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
964 MutexLocker ml(ParGCRareEvent_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
965 DefNewGeneration::preserve_mark_if_necessary(obj, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
966 }
a61af66fc99e Initial load
duke
parents:
diff changeset
967 }
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969 // Multiple GC threads may try to promote an object. If the object
a61af66fc99e Initial load
duke
parents:
diff changeset
970 // is successfully promoted, a forwarding pointer will be installed in
a61af66fc99e Initial load
duke
parents:
diff changeset
971 // the object in the young generation. This method claims the right
a61af66fc99e Initial load
duke
parents:
diff changeset
972 // to install the forwarding pointer before it copies the object,
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // thus avoiding the need to undo the copy as in
a61af66fc99e Initial load
duke
parents:
diff changeset
974 // copy_to_survivor_space_avoiding_with_undo.
a61af66fc99e Initial load
duke
parents:
diff changeset
975
a61af66fc99e Initial load
duke
parents:
diff changeset
976 oop ParNewGeneration::copy_to_survivor_space_avoiding_promotion_undo(
a61af66fc99e Initial load
duke
parents:
diff changeset
977 ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
978 // In the sequential version, this assert also says that the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
979 // not forwarded. That might not be the case here. It is the case that
a61af66fc99e Initial load
duke
parents:
diff changeset
980 // the caller observed it to be not forwarded at some time in the past.
a61af66fc99e Initial load
duke
parents:
diff changeset
981 assert(is_in_reserved(old), "shouldn't be scavenging this oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983 // The sequential code read "old->age()" below. That doesn't work here,
a61af66fc99e Initial load
duke
parents:
diff changeset
984 // since the age is in the mark word, and that might be overwritten with
a61af66fc99e Initial load
duke
parents:
diff changeset
985 // a forwarding pointer by a parallel thread. So we must save the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
986 // word in a local and then analyze it.
a61af66fc99e Initial load
duke
parents:
diff changeset
987 oopDesc dummyOld;
a61af66fc99e Initial load
duke
parents:
diff changeset
988 dummyOld.set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
989 assert(!dummyOld.is_forwarded(),
a61af66fc99e Initial load
duke
parents:
diff changeset
990 "should not be called with forwarding pointer mark word.");
a61af66fc99e Initial load
duke
parents:
diff changeset
991
a61af66fc99e Initial load
duke
parents:
diff changeset
992 oop new_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
993 oop forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
994
a61af66fc99e Initial load
duke
parents:
diff changeset
995 // Try allocating obj in to-space (unless too old)
a61af66fc99e Initial load
duke
parents:
diff changeset
996 if (dummyOld.age() < tenuring_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
997 new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
998 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
999 set_survivor_overflow(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 // Either to-space is full or we decided to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 // try allocating obj tenured
a61af66fc99e Initial load
duke
parents:
diff changeset
1006
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 // Attempt to install a null forwarding pointer (atomically),
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 // to claim the right to install the real forwarding pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 forward_ptr = old->forward_to_atomic(ClaimedForwardPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 if (forward_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 // someone else beat us to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 return real_forwardee(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1014
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 new_obj = _next_gen->par_promote(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 old, m, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1017
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 if (!HandlePromotionFailure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 // A failed promotion likely means the MaxLiveObjectEvacuationRatio flag
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // is incorrectly set. In any case, its seriously wrong to be here!
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 vm_exit_out_of_memory(sz*wordSize, "promotion");
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 // promotion failed, forward to self
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 _promotion_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 new_obj = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1027
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 preserve_mark_if_necessary(old, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1030
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 old->forward_to(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 forward_ptr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 // Is in to-space; do copying ourselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 forward_ptr = old->forward_to_atomic(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 // Restore the mark word copied above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 new_obj->set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 // Increment age if obj still in new generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 new_obj->incr_age();
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 par_scan_state->age_table()->add(new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 assert(new_obj != NULL, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1044
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 if (forward_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 oop obj_to_push = new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 // Length field used as index of next element to be scanned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 // Real length can be obtained from real_forwardee()
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 arrayOop(old)->set_length(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 obj_to_push = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 "push forwarded object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 // Push it on one of the queues of to-be-scanned objects.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1056 bool simulate_overflow = false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1057 NOT_PRODUCT(
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1058 if (ParGCWorkQueueOverflowALot && should_simulate_overflow()) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1059 // simulate a stack overflow
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1060 simulate_overflow = true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1061 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1062 )
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1063 if (simulate_overflow || !par_scan_state->work_queue()->push(obj_to_push)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 // Add stats for overflow pushes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 if (Verbose && PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 gclog_or_tty->print("queue overflow!\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1068 push_on_overflow_list(old, par_scan_state);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 par_scan_state->note_overflow_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 par_scan_state->note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
1072
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 return new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 // Oops. Someone beat us to it. Undo the allocation. Where did we
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // allocate it?
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 if (is_in_reserved(new_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 // Must be in to_space.
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 assert(to()->is_in_reserved(new_obj), "Checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 if (forward_ptr == ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 // Wait to get the real forwarding pointer value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 forward_ptr = real_forwardee(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1087
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1090
a61af66fc99e Initial load
duke
parents:
diff changeset
1091
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 // Multiple GC threads may try to promote the same object. If two
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 // or more GC threads copy the object, only one wins the race to install
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 // the forwarding pointer. The other threads have to undo their copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1095
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 oop ParNewGeneration::copy_to_survivor_space_with_undo(
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1098
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 // In the sequential version, this assert also says that the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 // not forwarded. That might not be the case here. It is the case that
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 // the caller observed it to be not forwarded at some time in the past.
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 assert(is_in_reserved(old), "shouldn't be scavenging this oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
1103
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 // The sequential code read "old->age()" below. That doesn't work here,
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 // since the age is in the mark word, and that might be overwritten with
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 // a forwarding pointer by a parallel thread. So we must save the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 // word here, install it in a local oopDesc, and then analyze it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 oopDesc dummyOld;
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 dummyOld.set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 assert(!dummyOld.is_forwarded(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 "should not be called with forwarding pointer mark word.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1112
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 bool failed_to_promote = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 oop new_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 oop forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1116
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 // Try allocating obj in to-space (unless too old)
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 if (dummyOld.age() < tenuring_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 set_survivor_overflow(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1124
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // Either to-space is full or we decided to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // try allocating obj tenured
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 new_obj = _next_gen->par_promote(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 old, m, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1130
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 if (!HandlePromotionFailure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 // A failed promotion likely means the MaxLiveObjectEvacuationRatio
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 // flag is incorrectly set. In any case, its seriously wrong to be
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 // here!
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 vm_exit_out_of_memory(sz*wordSize, "promotion");
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 // promotion failed, forward to self
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 forward_ptr = old->forward_to_atomic(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 new_obj = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1141
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 if (forward_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 return forward_ptr; // someone else succeeded
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1145
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 _promotion_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 failed_to_promote = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1148
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 preserve_mark_if_necessary(old, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 // Is in to-space; do copying ourselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // Restore the mark word copied above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 new_obj->set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 // Increment age if new_obj still in new generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 new_obj->incr_age();
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 par_scan_state->age_table()->add(new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 assert(new_obj != NULL, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1161
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 // Now attempt to install the forwarding pointer (atomically).
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 // We have to copy the mark word before overwriting with forwarding
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 // ptr, so we can restore it below in the copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 if (!failed_to_promote) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 forward_ptr = old->forward_to_atomic(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 if (forward_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 oop obj_to_push = new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 // Length field used as index of next element to be scanned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 // Real length can be obtained from real_forwardee()
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 arrayOop(old)->set_length(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 obj_to_push = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 "push forwarded object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 // Push it on one of the queues of to-be-scanned objects.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1180 bool simulate_overflow = false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1181 NOT_PRODUCT(
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1182 if (ParGCWorkQueueOverflowALot && should_simulate_overflow()) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1183 // simulate a stack overflow
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1184 simulate_overflow = true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1185 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1186 )
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1187 if (simulate_overflow || !par_scan_state->work_queue()->push(obj_to_push)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 // Add stats for overflow pushes.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1189 push_on_overflow_list(old, par_scan_state);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 par_scan_state->note_overflow_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 par_scan_state->note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
1193
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 return new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1196
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 // Oops. Someone beat us to it. Undo the allocation. Where did we
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 // allocate it?
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 if (is_in_reserved(new_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 // Must be in to_space.
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 assert(to()->is_in_reserved(new_obj), "Checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 assert(!_avoid_promotion_undo, "Should not be here if avoiding.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 _next_gen->par_promote_alloc_undo(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1208
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1212 #ifndef PRODUCT
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1213 // It's OK to call this multi-threaded; the worst thing
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1214 // that can happen is that we'll get a bunch of closely
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1215 // spaced simulated oveflows, but that's OK, in fact
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1216 // probably good as it would exercise the overflow code
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1217 // under contention.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1218 bool ParNewGeneration::should_simulate_overflow() {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1219 if (_overflow_counter-- <= 0) { // just being defensive
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1220 _overflow_counter = ParGCWorkQueueOverflowInterval;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1221 return true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1222 } else {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1223 return false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1224 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1225 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1226 #endif
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1227
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1228 // In case we are using compressed oops, we need to be careful.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1229 // If the object being pushed is an object array, then its length
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1230 // field keeps track of the "grey boundary" at which the next
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1231 // incremental scan will be done (see ParGCArrayScanChunk).
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1232 // When using compressed oops, this length field is kept in the
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1233 // lower 32 bits of the erstwhile klass word and cannot be used
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1234 // for the overflow chaining pointer (OCP below). As such the OCP
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1235 // would itself need to be compressed into the top 32-bits in this
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1236 // case. Unfortunately, see below, in the event that we have a
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1237 // promotion failure, the node to be pushed on the list can be
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1238 // outside of the Java heap, so the heap-based pointer compression
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1239 // would not work (we would have potential aliasing between C-heap
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1240 // and Java-heap pointers). For this reason, when using compressed
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1241 // oops, we simply use a worker-thread-local, non-shared overflow
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1242 // list in the form of a growable array, with a slightly different
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1243 // overflow stack draining strategy. If/when we start using fat
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1244 // stacks here, we can go back to using (fat) pointer chains
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1245 // (although some performance comparisons would be useful since
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1246 // single global lists have their own performance disadvantages
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1247 // as we were made painfully aware not long ago, see 6786503).
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1248 #define BUSY (oop(0x1aff1aff))
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1249 void ParNewGeneration::push_on_overflow_list(oop from_space_obj, ParScanThreadState* par_scan_state) {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1250 assert(is_in_reserved(from_space_obj), "Should be from this generation");
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1251 if (ParGCUseLocalOverflow) {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1252 // In the case of compressed oops, we use a private, not-shared
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1253 // overflow stack.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1254 par_scan_state->push_on_overflow_stack(from_space_obj);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1255 } else {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1256 assert(!UseCompressedOops, "Error");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1257 // if the object has been forwarded to itself, then we cannot
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1258 // use the klass pointer for the linked list. Instead we have
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1259 // to allocate an oopDesc in the C-Heap and use that for the linked list.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1260 // XXX This is horribly inefficient when a promotion failure occurs
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1261 // and should be fixed. XXX FIX ME !!!
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1262 #ifndef PRODUCT
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1263 Atomic::inc_ptr(&_num_par_pushes);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1264 assert(_num_par_pushes > 0, "Tautology");
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1265 #endif
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1266 if (from_space_obj->forwardee() == from_space_obj) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1267 oopDesc* listhead = NEW_C_HEAP_ARRAY(oopDesc, 1);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1268 listhead->forward_to(from_space_obj);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1269 from_space_obj = listhead;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1270 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1271 oop observed_overflow_list = _overflow_list;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1272 oop cur_overflow_list;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1273 do {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1274 cur_overflow_list = observed_overflow_list;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1275 if (cur_overflow_list != BUSY) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1276 from_space_obj->set_klass_to_list_ptr(cur_overflow_list);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1277 } else {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1278 from_space_obj->set_klass_to_list_ptr(NULL);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1279 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1280 observed_overflow_list =
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1281 (oop)Atomic::cmpxchg_ptr(from_space_obj, &_overflow_list, cur_overflow_list);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1282 } while (cur_overflow_list != observed_overflow_list);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1285
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1286 bool ParNewGeneration::take_from_overflow_list(ParScanThreadState* par_scan_state) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1287 bool res;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1288
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1289 if (ParGCUseLocalOverflow) {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1290 res = par_scan_state->take_from_overflow_stack();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1291 } else {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1292 assert(!UseCompressedOops, "Error");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1293 res = take_from_overflow_list_work(par_scan_state);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1294 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1295 return res;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1296 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1297
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1298
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1299 // *NOTE*: The overflow list manipulation code here and
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1300 // in CMSCollector:: are very similar in shape,
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1301 // except that in the CMS case we thread the objects
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1302 // directly into the list via their mark word, and do
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1303 // not need to deal with special cases below related
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1304 // to chunking of object arrays and promotion failure
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1305 // handling.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1306 // CR 6797058 has been filed to attempt consolidation of
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1307 // the common code.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1308 // Because of the common code, if you make any changes in
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1309 // the code below, please check the CMS version to see if
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1310 // similar changes might be needed.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1311 // See CMSCollector::par_take_from_overflow_list() for
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1312 // more extensive documentation comments.
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1313 bool ParNewGeneration::take_from_overflow_list_work(ParScanThreadState* par_scan_state) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 ObjToScanQueue* work_q = par_scan_state->work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 // How many to take?
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1316 size_t objsFromOverflow = MIN2((size_t)(work_q->max_elems() - work_q->size())/4,
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1317 (size_t)ParGCDesiredObjsFromOverflowList);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1318
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1319 assert(par_scan_state->overflow_stack() == NULL, "Error");
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1320 assert(!UseCompressedOops, "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 if (_overflow_list == NULL) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1322
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 // Otherwise, there was something there; try claiming the list.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1324 oop prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1325 // Trim off a prefix of at most objsFromOverflow items
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1326 Thread* tid = Thread::current();
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1327 size_t spin_count = (size_t)ParallelGCThreads;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1328 size_t sleep_time_millis = MAX2((size_t)1, objsFromOverflow/100);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1329 for (size_t spin = 0; prefix == BUSY && spin < spin_count; spin++) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1330 // someone grabbed it before we did ...
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1331 // ... we spin for a short while...
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1332 os::sleep(tid, sleep_time_millis, false);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1333 if (_overflow_list == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1334 // nothing left to take
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1335 return false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1336 } else if (_overflow_list != BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1337 // try and grab the prefix
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1338 prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1339 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1341 if (prefix == NULL || prefix == BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1342 // Nothing to take or waited long enough
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1343 if (prefix == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1344 // Write back the NULL in case we overwrote it with BUSY above
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1345 // and it is still the same value.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1346 (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1347 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1348 return false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1349 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1350 assert(prefix != NULL && prefix != BUSY, "Error");
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1351 size_t i = 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 oop cur = prefix;
167
feeb96a45707 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 113
diff changeset
1353 while (i < objsFromOverflow && cur->klass_or_null() != NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 i++; cur = oop(cur->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1356
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // Reattach remaining (suffix) to overflow list
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1358 if (cur->klass_or_null() == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1359 // Write back the NULL in lieu of the BUSY we wrote
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1360 // above and it is still the same value.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1361 if (_overflow_list == BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1362 (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1364 } else {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1365 assert(cur->klass_or_null() != BUSY, "Error");
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1366 oop suffix = oop(cur->klass()); // suffix will be put back on global list
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1367 cur->set_klass_to_list_ptr(NULL); // break off suffix
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1368 // It's possible that the list is still in the empty(busy) state
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1369 // we left it in a short while ago; in that case we may be
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1370 // able to place back the suffix.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1371 oop observed_overflow_list = _overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1372 oop cur_overflow_list = observed_overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1373 bool attached = false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1374 while (observed_overflow_list == BUSY || observed_overflow_list == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1375 observed_overflow_list =
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1376 (oop) Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1377 if (cur_overflow_list == observed_overflow_list) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1378 attached = true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1379 break;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1380 } else cur_overflow_list = observed_overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1381 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1382 if (!attached) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1383 // Too bad, someone else got in in between; we'll need to do a splice.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1384 // Find the last item of suffix list
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1385 oop last = suffix;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1386 while (last->klass_or_null() != NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1387 last = oop(last->klass());
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1388 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1389 // Atomically prepend suffix to current overflow list
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1390 observed_overflow_list = _overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1391 do {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1392 cur_overflow_list = observed_overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1393 if (cur_overflow_list != BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1394 // Do the splice ...
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1395 last->set_klass_to_list_ptr(cur_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1396 } else { // cur_overflow_list == BUSY
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1397 last->set_klass_to_list_ptr(NULL);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1398 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1399 observed_overflow_list =
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1400 (oop)Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1401 } while (cur_overflow_list != observed_overflow_list);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1404
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 // Push objects on prefix list onto this thread's work queue
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1406 assert(prefix != NULL && prefix != BUSY, "program logic");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 cur = prefix;
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1408 ssize_t n = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 while (cur != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 oop obj_to_push = cur->forwardee();
454
df4305d4c1a1 6774607: SIGSEGV or (!is_null(v),"oop value can never be zero") assertion when running with CMS and COOPs
ysr
parents: 453
diff changeset
1411 oop next = oop(cur->klass_or_null());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 cur->set_klass(obj_to_push->klass());
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1413 // This may be an array object that is self-forwarded. In that case, the list pointer
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1414 // space, cur, is not in the Java heap, but rather in the C-heap and should be freed.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1415 if (!is_in_reserved(cur)) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1416 // This can become a scaling bottleneck when there is work queue overflow coincident
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1417 // with promotion failure.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1418 oopDesc* f = cur;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1419 FREE_C_HEAP_ARRAY(oopDesc, f);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1420 } else if (par_scan_state->should_be_partially_scanned(obj_to_push, cur)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 assert(arrayOop(cur)->length() == 0, "entire array remaining to be scanned");
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1422 obj_to_push = cur;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1424 bool ok = work_q->push(obj_to_push);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1425 assert(ok, "Should have succeeded");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 cur = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 n++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 par_scan_state->note_overflow_refill(n);
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1430 #ifndef PRODUCT
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1431 assert(_num_par_pushes >= n, "Too many pops?");
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1432 Atomic::add_ptr(-(intptr_t)n, &_num_par_pushes);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1433 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1436 #undef BUSY
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1437
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 void ParNewGeneration::ref_processor_init()
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 if (_ref_processor == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 // Allocate and initialize a reference processor
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 _ref_processor = ReferenceProcessor::create_ref_processor(
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 _reserved, // span
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 refs_discovery_is_atomic(), // atomic_discovery
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 refs_discovery_is_mt(), // mt_discovery
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 NULL, // is_alive_non_header
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 ParallelGCThreads,
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 ParallelRefProcEnabled);
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1451
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 const char* ParNewGeneration::name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 return "par new generation";
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 }