annotate src/share/vm/gc_implementation/parNew/parNewGeneration.cpp @ 10405:f2110083203d

8005849: JEP 167: Event-Based JVM Tracing Reviewed-by: acorn, coleenp, sla Contributed-by: Karen Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
author sla
date Mon, 10 Jun 2013 11:30:51 +0200
parents a30e7b564541
children 330dfb0476f4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1387
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1387
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1387
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
26 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
27 #include "gc_implementation/parNew/parNewGeneration.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
28 #include "gc_implementation/parNew/parOopClosures.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
29 #include "gc_implementation/shared/adaptiveSizePolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
30 #include "gc_implementation/shared/ageTable.hpp"
6595
aaf61e68b255 6818524: G1: use ergonomic resizing of PLABs
johnc
parents: 6197
diff changeset
31 #include "gc_implementation/shared/parGCAllocBuffer.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
32 #include "gc_implementation/shared/gcHeapSummary.hpp"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
33 #include "gc_implementation/shared/gcTimer.hpp"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
34 #include "gc_implementation/shared/gcTrace.hpp"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
35 #include "gc_implementation/shared/gcTraceTime.hpp"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
36 #include "gc_implementation/shared/copyFailedInfo.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
37 #include "gc_implementation/shared/spaceDecorator.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
38 #include "memory/defNewGeneration.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
39 #include "memory/genCollectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
40 #include "memory/genOopClosures.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
41 #include "memory/generation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
42 #include "memory/generation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
43 #include "memory/referencePolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
44 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
45 #include "memory/sharedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
46 #include "memory/space.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
47 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
48 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
49 #include "oops/oop.pcgc.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
50 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
51 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
52 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
53 #include "runtime/thread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
54 #include "utilities/copy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
55 #include "utilities/globalDefinitions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
56 #include "utilities/workgroup.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
59 #pragma warning( push )
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #pragma warning( disable:4355 ) // 'this' : used in base member initializer list
a61af66fc99e Initial load
duke
parents:
diff changeset
61 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
62 ParScanThreadState::ParScanThreadState(Space* to_space_,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ParNewGeneration* gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
64 Generation* old_gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int thread_num_,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 ObjToScanQueueSet* work_queue_set_,
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
67 Stack<oop, mtGC>* overflow_stacks_,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 size_t desired_plab_sz_,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ParallelTaskTerminator& term_) :
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
70 _to_space(to_space_), _old_gen(old_gen_), _young_gen(gen_), _thread_num(thread_num_),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 _work_queue(work_queue_set_->queue(thread_num_)), _to_space_full(false),
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
72 _overflow_stack(overflow_stacks_ ? overflow_stacks_ + thread_num_ : NULL),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 _ageTable(false), // false ==> not the global age table, no perf data.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _to_space_alloc_buffer(desired_plab_sz_),
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _to_space_closure(gen_, this), _old_gen_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
76 _to_space_root_closure(gen_, this), _old_gen_root_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _older_gen_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _evacuate_followers(this, &_to_space_closure, &_old_gen_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
79 &_to_space_root_closure, gen_, &_old_gen_root_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
80 work_queue_set_, &term_),
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _is_alive_closure(gen_), _scan_weak_ref_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _keep_alive_closure(&_scan_weak_ref_closure),
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _strong_roots_time(0.0), _term_time(0.0)
a61af66fc99e Initial load
duke
parents:
diff changeset
84 {
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
85 #if TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
86 _term_attempts = 0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
87 _overflow_refills = 0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
88 _overflow_refill_objs = 0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
89 #endif // TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
90
0
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _survivor_chunk_array =
a61af66fc99e Initial load
duke
parents:
diff changeset
92 (ChunkArray*) old_gen()->get_data_recorder(thread_num());
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _hash_seed = 17; // Might want to take time-based random value.
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _start = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _old_gen_closure.set_generation(old_gen_);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _old_gen_root_closure.set_generation(old_gen_);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
99 #pragma warning( pop )
a61af66fc99e Initial load
duke
parents:
diff changeset
100 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void ParScanThreadState::record_survivor_plab(HeapWord* plab_start,
a61af66fc99e Initial load
duke
parents:
diff changeset
103 size_t plab_word_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 ChunkArray* sca = survivor_chunk_array();
a61af66fc99e Initial load
duke
parents:
diff changeset
105 if (sca != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // A non-null SCA implies that we want the PLAB data recorded.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 sca->record_sample(plab_start, plab_word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 bool ParScanThreadState::should_be_partially_scanned(oop new_obj, oop old_obj) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return new_obj->is_objArray() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
113 arrayOop(new_obj)->length() > ParGCArrayScanChunk &&
a61af66fc99e Initial load
duke
parents:
diff changeset
114 new_obj != old_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void ParScanThreadState::scan_partial_array_and_push_remainder(oop old) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 assert(old->is_objArray(), "must be obj array");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 assert(old->is_forwarded(), "must be forwarded");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 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
121 assert(!old_gen()->is_in(old), "must be in young generation.");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 objArrayOop obj = objArrayOop(old->forwardee());
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Process ParGCArrayScanChunk elements now
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // and push the remainder back onto queue
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int start = arrayOop(old)->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 int end = obj->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 int remainder = end - start;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 assert(start <= end, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
130 if (remainder > 2 * ParGCArrayScanChunk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Test above combines last partial chunk with a full chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
132 end = start + ParGCArrayScanChunk;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 arrayOop(old)->set_length(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Push remainder.
a61af66fc99e Initial load
duke
parents:
diff changeset
135 bool ok = work_queue()->push(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 assert(ok, "just popped, push must be okay");
a61af66fc99e Initial load
duke
parents:
diff changeset
137 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Restore length so that it can be used if there
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // is a promotion failure and forwarding pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // must be removed.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 arrayOop(old)->set_length(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
143
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // 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
145 // should make sure end is even (aligned to HeapWord in case of compressed oops)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
146 if ((HeapWord *)obj < young_old_boundary()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // 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
148 obj->oop_iterate_range(&_to_space_closure, start, end);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // 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
151 obj->oop_iterate_range(&_old_gen_closure, start, end);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void ParScanThreadState::trim_queues(int max_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ObjToScanQueue* queue = work_queue();
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
158 do {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
159 while (queue->size() > (juint)max_size) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
160 oop obj_to_scan;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
161 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
162 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
163 if (obj_to_scan->is_objArray() &&
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
164 obj_to_scan->is_forwarded() &&
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
165 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
166 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
167 } else {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
168 // object is in to_space
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
169 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
170 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171 } else {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
172 // object is in old generation
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
173 obj_to_scan->oop_iterate(&_old_gen_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
177 // 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
178 // 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
179 // 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
180 // 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
181 // 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
182 // 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
183 // private overflow stack.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
184 } 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
185 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
186
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
187 bool ParScanThreadState::take_from_overflow_stack() {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
188 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
189 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
190 ObjToScanQueue* queue = work_queue();
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
191 Stack<oop, mtGC>* const of_stack = overflow_stack();
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
192 const size_t num_overflow_elems = of_stack->size();
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
193 const size_t space_available = queue->max_elems() - queue->size();
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
194 const size_t num_take_elems = MIN3(space_available / 4,
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
195 ParGCDesiredObjsFromOverflowList,
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
196 num_overflow_elems);
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
197 // 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
198 // stack to our work queue.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
199 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
200 oop cur = of_stack->pop();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
201 oop obj_to_push = cur->forwardee();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
202 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
203 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
204 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
205 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
206 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
207 obj_to_push = cur;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
208 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
209 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
210 assert(ok, "Should have succeeded");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
212 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
213 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
214 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
215
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
216 void ParScanThreadState::push_on_overflow_stack(oop p) {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
217 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
218 overflow_stack()->push(p);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
219 assert(young_gen()->overflow_list() == NULL, "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 HeapWord* ParScanThreadState::alloc_in_to_space_slow(size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Otherwise, if the object is small enough, try to reallocate the
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 HeapWord* obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 if (!_to_space_full) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 ParGCAllocBuffer* const plab = to_space_alloc_buffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
229 Space* const sp = to_space();
a61af66fc99e Initial load
duke
parents:
diff changeset
230 if (word_sz * 100 <
a61af66fc99e Initial load
duke
parents:
diff changeset
231 ParallelGCBufferWastePct * plab->word_sz()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Is small enough; abandon this buffer and start a new one.
a61af66fc99e Initial load
duke
parents:
diff changeset
233 plab->retire(false, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
234 size_t buf_size = plab->word_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
235 HeapWord* buf_space = sp->par_allocate(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 if (buf_space == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 const size_t min_bytes =
a61af66fc99e Initial load
duke
parents:
diff changeset
238 ParGCAllocBuffer::min_size() << LogHeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 size_t free_bytes = sp->free();
a61af66fc99e Initial load
duke
parents:
diff changeset
240 while(buf_space == NULL && free_bytes >= min_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 buf_size = free_bytes >> LogHeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 assert(buf_size == (size_t)align_object_size(buf_size),
a61af66fc99e Initial load
duke
parents:
diff changeset
243 "Invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
244 buf_space = sp->par_allocate(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 free_bytes = sp->free();
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 if (buf_space != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 plab->set_word_size(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 plab->set_buf(buf_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 record_survivor_plab(buf_space, buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 obj = plab->allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Note that we cannot compare buf_size < word_sz below
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // because of AlignmentReserve (see ParGCAllocBuffer::allocate()).
a61af66fc99e Initial load
duke
parents:
diff changeset
255 assert(obj != NULL || plab->words_remaining() < word_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
256 "Else should have been able to allocate");
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // It's conceivable that we may be able to use the
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // buffer we just grabbed for subsequent small requests
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // even if not for this one.
a61af66fc99e Initial load
duke
parents:
diff changeset
260 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // We're used up.
a61af66fc99e Initial load
duke
parents:
diff changeset
262 _to_space_full = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // Too large; allocate the object individually.
a61af66fc99e Initial load
duke
parents:
diff changeset
267 obj = sp->par_allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 void ParScanThreadState::undo_alloc_in_to_space(HeapWord* obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
275 size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // Is the alloc in the current alloc buffer?
a61af66fc99e Initial load
duke
parents:
diff changeset
277 if (to_space_alloc_buffer()->contains(obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 assert(to_space_alloc_buffer()->contains(obj + word_sz - 1),
a61af66fc99e Initial load
duke
parents:
diff changeset
279 "Should contain whole object.");
a61af66fc99e Initial load
duke
parents:
diff changeset
280 to_space_alloc_buffer()->undo_allocation(obj, word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 } else {
481
7d7a7c599c17 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 457
diff changeset
282 CollectedHeap::fill_with_object(obj, word_sz);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
286 void ParScanThreadState::print_promotion_failure_size() {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
287 if (_promotion_failed_info.has_failed() && PrintPromotionFailure) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
288 gclog_or_tty->print(" (%d: promotion failure size = " SIZE_FORMAT ") ",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
289 _thread_num, _promotion_failed_info.first_size());
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
290 }
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
291 }
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
292
0
a61af66fc99e Initial load
duke
parents:
diff changeset
293 class ParScanThreadStateSet: private ResourceArray {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // Initializes states for the specified number of threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 ParScanThreadStateSet(int num_threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
297 Space& to_space,
a61af66fc99e Initial load
duke
parents:
diff changeset
298 ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
299 Generation& old_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
300 ObjToScanQueueSet& queue_set,
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
301 Stack<oop, mtGC>* overflow_stacks_,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
302 size_t desired_plab_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
303 ParallelTaskTerminator& term);
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
304
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
305 ~ParScanThreadStateSet() { TASKQUEUE_STATS_ONLY(reset_stats()); }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
306
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
307 inline ParScanThreadState& thread_state(int i);
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
308
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
309 void trace_promotion_failed(YoungGCTracer& gc_tracer);
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
310 void reset(int active_workers, bool promotion_failed);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
311 void flush();
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
312
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
313 #if TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
314 static void
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
315 print_termination_stats_hdr(outputStream* const st = gclog_or_tty);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
316 void print_termination_stats(outputStream* const st = gclog_or_tty);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
317 static void
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
318 print_taskqueue_stats_hdr(outputStream* const st = gclog_or_tty);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
319 void print_taskqueue_stats(outputStream* const st = gclog_or_tty);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
320 void reset_stats();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
321 #endif // TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
322
0
a61af66fc99e Initial load
duke
parents:
diff changeset
323 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
324 ParallelTaskTerminator& _term;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ParNewGeneration& _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 Generation& _next_gen;
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
327 public:
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
328 bool is_valid(int id) const { return id < length(); }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
329 ParallelTaskTerminator* terminator() { return &_term; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
330 };
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 ParScanThreadStateSet::ParScanThreadStateSet(
a61af66fc99e Initial load
duke
parents:
diff changeset
334 int num_threads, Space& to_space, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
335 Generation& old_gen, ObjToScanQueueSet& queue_set,
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
336 Stack<oop, mtGC>* overflow_stacks,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
337 size_t desired_plab_sz, ParallelTaskTerminator& term)
a61af66fc99e Initial load
duke
parents:
diff changeset
338 : ResourceArray(sizeof(ParScanThreadState), num_threads),
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
339 _gen(gen), _next_gen(old_gen), _term(term)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 assert(num_threads > 0, "sanity check!");
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
342 assert(ParGCUseLocalOverflow == (overflow_stacks != NULL),
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
343 "overflow_stack allocation mismatch");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // Initialize states.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 for (int i = 0; i < num_threads; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 new ((ParScanThreadState*)_data + i)
a61af66fc99e Initial load
duke
parents:
diff changeset
347 ParScanThreadState(&to_space, &gen, &old_gen, i, &queue_set,
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
348 overflow_stacks, desired_plab_sz, term);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 }
a61af66fc99e Initial load
duke
parents:
diff changeset
351
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
352 inline ParScanThreadState& ParScanThreadStateSet::thread_state(int i)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
353 {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 assert(i >= 0 && i < length(), "sanity check!");
a61af66fc99e Initial load
duke
parents:
diff changeset
355 return ((ParScanThreadState*)_data)[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
357
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
358 void ParScanThreadStateSet::trace_promotion_failed(YoungGCTracer& gc_tracer) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
359 for (int i = 0; i < length(); ++i) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
360 if (thread_state(i).promotion_failed()) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
361 gc_tracer.report_promotion_failed(thread_state(i).promotion_failed_info());
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
362 thread_state(i).promotion_failed_info().reset();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
363 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
364 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
365 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
366
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
367 void ParScanThreadStateSet::reset(int active_threads, bool promotion_failed)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
368 {
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
369 _term.reset_for_reuse(active_threads);
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
370 if (promotion_failed) {
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
371 for (int i = 0; i < length(); ++i) {
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
372 thread_state(i).print_promotion_failure_size();
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
373 }
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
374 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
377 #if TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
378 void
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
379 ParScanThreadState::reset_stats()
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
380 {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
381 taskqueue_stats().reset();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
382 _term_attempts = 0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
383 _overflow_refills = 0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
384 _overflow_refill_objs = 0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
385 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
386
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
387 void ParScanThreadStateSet::reset_stats()
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
388 {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
389 for (int i = 0; i < length(); ++i) {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
390 thread_state(i).reset_stats();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
391 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
392 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
393
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
394 void
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
395 ParScanThreadStateSet::print_termination_stats_hdr(outputStream* const st)
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
396 {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
397 st->print_raw_cr("GC Termination Stats");
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
398 st->print_raw_cr(" elapsed --strong roots-- "
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
399 "-------termination-------");
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
400 st->print_raw_cr("thr ms ms % "
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
401 " ms % attempts");
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
402 st->print_raw_cr("--- --------- --------- ------ "
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
403 "--------- ------ --------");
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
404 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
405
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
406 void ParScanThreadStateSet::print_termination_stats(outputStream* const st)
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
407 {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
408 print_termination_stats_hdr(st);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
409
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
410 for (int i = 0; i < length(); ++i) {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
411 const ParScanThreadState & pss = thread_state(i);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
412 const double elapsed_ms = pss.elapsed_time() * 1000.0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
413 const double s_roots_ms = pss.strong_roots_time() * 1000.0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
414 const double term_ms = pss.term_time() * 1000.0;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
415 st->print_cr("%3d %9.2f %9.2f %6.2f "
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
416 "%9.2f %6.2f " SIZE_FORMAT_W(8),
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
417 i, elapsed_ms, s_roots_ms, s_roots_ms * 100 / elapsed_ms,
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
418 term_ms, term_ms * 100 / elapsed_ms, pss.term_attempts());
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
419 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
420 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
421
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
422 // Print stats related to work queue activity.
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
423 void ParScanThreadStateSet::print_taskqueue_stats_hdr(outputStream* const st)
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
424 {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
425 st->print_raw_cr("GC Task Stats");
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
426 st->print_raw("thr "); TaskQueueStats::print_header(1, st); st->cr();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
427 st->print_raw("--- "); TaskQueueStats::print_header(2, st); st->cr();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
428 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
429
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
430 void ParScanThreadStateSet::print_taskqueue_stats(outputStream* const st)
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
431 {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
432 print_taskqueue_stats_hdr(st);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
433
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
434 TaskQueueStats totals;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
435 for (int i = 0; i < length(); ++i) {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
436 const ParScanThreadState & pss = thread_state(i);
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
437 const TaskQueueStats & stats = pss.taskqueue_stats();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
438 st->print("%3d ", i); stats.print(st); st->cr();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
439 totals += stats;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
440
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
441 if (pss.overflow_refills() > 0) {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
442 st->print_cr(" " SIZE_FORMAT_W(10) " overflow refills "
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
443 SIZE_FORMAT_W(10) " overflow objects",
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
444 pss.overflow_refills(), pss.overflow_refill_objs());
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
445 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
446 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
447 st->print("tot "); totals.print(st); st->cr();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
448
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
449 DEBUG_ONLY(totals.verify());
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
450 }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
451 #endif // TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
452
0
a61af66fc99e Initial load
duke
parents:
diff changeset
453 void ParScanThreadStateSet::flush()
a61af66fc99e Initial load
duke
parents:
diff changeset
454 {
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
455 // Work in this loop should be kept as lightweight as
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
456 // possible since this might otherwise become a bottleneck
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
457 // to scaling. Should we add heavy-weight work into this
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
458 // loop, consider parallelizing the loop into the worker threads.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
459 for (int i = 0; i < length(); ++i) {
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
460 ParScanThreadState& par_scan_state = thread_state(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
461
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // Flush stats related to To-space PLAB activity and
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // retire the last buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
464 par_scan_state.to_space_alloc_buffer()->
a61af66fc99e Initial load
duke
parents:
diff changeset
465 flush_stats_and_retire(_gen.plab_stats(),
6595
aaf61e68b255 6818524: G1: use ergonomic resizing of PLABs
johnc
parents: 6197
diff changeset
466 true /* end_of_gc */,
aaf61e68b255 6818524: G1: use ergonomic resizing of PLABs
johnc
parents: 6197
diff changeset
467 false /* retain */);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // Every thread has its own age table. We need to merge
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // them all into one.
a61af66fc99e Initial load
duke
parents:
diff changeset
471 ageTable *local_table = par_scan_state.age_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
472 _gen.age_table()->merge(local_table);
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // Inform old gen that we're done.
a61af66fc99e Initial load
duke
parents:
diff changeset
475 _next_gen.par_promote_alloc_done(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
476 _next_gen.par_oop_since_save_marks_iterate_done(i);
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
477 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
478
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
479 if (UseConcMarkSweepGC && ParallelGCThreads > 0) {
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
480 // We need to call this even when ResizeOldPLAB is disabled
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
481 // so as to avoid breaking some asserts. While we may be able
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
482 // to avoid this by reorganizing the code a bit, I am loathe
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
483 // to do that unless we find cases where ergo leads to bad
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
484 // performance.
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
485 CFLS_LAB::compute_desired_plab_size();
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 989
diff changeset
486 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 ParScanClosure::ParScanClosure(ParNewGeneration* g,
a61af66fc99e Initial load
duke
parents:
diff changeset
490 ParScanThreadState* par_scan_state) :
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
491 OopsInKlassOrGenClosure(g), _par_scan_state(par_scan_state), _g(g)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
492 {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 assert(_g->level() == 0, "Optimized for youngest generation");
a61af66fc99e Initial load
duke
parents:
diff changeset
494 _boundary = _g->reserved().end();
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
497 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
498 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
499
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
500 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
501 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
502
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
503 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
504 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
505
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
506 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
507 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
508
0
a61af66fc99e Initial load
duke
parents:
diff changeset
509 ParScanWeakRefClosure::ParScanWeakRefClosure(ParNewGeneration* g,
a61af66fc99e Initial load
duke
parents:
diff changeset
510 ParScanThreadState* par_scan_state)
a61af66fc99e Initial load
duke
parents:
diff changeset
511 : 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
512 {}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
513
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
514 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
515 void ParScanWeakRefClosure::do_oop(narrowOop* p) { ParScanWeakRefClosure::do_oop_work(p); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 #ifdef WIN32
a61af66fc99e Initial load
duke
parents:
diff changeset
518 #pragma warning(disable: 4786) /* identifier was truncated to '255' characters in the browser information */
a61af66fc99e Initial load
duke
parents:
diff changeset
519 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 ParEvacuateFollowersClosure::ParEvacuateFollowersClosure(
a61af66fc99e Initial load
duke
parents:
diff changeset
522 ParScanThreadState* par_scan_state_,
a61af66fc99e Initial load
duke
parents:
diff changeset
523 ParScanWithoutBarrierClosure* to_space_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
524 ParScanWithBarrierClosure* old_gen_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
525 ParRootScanWithoutBarrierClosure* to_space_root_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
526 ParNewGeneration* par_gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
527 ParRootScanWithBarrierTwoGensClosure* old_gen_root_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
528 ObjToScanQueueSet* task_queues_,
a61af66fc99e Initial load
duke
parents:
diff changeset
529 ParallelTaskTerminator* terminator_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 _par_scan_state(par_scan_state_),
a61af66fc99e Initial load
duke
parents:
diff changeset
532 _to_space_closure(to_space_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
533 _old_gen_closure(old_gen_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
534 _to_space_root_closure(to_space_root_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
535 _old_gen_root_closure(old_gen_root_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
536 _par_gen(par_gen_),
a61af66fc99e Initial load
duke
parents:
diff changeset
537 _task_queues(task_queues_),
a61af66fc99e Initial load
duke
parents:
diff changeset
538 _terminator(terminator_)
a61af66fc99e Initial load
duke
parents:
diff changeset
539 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 void ParEvacuateFollowersClosure::do_void() {
a61af66fc99e Initial load
duke
parents:
diff changeset
542 ObjToScanQueue* work_q = par_scan_state()->work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // Scan to-space and old-gen objs until we run out of both.
a61af66fc99e Initial load
duke
parents:
diff changeset
547 oop obj_to_scan;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 par_scan_state()->trim_queues(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
549
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // We have no local work, attempt to steal from other threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // attempt to steal work from promoted.
a61af66fc99e Initial load
duke
parents:
diff changeset
553 if (task_queues()->steal(par_scan_state()->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
554 par_scan_state()->hash_seed(),
a61af66fc99e Initial load
duke
parents:
diff changeset
555 obj_to_scan)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 bool res = work_q->push(obj_to_scan);
a61af66fc99e Initial load
duke
parents:
diff changeset
557 assert(res, "Empty queue should have room for a push.");
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // if successful, goto Start.
a61af66fc99e Initial load
duke
parents:
diff changeset
560 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // try global overflow list.
a61af66fc99e Initial load
duke
parents:
diff changeset
563 } else if (par_gen()->take_from_overflow_list(par_scan_state())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 // Otherwise, offer termination.
a61af66fc99e Initial load
duke
parents:
diff changeset
568 par_scan_state()->start_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
569 if (terminator()->offer_termination()) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 par_scan_state()->end_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
571 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
572 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
573 "Broken overflow list?");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // Finish the last termination pause.
a61af66fc99e Initial load
duke
parents:
diff changeset
575 par_scan_state()->end_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 ParNewGenTask::ParNewGenTask(ParNewGeneration* gen, Generation* next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
579 HeapWord* young_old_boundary, ParScanThreadStateSet* state_set) :
a61af66fc99e Initial load
duke
parents:
diff changeset
580 AbstractGangTask("ParNewGeneration collection"),
a61af66fc99e Initial load
duke
parents:
diff changeset
581 _gen(gen), _next_gen(next_gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
582 _young_old_boundary(young_old_boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
583 _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
584 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
585
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
586 // Reset the terminator for the given number of
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
587 // active threads.
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
588 void ParNewGenTask::set_for_termination(int active_workers) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
589 _state_set->reset(active_workers, _gen->promotion_failed());
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
590 // Should the heap be passed in? There's only 1 for now so
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
591 // grab it instead.
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
592 GenCollectedHeap* gch = GenCollectedHeap::heap();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
593 gch->set_n_termination(active_workers);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
594 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
595
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
596 void ParNewGenTask::work(uint worker_id) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
597 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
598 // Since this is being done in a separate thread, need new resource
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // and handle marks.
a61af66fc99e Initial load
duke
parents:
diff changeset
600 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
601 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // 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
603 assert(gch->n_gens() == 2, "Par young collection currently only works with one older gen.");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 Generation* old_gen = gch->next_gen(_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
606
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
607 ParScanThreadState& par_scan_state = _state_set->thread_state(worker_id);
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
608 assert(_state_set->is_valid(worker_id), "Should not have been called");
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
609
0
a61af66fc99e Initial load
duke
parents:
diff changeset
610 par_scan_state.set_young_old_boundary(_young_old_boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
611
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
612 KlassScanClosure klass_scan_closure(&par_scan_state.to_space_root_closure(),
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
613 gch->rem_set()->klass_rem_set());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
614
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
615 int so = SharedHeap::SO_AllClasses | SharedHeap::SO_Strings | SharedHeap::SO_CodeCache;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
616
0
a61af66fc99e Initial load
duke
parents:
diff changeset
617 par_scan_state.start_strong_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
618 gch->gen_process_strong_roots(_gen->level(),
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
619 true, // Process younger gens, if any,
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
620 // as strong roots.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
621 false, // no scope; this is parallel code
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
622 true, // is scavenging
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
623 SharedHeap::ScanningOption(so),
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
624 &par_scan_state.to_space_root_closure(),
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
625 true, // walk *all* scavengable nmethods
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
626 &par_scan_state.older_gen_closure(),
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
627 &klass_scan_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
628 par_scan_state.end_strong_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // "evacuate followers".
a61af66fc99e Initial load
duke
parents:
diff changeset
631 par_scan_state.evacuate_followers_closure().do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
635 #pragma warning( push )
a61af66fc99e Initial load
duke
parents:
diff changeset
636 #pragma warning( disable:4355 ) // 'this' : used in base member initializer list
a61af66fc99e Initial load
duke
parents:
diff changeset
637 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
638 ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
639 ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level)
a61af66fc99e Initial load
duke
parents:
diff changeset
640 : DefNewGeneration(rs, initial_byte_size, level, "PCopy"),
a61af66fc99e Initial load
duke
parents:
diff changeset
641 _overflow_list(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
642 _is_alive_closure(this),
a61af66fc99e Initial load
duke
parents:
diff changeset
643 _plab_stats(YoungPLABSize, PLABWeight)
a61af66fc99e Initial load
duke
parents:
diff changeset
644 {
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
645 NOT_PRODUCT(_overflow_counter = ParGCWorkQueueOverflowInterval;)
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
646 NOT_PRODUCT(_num_par_pushes = 0;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
647 _task_queues = new ObjToScanQueueSet(ParallelGCThreads);
a61af66fc99e Initial load
duke
parents:
diff changeset
648 guarantee(_task_queues != NULL, "task_queues allocation failure.");
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 for (uint i1 = 0; i1 < ParallelGCThreads; i1++) {
1665
a93a9eda13f7 6962947: shared TaskQueue statistics
jcoomes
parents: 1552
diff changeset
651 ObjToScanQueue *q = new ObjToScanQueue();
a93a9eda13f7 6962947: shared TaskQueue statistics
jcoomes
parents: 1552
diff changeset
652 guarantee(q != NULL, "work_queue Allocation failure.");
a93a9eda13f7 6962947: shared TaskQueue statistics
jcoomes
parents: 1552
diff changeset
653 _task_queues->register_queue(i1, q);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656 for (uint i2 = 0; i2 < ParallelGCThreads; i2++)
a61af66fc99e Initial load
duke
parents:
diff changeset
657 _task_queues->queue(i2)->initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
658
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
659 _overflow_stacks = NULL;
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
660 if (ParGCUseLocalOverflow) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
661
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
662 // typedef to workaround NEW_C_HEAP_ARRAY macro, which can not deal
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
663 // with ','
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
664 typedef Stack<oop, mtGC> GCOopStack;
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
665
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
666 _overflow_stacks = NEW_C_HEAP_ARRAY(GCOopStack, ParallelGCThreads, mtGC);
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
667 for (size_t i = 0; i < ParallelGCThreads; ++i) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
668 new (_overflow_stacks + i) Stack<oop, mtGC>();
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
669 }
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
670 }
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
671
0
a61af66fc99e Initial load
duke
parents:
diff changeset
672 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
673 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
674 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
675
a61af66fc99e Initial load
duke
parents:
diff changeset
676 const char* cname =
a61af66fc99e Initial load
duke
parents:
diff changeset
677 PerfDataManager::counter_name(_gen_counters->name_space(), "threads");
a61af66fc99e Initial load
duke
parents:
diff changeset
678 PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
a61af66fc99e Initial load
duke
parents:
diff changeset
679 ParallelGCThreads, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
683 #pragma warning( pop )
a61af66fc99e Initial load
duke
parents:
diff changeset
684 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
687 ParKeepAliveClosure::ParKeepAliveClosure(ParScanWeakRefClosure* cl) :
a61af66fc99e Initial load
duke
parents:
diff changeset
688 DefNewGeneration::KeepAliveClosure(cl), _par_cl(cl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
689
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
690 template <class T>
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
691 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
692 #ifdef ASSERT
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
693 {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
694 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
695 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
696 // 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
697 // as a weak reference.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
698 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
699 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
700 #endif // ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 _par_cl->do_oop_nv(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
703
a61af66fc99e Initial load
duke
parents:
diff changeset
704 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
705 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
706 _rs->write_ref_field_gc_par(p, obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708 }
a61af66fc99e Initial load
duke
parents:
diff changeset
709
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
710 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
711 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
712
0
a61af66fc99e Initial load
duke
parents:
diff changeset
713 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
714 KeepAliveClosure::KeepAliveClosure(ScanWeakRefClosure* cl) :
a61af66fc99e Initial load
duke
parents:
diff changeset
715 DefNewGeneration::KeepAliveClosure(cl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
716
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
717 template <class T>
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
718 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
719 #ifdef ASSERT
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
720 {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
721 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
722 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
723 // 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
724 // as a weak reference.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
725 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
726 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
727 #endif // ASSERT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 _cl->do_oop_nv(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731 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
732 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
733 _rs->write_ref_field_gc_par(p, obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
736
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
737 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
738 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
739
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
740 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
741 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
742 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
743 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
744 if ((HeapWord*)obj < _boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
745 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
746 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
747 ? obj->forwardee()
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
748 : _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
749 oopDesc::encode_store_heap_oop_not_null(p, new_obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
750 }
a61af66fc99e Initial load
duke
parents:
diff changeset
751 if (_gc_barrier) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 // If p points to a younger generation, mark the card.
a61af66fc99e Initial load
duke
parents:
diff changeset
753 if ((HeapWord*)obj < _gen_boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
754 _rs->write_ref_field_gc_par(p, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
755 }
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
759
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 6
diff changeset
760 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
761 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
762
0
a61af66fc99e Initial load
duke
parents:
diff changeset
763 class ParNewRefProcTaskProxy: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
764 typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
765 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
766 ParNewRefProcTaskProxy(ProcessTask& task, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
767 Generation& next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
768 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
769 ParScanThreadStateSet& state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
770
a61af66fc99e Initial load
duke
parents:
diff changeset
771 private:
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
772 virtual void work(uint worker_id);
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
773 virtual void set_for_termination(int active_workers) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
774 _state_set.terminator()->reset_for_reuse(active_workers);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
775 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
776 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
777 ParNewGeneration& _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
778 ProcessTask& _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
779 Generation& _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
780 HeapWord* _young_old_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
781 ParScanThreadStateSet& _state_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
782 };
a61af66fc99e Initial load
duke
parents:
diff changeset
783
a61af66fc99e Initial load
duke
parents:
diff changeset
784 ParNewRefProcTaskProxy::ParNewRefProcTaskProxy(
a61af66fc99e Initial load
duke
parents:
diff changeset
785 ProcessTask& task, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
786 Generation& next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
787 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
788 ParScanThreadStateSet& state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
789 : AbstractGangTask("ParNewGeneration parallel reference processing"),
a61af66fc99e Initial load
duke
parents:
diff changeset
790 _gen(gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
791 _task(task),
a61af66fc99e Initial load
duke
parents:
diff changeset
792 _next_gen(next_gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
793 _young_old_boundary(young_old_boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
794 _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
795 {
a61af66fc99e Initial load
duke
parents:
diff changeset
796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
797
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
798 void ParNewRefProcTaskProxy::work(uint worker_id)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
799 {
a61af66fc99e Initial load
duke
parents:
diff changeset
800 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
801 HandleMark hm;
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
802 ParScanThreadState& par_scan_state = _state_set.thread_state(worker_id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
803 par_scan_state.set_young_old_boundary(_young_old_boundary);
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
804 _task.work(worker_id, par_scan_state.is_alive_closure(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
805 par_scan_state.keep_alive_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
806 par_scan_state.evacuate_followers_closure());
a61af66fc99e Initial load
duke
parents:
diff changeset
807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
808
a61af66fc99e Initial load
duke
parents:
diff changeset
809 class ParNewRefEnqueueTaskProxy: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
810 typedef AbstractRefProcTaskExecutor::EnqueueTask EnqueueTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
811 EnqueueTask& _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
812
a61af66fc99e Initial load
duke
parents:
diff changeset
813 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
814 ParNewRefEnqueueTaskProxy(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
815 : AbstractGangTask("ParNewGeneration parallel reference enqueue"),
a61af66fc99e Initial load
duke
parents:
diff changeset
816 _task(task)
a61af66fc99e Initial load
duke
parents:
diff changeset
817 { }
a61af66fc99e Initial load
duke
parents:
diff changeset
818
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
819 virtual void work(uint worker_id)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
820 {
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
821 _task.work(worker_id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
822 }
a61af66fc99e Initial load
duke
parents:
diff changeset
823 };
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825
a61af66fc99e Initial load
duke
parents:
diff changeset
826 void ParNewRefProcTaskExecutor::execute(ProcessTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
827 {
a61af66fc99e Initial load
duke
parents:
diff changeset
828 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
829 assert(gch->kind() == CollectedHeap::GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
830 "not a generational heap");
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
831 FlexibleWorkGang* workers = gch->workers();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
832 assert(workers != NULL, "Need parallel worker threads.");
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
833 _state_set.reset(workers->active_workers(), _generation.promotion_failed());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
834 ParNewRefProcTaskProxy rp_task(task, _generation, *_generation.next_gen(),
a61af66fc99e Initial load
duke
parents:
diff changeset
835 _generation.reserved().end(), _state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
836 workers->run_task(&rp_task);
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
837 _state_set.reset(0 /* bad value in debug if not reset */,
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
838 _generation.promotion_failed());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
839 }
a61af66fc99e Initial load
duke
parents:
diff changeset
840
a61af66fc99e Initial load
duke
parents:
diff changeset
841 void ParNewRefProcTaskExecutor::execute(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
842 {
a61af66fc99e Initial load
duke
parents:
diff changeset
843 GenCollectedHeap* gch = GenCollectedHeap::heap();
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
844 FlexibleWorkGang* workers = gch->workers();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
845 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
846 ParNewRefEnqueueTaskProxy enq_task(task);
a61af66fc99e Initial load
duke
parents:
diff changeset
847 workers->run_task(&enq_task);
a61af66fc99e Initial load
duke
parents:
diff changeset
848 }
a61af66fc99e Initial load
duke
parents:
diff changeset
849
a61af66fc99e Initial load
duke
parents:
diff changeset
850 void ParNewRefProcTaskExecutor::set_single_threaded_mode()
a61af66fc99e Initial load
duke
parents:
diff changeset
851 {
a61af66fc99e Initial load
duke
parents:
diff changeset
852 _state_set.flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
853 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
854 gch->set_par_threads(0); // 0 ==> non-parallel.
a61af66fc99e Initial load
duke
parents:
diff changeset
855 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
856 }
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 ScanClosureWithParBarrier::
a61af66fc99e Initial load
duke
parents:
diff changeset
859 ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier) :
a61af66fc99e Initial load
duke
parents:
diff changeset
860 ScanClosure(g, gc_barrier) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
861
a61af66fc99e Initial load
duke
parents:
diff changeset
862 EvacuateFollowersClosureGeneral::
a61af66fc99e Initial load
duke
parents:
diff changeset
863 EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
864 OopsInGenClosure* cur,
a61af66fc99e Initial load
duke
parents:
diff changeset
865 OopsInGenClosure* older) :
a61af66fc99e Initial load
duke
parents:
diff changeset
866 _gch(gch), _level(level),
a61af66fc99e Initial load
duke
parents:
diff changeset
867 _scan_cur_or_nonheap(cur), _scan_older(older)
a61af66fc99e Initial load
duke
parents:
diff changeset
868 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870 void EvacuateFollowersClosureGeneral::do_void() {
a61af66fc99e Initial load
duke
parents:
diff changeset
871 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // Beware: this call will lead to closure applications via virtual
a61af66fc99e Initial load
duke
parents:
diff changeset
873 // calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
874 _gch->oop_since_save_marks_iterate(_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
875 _scan_cur_or_nonheap,
a61af66fc99e Initial load
duke
parents:
diff changeset
876 _scan_older);
a61af66fc99e Initial load
duke
parents:
diff changeset
877 } while (!_gch->no_allocs_since_save_marks(_level));
a61af66fc99e Initial load
duke
parents:
diff changeset
878 }
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
881 // A Generation that does parallel young-gen collection.
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
882
0
a61af66fc99e Initial load
duke
parents:
diff changeset
883 bool ParNewGeneration::_avoid_promotion_undo = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
884
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
885 void ParNewGeneration::handle_promotion_failed(GenCollectedHeap* gch, ParScanThreadStateSet& thread_state_set, ParNewTracer& gc_tracer) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
886 assert(_promo_failure_scan_stack.is_empty(), "post condition");
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
887 _promo_failure_scan_stack.clear(true); // Clear cached segments.
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
888
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
889 remove_forwarding_pointers();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
890 if (PrintGCDetails) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
891 gclog_or_tty->print(" (promotion failed)");
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
892 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
893 // All the spaces are in play for mark-sweep.
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
894 swap_spaces(); // Make life simpler for CMS || rescan; see 6483690.
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
895 from()->set_next_compaction_space(to());
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
896 gch->set_incremental_collection_failed();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
897 // Inform the next generation that a promotion failure occurred.
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
898 _next_gen->promotion_failure_occurred();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
899
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
900 // Trace promotion failure in the parallel GC threads
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
901 thread_state_set.trace_promotion_failed(gc_tracer);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
902 // Single threaded code may have reported promotion failure to the global state
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
903 if (_promotion_failed_info.has_failed()) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
904 gc_tracer.report_promotion_failed(_promotion_failed_info);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
905 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
906 // Reset the PromotionFailureALot counters.
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
907 NOT_PRODUCT(Universe::heap()->reset_promotion_should_fail();)
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
908 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
909
a61af66fc99e Initial load
duke
parents:
diff changeset
910 void ParNewGeneration::collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
911 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
912 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
913 bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
914 assert(full || size > 0, "otherwise we don't want to collect");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
915
0
a61af66fc99e Initial load
duke
parents:
diff changeset
916 GenCollectedHeap* gch = GenCollectedHeap::heap();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
917
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
918 _gc_timer->register_gc_start(os::elapsed_counter());
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
919
0
a61af66fc99e Initial load
duke
parents:
diff changeset
920 assert(gch->kind() == CollectedHeap::GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
921 "not a CMS generational heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
922 AdaptiveSizePolicy* size_policy = gch->gen_policy()->size_policy();
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
923 FlexibleWorkGang* workers = gch->workers();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
924 assert(workers != NULL, "Need workgang for parallel work");
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
925 int active_workers =
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
926 AdaptiveSizePolicy::calc_active_workers(workers->total_workers(),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
927 workers->active_workers(),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
928 Threads::number_of_non_daemon_threads());
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
929 workers->set_active_workers(active_workers);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
930 _next_gen = gch->next_gen(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
931 assert(_next_gen != NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
932 "This must be the youngest gen, and not the only gen");
a61af66fc99e Initial load
duke
parents:
diff changeset
933 assert(gch->n_gens() == 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
934 "Par collection currently only works with single older gen.");
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // Do we have to avoid promotion_undo?
a61af66fc99e Initial load
duke
parents:
diff changeset
936 if (gch->collector_policy()->is_concurrent_mark_sweep_policy()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
937 set_avoid_promotion_undo(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
938 }
a61af66fc99e Initial load
duke
parents:
diff changeset
939
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
940 // If the next generation is too full to accommodate worst-case promotion
0
a61af66fc99e Initial load
duke
parents:
diff changeset
941 // from this generation, pass on collection; let the next generation
a61af66fc99e Initial load
duke
parents:
diff changeset
942 // do it.
a61af66fc99e Initial load
duke
parents:
diff changeset
943 if (!collection_attempt_is_safe()) {
1888
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
944 gch->set_incremental_collection_failed(); // slight lie, in that we did not even attempt one
0
a61af66fc99e Initial load
duke
parents:
diff changeset
945 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
946 }
a61af66fc99e Initial load
duke
parents:
diff changeset
947 assert(to()->is_empty(), "Else not collection_attempt_is_safe");
a61af66fc99e Initial load
duke
parents:
diff changeset
948
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
949 ParNewTracer gc_tracer;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
950 gc_tracer.report_gc_start(gch->gc_cause(), _gc_timer->gc_start());
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
951 gch->trace_heap_before_gc(&gc_tracer);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
952
0
a61af66fc99e Initial load
duke
parents:
diff changeset
953 init_assuming_no_promotion_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
954
a61af66fc99e Initial load
duke
parents:
diff changeset
955 if (UseAdaptiveSizePolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
956 set_survivor_overflow(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
957 size_policy->minor_collection_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
960 GCTraceTime t1(GCCauseString("GC", gch->gc_cause()), PrintGC && !PrintGCDetails, true, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // Capture heap used before collection (for printing).
a61af66fc99e Initial load
duke
parents:
diff changeset
962 size_t gch_prev_used = gch->used();
a61af66fc99e Initial load
duke
parents:
diff changeset
963
a61af66fc99e Initial load
duke
parents:
diff changeset
964 SpecializationStats::clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
965
a61af66fc99e Initial load
duke
parents:
diff changeset
966 age_table()->clear();
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
967 to()->clear(SpaceDecorator::Mangle);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
970 assert(workers != NULL, "Need parallel worker threads.");
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
971 int n_workers = active_workers;
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
972
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
973 // Set the correct parallelism (number of queues) in the reference processor
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
974 ref_processor()->set_active_mt_degree(n_workers);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
975
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
976 // Always set the terminator for the active number of workers
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
977 // because only those workers go through the termination protocol.
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
978 ParallelTaskTerminator _term(n_workers, task_queues());
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
979 ParScanThreadStateSet thread_state_set(workers->active_workers(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
980 *to(), *this, *_next_gen, *task_queues(),
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
981 _overflow_stacks, desired_plab_sz(), _term);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983 ParNewGenTask tsk(this, _next_gen, reserved().end(), &thread_state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
984 gch->set_par_threads(n_workers);
a61af66fc99e Initial load
duke
parents:
diff changeset
985 gch->rem_set()->prepare_for_younger_refs_iterate(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
986 // It turns out that even when we're using 1 thread, doing the work in a
a61af66fc99e Initial load
duke
parents:
diff changeset
987 // separate thread causes wide variance in run times. We can't help this
a61af66fc99e Initial load
duke
parents:
diff changeset
988 // in the multi-threaded case, but we special-case n=1 here to get
a61af66fc99e Initial load
duke
parents:
diff changeset
989 // repeatable measurements of the 1-thread overhead of the parallel code.
a61af66fc99e Initial load
duke
parents:
diff changeset
990 if (n_workers > 1) {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
991 GenCollectedHeap::StrongRootsScope srs(gch);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
992 workers->run_task(&tsk);
a61af66fc99e Initial load
duke
parents:
diff changeset
993 } else {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 695
diff changeset
994 GenCollectedHeap::StrongRootsScope srs(gch);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
995 tsk.work(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
996 }
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
997 thread_state_set.reset(0 /* Bad value in debug if not reset */,
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
998 promotion_failed());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
999
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 // Process (weak) reference objects found during scavenge.
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1001 ReferenceProcessor* rp = ref_processor();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 IsAliveClosure is_alive(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 ScanWeakRefClosure scan_weak_ref(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 KeepAliveClosure keep_alive(&scan_weak_ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 ScanClosure scan_without_gc_barrier(this, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 ScanClosureWithParBarrier scan_with_gc_barrier(this, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 set_promo_failure_scan_stack_closure(&scan_without_gc_barrier);
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 EvacuateFollowersClosureGeneral evacuate_followers(gch, _level,
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 &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
1010 rp->setup_policy(clear_all_soft_refs);
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
1011 // Can the mt_degree be set later (at run_task() time would be best)?
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 2369
diff changeset
1012 rp->set_active_mt_degree(active_workers);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1013 ReferenceProcessorStats stats;
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1014 if (rp->processing_is_mt()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1016 stats = rp->process_discovered_references(&is_alive, &keep_alive,
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1017 &evacuate_followers, &task_executor,
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1018 _gc_timer);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 thread_state_set.flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 gch->set_par_threads(0); // 0 ==> non-parallel.
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 gch->save_marks();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1023 stats = rp->process_discovered_references(&is_alive, &keep_alive,
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1024 &evacuate_followers, NULL,
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1025 _gc_timer);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 }
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1027 gc_tracer.report_gc_reference_stats(stats);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 if (!promotion_failed()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 // Swap the survivor spaces.
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
1030 eden()->clear(SpaceDecorator::Mangle);
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
1031 from()->clear(SpaceDecorator::Mangle);
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
1032 if (ZapUnusedHeapArea) {
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
1033 // 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
1034 // 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
1035 // 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
1036 // 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
1037 // 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
1038 // 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
1039 // other spaces.
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
1040 to()->mangle_unused_area();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 167
diff changeset
1041 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 swap_spaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
1043
1387
0bfd3fb24150 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1145
diff changeset
1044 // A successful scavenge should restart the GC time limit count which is
0bfd3fb24150 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1145
diff changeset
1045 // for full GC's.
0bfd3fb24150 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1145
diff changeset
1046 size_policy->reset_gc_overhead_limit_count();
0bfd3fb24150 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1145
diff changeset
1047
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 assert(to()->is_empty(), "to space should be empty now");
7609
a30e7b564541 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 7451
diff changeset
1049
a30e7b564541 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 7451
diff changeset
1050 adjust_desired_tenuring_threshold();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 } else {
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1052 handle_promotion_failed(gch, thread_state_set, gc_tracer);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 // set new iteration safe limit for the survivor spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 from()->set_concurrent_iteration_safe_limit(from()->top());
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 to()->set_concurrent_iteration_safe_limit(to()->top());
a61af66fc99e Initial load
duke
parents:
diff changeset
1057
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 if (ResizePLAB) {
6819
2e6857353b2c 8000311: G1: ParallelGCThreads==0 broken
johnc
parents: 6725
diff changeset
1059 plab_stats()->adjust_desired_plab_sz(n_workers);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1061
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 if (PrintGC && !PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 gch->print_heap_change(gch_prev_used);
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1065
1712
2d6b74c9a797 6976378: ParNew: stats are printed unconditionally in debug builds
jcoomes
parents: 1710
diff changeset
1066 if (PrintGCDetails && ParallelGCVerbose) {
2d6b74c9a797 6976378: ParNew: stats are printed unconditionally in debug builds
jcoomes
parents: 1710
diff changeset
1067 TASKQUEUE_STATS_ONLY(thread_state_set.print_termination_stats());
2d6b74c9a797 6976378: ParNew: stats are printed unconditionally in debug builds
jcoomes
parents: 1710
diff changeset
1068 TASKQUEUE_STATS_ONLY(thread_state_set.print_taskqueue_stats());
2d6b74c9a797 6976378: ParNew: stats are printed unconditionally in debug builds
jcoomes
parents: 1710
diff changeset
1069 }
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
1070
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 if (UseAdaptiveSizePolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 size_policy->minor_collection_end(gch->gc_cause());
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 size_policy->avg_survived()->sample(from()->used());
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
4911
d903bf750e9f 7129514: time warp warnings after 7117303
johnc
parents: 4728
diff changeset
1076 // We need to use a monotonically non-deccreasing time in ms
d903bf750e9f 7129514: time warp warnings after 7117303
johnc
parents: 4728
diff changeset
1077 // or we will see time-warp warnings and os::javaTimeMillis()
d903bf750e9f 7129514: time warp warnings after 7117303
johnc
parents: 4728
diff changeset
1078 // does not guarantee monotonicity.
d903bf750e9f 7129514: time warp warnings after 7117303
johnc
parents: 4728
diff changeset
1079 jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
d903bf750e9f 7129514: time warp warnings after 7117303
johnc
parents: 4728
diff changeset
1080 update_time_of_last_gc(now);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 SpecializationStats::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
1083
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1084 rp->set_enqueuing_is_done(true);
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1085 if (rp->processing_is_mt()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1087 rp->enqueue_discovered_references(&task_executor);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 } else {
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1089 rp->enqueue_discovered_references(NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 }
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 269
diff changeset
1091 rp->verify_no_references_recorded();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1092
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1093 gch->trace_heap_after_gc(&gc_tracer);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1094 gc_tracer.report_tenuring_threshold(tenuring_threshold());
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1095
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1096 _gc_timer->register_gc_end(os::elapsed_counter());
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1097
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1098 gc_tracer.report_gc_end(_gc_timer->gc_end(), _gc_timer->time_partitions());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 static int sum;
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 void ParNewGeneration::waste_some_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 for (int i = 0; i < 100; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 sum += i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1107
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 static const oop ClaimedForwardPtr = oop(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
1109
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 // Because of concurrency, there are times where an object for which
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 // "is_forwarded()" is true contains an "interim" forwarding pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 // value. Such a value will soon be overwritten with a real value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // This method requires "obj" to have a forwarding pointer, and waits, if
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 // necessary for a real one to be inserted, and returns it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1115
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 oop ParNewGeneration::real_forwardee(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 oop forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 if (forward_ptr != ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 return real_forwardee_slow(obj);
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 oop ParNewGeneration::real_forwardee_slow(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // Spin-read if it is claimed but not yet written by another thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 oop forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 while (forward_ptr == ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 waste_some_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 assert(obj->is_forwarded(), "precondition");
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1135
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 bool ParNewGeneration::is_legal_forward_ptr(oop p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 return
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 (_avoid_promotion_undo && p == ClaimedForwardPtr)
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 || Universe::heap()->is_in_reserved(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1143
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 void ParNewGeneration::preserve_mark_if_necessary(oop obj, markOop m) {
2038
74ee0db180fa 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 1972
diff changeset
1145 if (m->must_be_preserved_for_promotion_failure(obj)) {
74ee0db180fa 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 1972
diff changeset
1146 // We should really have separate per-worker stacks, rather
74ee0db180fa 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 1972
diff changeset
1147 // than use locking of a common pair of stacks.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 MutexLocker ml(ParGCRareEvent_lock);
2038
74ee0db180fa 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 1972
diff changeset
1149 preserve_mark(obj, m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1152
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 // Multiple GC threads may try to promote an object. If the object
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // is successfully promoted, a forwarding pointer will be installed in
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 // the object in the young generation. This method claims the right
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 // to install the forwarding pointer before it copies the object,
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 // thus avoiding the need to undo the copy as in
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // copy_to_survivor_space_avoiding_with_undo.
a61af66fc99e Initial load
duke
parents:
diff changeset
1159
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 oop ParNewGeneration::copy_to_survivor_space_avoiding_promotion_undo(
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 // In the sequential version, this assert also says that the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 // not forwarded. That might not be the case here. It is the case that
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 // the caller observed it to be not forwarded at some time in the past.
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 assert(is_in_reserved(old), "shouldn't be scavenging this oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
1166
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 // The sequential code read "old->age()" below. That doesn't work here,
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 // since the age is in the mark word, and that might be overwritten with
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 // a forwarding pointer by a parallel thread. So we must save the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 // word in a local and then analyze it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 oopDesc dummyOld;
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 dummyOld.set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 assert(!dummyOld.is_forwarded(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 "should not be called with forwarding pointer mark word.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 oop new_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 oop forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1178
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 // Try allocating obj in to-space (unless too old)
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 if (dummyOld.age() < tenuring_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 set_survivor_overflow(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1186
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 // Either to-space is full or we decided to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 // try allocating obj tenured
a61af66fc99e Initial load
duke
parents:
diff changeset
1190
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 // Attempt to install a null forwarding pointer (atomically),
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 // to claim the right to install the real forwarding pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 forward_ptr = old->forward_to_atomic(ClaimedForwardPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 if (forward_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 // someone else beat us to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 return real_forwardee(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1198
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 new_obj = _next_gen->par_promote(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 old, m, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1201
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 // promotion failed, forward to self
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 _promotion_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 new_obj = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1206
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 preserve_mark_if_necessary(old, m);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1208 par_scan_state->register_promotion_failure(sz);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 old->forward_to(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 forward_ptr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 // Is in to-space; do copying ourselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 forward_ptr = old->forward_to_atomic(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // Restore the mark word copied above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 new_obj->set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 // Increment age if obj still in new generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 new_obj->incr_age();
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 par_scan_state->age_table()->add(new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 assert(new_obj != NULL, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1224
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1225 #ifndef PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1226 // This code must come after the CAS test, or it will print incorrect
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1227 // information.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1228 if (TraceScavenge) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1229 gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1230 is_in_reserved(new_obj) ? "copying" : "tenuring",
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1231 new_obj->klass()->internal_name(), old, new_obj, new_obj->size());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1232 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1233 #endif
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1234
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 if (forward_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 oop obj_to_push = new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 // Length field used as index of next element to be scanned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 // Real length can be obtained from real_forwardee()
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 arrayOop(old)->set_length(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 obj_to_push = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 "push forwarded object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 // 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
1246 bool simulate_overflow = false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1247 NOT_PRODUCT(
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1248 if (ParGCWorkQueueOverflowALot && should_simulate_overflow()) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1249 // simulate a stack overflow
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1250 simulate_overflow = true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1251 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1252 )
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1253 if (simulate_overflow || !par_scan_state->work_queue()->push(obj_to_push)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 // Add stats for overflow pushes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 if (Verbose && PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 gclog_or_tty->print("queue overflow!\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1258 push_on_overflow_list(old, par_scan_state);
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
1259 TASKQUEUE_STATS_ONLY(par_scan_state->taskqueue_stats().record_overflow(0));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1261
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 return new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1264
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 // Oops. Someone beat us to it. Undo the allocation. Where did we
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 // allocate it?
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 if (is_in_reserved(new_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 // Must be in to_space.
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 assert(to()->is_in_reserved(new_obj), "Checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 if (forward_ptr == ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 // Wait to get the real forwarding pointer value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 forward_ptr = real_forwardee(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1276
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1279
a61af66fc99e Initial load
duke
parents:
diff changeset
1280
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 // Multiple GC threads may try to promote the same object. If two
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 // or more GC threads copy the object, only one wins the race to install
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 // the forwarding pointer. The other threads have to undo their copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1284
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 oop ParNewGeneration::copy_to_survivor_space_with_undo(
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1287
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 // In the sequential version, this assert also says that the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 // not forwarded. That might not be the case here. It is the case that
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 // the caller observed it to be not forwarded at some time in the past.
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 assert(is_in_reserved(old), "shouldn't be scavenging this oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
1292
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 // The sequential code read "old->age()" below. That doesn't work here,
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 // since the age is in the mark word, and that might be overwritten with
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 // a forwarding pointer by a parallel thread. So we must save the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 // word here, install it in a local oopDesc, and then analyze it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 oopDesc dummyOld;
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 dummyOld.set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 assert(!dummyOld.is_forwarded(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 "should not be called with forwarding pointer mark word.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1301
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 bool failed_to_promote = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 oop new_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 oop forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1305
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 // Try allocating obj in to-space (unless too old)
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 if (dummyOld.age() < tenuring_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 set_survivor_overflow(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1313
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 // Either to-space is full or we decided to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 // try allocating obj tenured
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 new_obj = _next_gen->par_promote(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 old, m, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1319
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 // promotion failed, forward to self
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 forward_ptr = old->forward_to_atomic(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 new_obj = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1324
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 if (forward_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 return forward_ptr; // someone else succeeded
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 _promotion_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 failed_to_promote = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1331
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 preserve_mark_if_necessary(old, m);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1333 par_scan_state->register_promotion_failure(sz);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 // Is in to-space; do copying ourselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 // Restore the mark word copied above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 new_obj->set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 // Increment age if new_obj still in new generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 new_obj->incr_age();
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 par_scan_state->age_table()->add(new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 assert(new_obj != NULL, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1345
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1346 #ifndef PRODUCT
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1347 // This code must come after the CAS test, or it will print incorrect
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1348 // information.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1349 if (TraceScavenge) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1350 gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1351 is_in_reserved(new_obj) ? "copying" : "tenuring",
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1352 new_obj->klass()->internal_name(), old, new_obj, new_obj->size());
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1353 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1354 #endif
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1355
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 // Now attempt to install the forwarding pointer (atomically).
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // We have to copy the mark word before overwriting with forwarding
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 // ptr, so we can restore it below in the copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 if (!failed_to_promote) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 forward_ptr = old->forward_to_atomic(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1362
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 if (forward_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 oop obj_to_push = new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 // Length field used as index of next element to be scanned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 // Real length can be obtained from real_forwardee()
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 arrayOop(old)->set_length(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 obj_to_push = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 "push forwarded object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 // 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
1374 bool simulate_overflow = false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1375 NOT_PRODUCT(
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1376 if (ParGCWorkQueueOverflowALot && should_simulate_overflow()) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1377 // simulate a stack overflow
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1378 simulate_overflow = true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1379 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1380 )
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1381 if (simulate_overflow || !par_scan_state->work_queue()->push(obj_to_push)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 // Add stats for overflow pushes.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1383 push_on_overflow_list(old, par_scan_state);
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
1384 TASKQUEUE_STATS_ONLY(par_scan_state->taskqueue_stats().record_overflow(0));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1386
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 return new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1389
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 // Oops. Someone beat us to it. Undo the allocation. Where did we
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 // allocate it?
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 if (is_in_reserved(new_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 // Must be in to_space.
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 assert(to()->is_in_reserved(new_obj), "Checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 assert(!_avoid_promotion_undo, "Should not be here if avoiding.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 _next_gen->par_promote_alloc_undo(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1401
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1404
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1405 #ifndef PRODUCT
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1406 // It's OK to call this multi-threaded; the worst thing
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1407 // 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
1408 // spaced simulated oveflows, but that's OK, in fact
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1409 // probably good as it would exercise the overflow code
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1410 // under contention.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1411 bool ParNewGeneration::should_simulate_overflow() {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1412 if (_overflow_counter-- <= 0) { // just being defensive
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1413 _overflow_counter = ParGCWorkQueueOverflowInterval;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1414 return true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1415 } else {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1416 return false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1417 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1418 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1419 #endif
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1420
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1421 // 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
1422 // 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
1423 // 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
1424 // 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
1425 // 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
1426 // 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
1427 // 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
1428 // 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
1429 // 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
1430 // 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
1431 // 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
1432 // 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
1433 // 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
1434 // 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
1435 // 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
1436 // 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
1437 // 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
1438 // (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
1439 // 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
1440 // 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
1441 #define BUSY (oop(0x1aff1aff))
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1442 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
1443 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
1444 if (ParGCUseLocalOverflow) {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1445 // 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
1446 // overflow stack.
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1447 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
1448 } else {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1449 assert(!UseCompressedOops, "Error");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1450 // 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
1451 // 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
1452 // 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
1453 // 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
1454 // and should be fixed. XXX FIX ME !!!
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1455 #ifndef PRODUCT
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1456 Atomic::inc_ptr(&_num_par_pushes);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1457 assert(_num_par_pushes > 0, "Tautology");
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1458 #endif
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1459 if (from_space_obj->forwardee() == from_space_obj) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
1460 oopDesc* listhead = NEW_C_HEAP_ARRAY(oopDesc, 1, mtGC);
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1461 listhead->forward_to(from_space_obj);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1462 from_space_obj = listhead;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1463 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1464 oop observed_overflow_list = _overflow_list;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1465 oop cur_overflow_list;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1466 do {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1467 cur_overflow_list = observed_overflow_list;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1468 if (cur_overflow_list != BUSY) {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1469 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
1470 } else {
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1471 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
1472 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1473 observed_overflow_list =
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1474 (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
1475 } while (cur_overflow_list != observed_overflow_list);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1478
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1479 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
1480 bool res;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1481
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1482 if (ParGCUseLocalOverflow) {
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1483 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
1484 } else {
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
1485 assert(!UseCompressedOops, "Error");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1486 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
1487 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1488 return res;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1489 }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1490
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1491
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1492 // *NOTE*: The overflow list manipulation code here and
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1493 // in CMSCollector:: are very similar in shape,
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1494 // except that in the CMS case we thread the objects
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1495 // directly into the list via their mark word, and do
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1496 // not need to deal with special cases below related
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1497 // to chunking of object arrays and promotion failure
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1498 // handling.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1499 // CR 6797058 has been filed to attempt consolidation of
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1500 // the common code.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1501 // Because of the common code, if you make any changes in
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1502 // the code below, please check the CMS version to see if
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1503 // similar changes might be needed.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1504 // See CMSCollector::par_take_from_overflow_list() for
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1505 // more extensive documentation comments.
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1506 bool ParNewGeneration::take_from_overflow_list_work(ParScanThreadState* par_scan_state) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 ObjToScanQueue* work_q = par_scan_state->work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 // How many to take?
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1509 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
1510 (size_t)ParGCDesiredObjsFromOverflowList);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1511
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
1512 assert(!UseCompressedOops, "Error");
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
1513 assert(par_scan_state->overflow_stack() == NULL, "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 if (_overflow_list == NULL) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1515
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 // Otherwise, there was something there; try claiming the list.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1517 oop prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1518 // Trim off a prefix of at most objsFromOverflow items
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1519 Thread* tid = Thread::current();
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1520 size_t spin_count = (size_t)ParallelGCThreads;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1521 size_t sleep_time_millis = MAX2((size_t)1, objsFromOverflow/100);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1522 for (size_t spin = 0; prefix == BUSY && spin < spin_count; spin++) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1523 // someone grabbed it before we did ...
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1524 // ... we spin for a short while...
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1525 os::sleep(tid, sleep_time_millis, false);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1526 if (_overflow_list == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1527 // nothing left to take
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1528 return false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1529 } else if (_overflow_list != BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1530 // try and grab the prefix
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1531 prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1532 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1534 if (prefix == NULL || prefix == BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1535 // Nothing to take or waited long enough
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1536 if (prefix == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1537 // 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
1538 // and it is still the same value.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1539 (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1540 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1541 return false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1542 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1543 assert(prefix != NULL && prefix != BUSY, "Error");
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1544 size_t i = 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 oop cur = prefix;
167
feeb96a45707 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 113
diff changeset
1546 while (i < objsFromOverflow && cur->klass_or_null() != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1547 i++; cur = cur->list_ptr_from_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1549
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 // Reattach remaining (suffix) to overflow list
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1551 if (cur->klass_or_null() == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1552 // Write back the NULL in lieu of the BUSY we wrote
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1553 // above and it is still the same value.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1554 if (_overflow_list == BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1555 (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1557 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1558 assert(cur->klass_or_null() != (Klass*)(address)BUSY, "Error");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1559 oop suffix = cur->list_ptr_from_klass(); // suffix will be put back on global list
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1560 cur->set_klass_to_list_ptr(NULL); // break off suffix
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1561 // 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
1562 // 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
1563 // able to place back the suffix.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1564 oop observed_overflow_list = _overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1565 oop cur_overflow_list = observed_overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1566 bool attached = false;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1567 while (observed_overflow_list == BUSY || observed_overflow_list == NULL) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1568 observed_overflow_list =
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1569 (oop) Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1570 if (cur_overflow_list == observed_overflow_list) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1571 attached = true;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1572 break;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1573 } else cur_overflow_list = observed_overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1574 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1575 if (!attached) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1576 // 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
1577 // Find the last item of suffix list
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1578 oop last = suffix;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1579 while (last->klass_or_null() != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1580 last = last->list_ptr_from_klass();
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1581 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1582 // Atomically prepend suffix to current overflow list
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1583 observed_overflow_list = _overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1584 do {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1585 cur_overflow_list = observed_overflow_list;
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1586 if (cur_overflow_list != BUSY) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1587 // Do the splice ...
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1588 last->set_klass_to_list_ptr(cur_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1589 } else { // cur_overflow_list == BUSY
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1590 last->set_klass_to_list_ptr(NULL);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1591 }
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1592 observed_overflow_list =
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1593 (oop)Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1594 } while (cur_overflow_list != observed_overflow_list);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1597
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 // 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
1599 assert(prefix != NULL && prefix != BUSY, "program logic");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 cur = prefix;
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1601 ssize_t n = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 while (cur != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 oop obj_to_push = cur->forwardee();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6595
diff changeset
1604 oop next = cur->list_ptr_from_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 cur->set_klass(obj_to_push->klass());
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1606 // 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
1607 // 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
1608 if (!is_in_reserved(cur)) {
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1609 // 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
1610 // with promotion failure.
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1611 oopDesc* f = cur;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6064
diff changeset
1612 FREE_C_HEAP_ARRAY(oopDesc, f, mtGC);
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1613 } else if (par_scan_state->should_be_partially_scanned(obj_to_push, cur)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 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
1615 obj_to_push = cur;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1617 bool ok = work_q->push(obj_to_push);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1618 assert(ok, "Should have succeeded");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 cur = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 n++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 }
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
1622 TASKQUEUE_STATS_ONLY(par_scan_state->note_overflow_refill(n));
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1623 #ifndef PRODUCT
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1624 assert(_num_par_pushes >= n, "Too many pops?");
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1625 Atomic::add_ptr(-(intptr_t)n, &_num_par_pushes);
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1626 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 }
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 481
diff changeset
1629 #undef BUSY
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1630
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
1631 void ParNewGeneration::ref_processor_init() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 if (_ref_processor == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 // Allocate and initialize a reference processor
2369
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1634 _ref_processor =
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1635 new ReferenceProcessor(_reserved, // span
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1636 ParallelRefProcEnabled && (ParallelGCThreads > 1), // mt processing
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1637 (int) ParallelGCThreads, // mt processing degree
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1638 refs_discovery_is_mt(), // mt discovery
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1639 (int) ParallelGCThreads, // mt discovery degree
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1640 refs_discovery_is_atomic(), // atomic_discovery
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1641 NULL, // is_alive_non_header
92da084fefc9 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 2038
diff changeset
1642 false); // write barrier for next field updates
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1645
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 const char* ParNewGeneration::name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 return "par new generation";
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 }