annotate src/share/vm/gc_implementation/parallelScavenge/pcTasks.cpp @ 17937:78bbf4d43a14

8037816: Fix for 8036122 breaks build with Xcode5/clang 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas 8043164: Format warning in traceStream.hpp Summary: Backport of main fix + two corrections, enables clang compilation, turns on format attributes, corrects/mutes warnings Reviewed-by: kvn, coleenp, iveresov, twisti
author drchase
date Thu, 22 May 2014 15:52:41 -0400
parents f2110083203d
children 0982ec23da03
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 10405
diff changeset
2 * Copyright (c) 2005, 2014, 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: 1311
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1311
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: 1311
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: 1836
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
27 #include "code/codeCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
28 #include "gc_implementation/parallelScavenge/pcTasks.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
29 #include "gc_implementation/parallelScavenge/psParallelCompact.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
30 #include "gc_implementation/shared/gcTimer.hpp"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
31 #include "gc_implementation/shared/gcTraceTime.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
32 #include "gc_interface/collectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
33 #include "memory/universe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
34 #include "oops/objArrayKlass.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
35 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
36 #include "oops/oop.pcgc.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
37 #include "prims/jvmtiExport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
38 #include "runtime/fprofiler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
39 #include "runtime/jniHandles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
40 #include "runtime/thread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
41 #include "runtime/vmThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
42 #include "services/management.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 10405
diff changeset
44 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 10405
diff changeset
45
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46 //
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // ThreadRootsMarkingTask
a61af66fc99e Initial load
duke
parents:
diff changeset
48 //
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void ThreadRootsMarkingTask::do_it(GCTaskManager* manager, uint which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 assert(Universe::heap()->is_gc_active(), "called outside gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
55 NOT_PRODUCT(GCTraceTime tm("ThreadRootsMarkingTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
56 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ParCompactionManager::gc_thread_compaction_manager(which);
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
59
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
61 CLDToOopClosure mark_and_push_from_clds(&mark_and_push_closure, true);
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
62 CodeBlobToOopClosure mark_and_push_in_blobs(&mark_and_push_closure, /*do_marking=*/ true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 if (_java_thread != NULL)
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
65 _java_thread->oops_do(
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
66 &mark_and_push_closure,
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
67 &mark_and_push_from_clds,
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
68 &mark_and_push_in_blobs);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 if (_vm_thread != NULL)
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
71 _vm_thread->oops_do(
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
72 &mark_and_push_closure,
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
73 &mark_and_push_from_clds,
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
74 &mark_and_push_in_blobs);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Do the real work
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
77 cm->follow_marking_stacks();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void MarkFromRootsTask::do_it(GCTaskManager* manager, uint which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 assert(Universe::heap()->is_gc_active(), "called outside gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
83
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
84 NOT_PRODUCT(GCTraceTime tm("MarkFromRootsTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
85 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
86 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
87 ParCompactionManager::gc_thread_compaction_manager(which);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4095
diff changeset
89 PSParallelCompact::FollowKlassClosure follow_klass_closure(&mark_and_push_closure);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 switch (_root_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 case universe:
a61af66fc99e Initial load
duke
parents:
diff changeset
93 Universe::oops_do(&mark_and_push_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 case jni_handles:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 JNIHandles::oops_do(&mark_and_push_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 case threads:
a61af66fc99e Initial load
duke
parents:
diff changeset
101 {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ResourceMark rm;
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
103 CodeBlobToOopClosure each_active_code_blob(&mark_and_push_closure, /*do_marking=*/ true);
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
104 CLDToOopClosure mark_and_push_from_cld(&mark_and_push_closure);
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6831
diff changeset
105 Threads::oops_do(&mark_and_push_closure, &mark_and_push_from_cld, &each_active_code_blob);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 case object_synchronizer:
a61af66fc99e Initial load
duke
parents:
diff changeset
110 ObjectSynchronizer::oops_do(&mark_and_push_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 case flat_profiler:
a61af66fc99e Initial load
duke
parents:
diff changeset
114 FlatProfiler::oops_do(&mark_and_push_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 case management:
a61af66fc99e Initial load
duke
parents:
diff changeset
118 Management::oops_do(&mark_and_push_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 case jvmti:
a61af66fc99e Initial load
duke
parents:
diff changeset
122 JvmtiExport::oops_do(&mark_and_push_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 case system_dictionary:
a61af66fc99e Initial load
duke
parents:
diff changeset
126 SystemDictionary::always_strong_oops_do(&mark_and_push_closure);
10361
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10265
diff changeset
127 break;
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10265
diff changeset
128
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10265
diff changeset
129 case class_loader_data:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4095
diff changeset
130 ClassLoaderDataGraph::always_strong_oops_do(&mark_and_push_closure, &follow_klass_closure, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
132
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
133 case code_cache:
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
134 // Do not treat nmethods as strong roots for mark/sweep, since we can unload them.
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
135 //CodeCache::scavenge_root_nmethods_do(CodeBlobToOopClosure(&mark_and_push_closure));
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
136 break;
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 375
diff changeset
137
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 fatal("Unknown root type");
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Do the real work
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
143 cm->follow_marking_stacks();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 //
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // RefProcTaskProxy
a61af66fc99e Initial load
duke
parents:
diff changeset
149 //
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void RefProcTaskProxy::do_it(GCTaskManager* manager, uint which)
a61af66fc99e Initial load
duke
parents:
diff changeset
152 {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 assert(Universe::heap()->is_gc_active(), "called outside gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
154
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
155 NOT_PRODUCT(GCTraceTime tm("RefProcTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
156 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
158 ParCompactionManager::gc_thread_compaction_manager(which);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 PSParallelCompact::FollowStackClosure follow_stack_closure(cm);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 _rp_task.work(_work_id, *PSParallelCompact::is_alive_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
162 mark_and_push_closure, follow_stack_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 //
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // RefProcTaskExecutor
a61af66fc99e Initial load
duke
parents:
diff changeset
167 //
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void RefProcTaskExecutor::execute(ProcessTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
170 {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 ParallelScavengeHeap* heap = PSParallelCompact::gc_heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 uint parallel_gc_threads = heap->gc_task_manager()->workers();
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
173 uint active_gc_threads = heap->gc_task_manager()->active_workers();
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
174 RegionTaskQueueSet* qset = ParCompactionManager::region_array();
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
175 ParallelTaskTerminator terminator(active_gc_threads, qset);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
176 GCTaskQueue* q = GCTaskQueue::create();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 for(uint i=0; i<parallel_gc_threads; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 q->enqueue(new RefProcTaskProxy(task, i));
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (task.marks_oops_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (parallel_gc_threads>1) {
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
182 for (uint j=0; j<active_gc_threads; j++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 q->enqueue(new StealMarkingTask(&terminator));
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 PSParallelCompact::gc_task_manager()->execute_and_wait(q);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 void RefProcTaskExecutor::execute(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
191 {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 ParallelScavengeHeap* heap = PSParallelCompact::gc_heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
193 uint parallel_gc_threads = heap->gc_task_manager()->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
194 GCTaskQueue* q = GCTaskQueue::create();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 for(uint i=0; i<parallel_gc_threads; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 q->enqueue(new RefEnqueueTaskProxy(task, i));
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 PSParallelCompact::gc_task_manager()->execute_and_wait(q);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 //
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // StealMarkingTask
a61af66fc99e Initial load
duke
parents:
diff changeset
203 //
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 StealMarkingTask::StealMarkingTask(ParallelTaskTerminator* t) :
a61af66fc99e Initial load
duke
parents:
diff changeset
206 _terminator(t) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 void StealMarkingTask::do_it(GCTaskManager* manager, uint which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 assert(Universe::heap()->is_gc_active(), "called outside gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
210
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
211 NOT_PRODUCT(GCTraceTime tm("StealMarkingTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
212 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
215 ParCompactionManager::gc_thread_compaction_manager(which);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 oop obj = NULL;
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
219 ObjArrayTask task;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
220 int random_seed = 17;
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
221 do {
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
222 while (ParCompactionManager::steal_objarray(which, &random_seed, task)) {
10265
92ef81e2f571 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 7179
diff changeset
223 ObjArrayKlass* k = (ObjArrayKlass*)task.obj()->klass();
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
224 k->oop_follow_contents(cm, task.obj(), task.index());
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
225 cm->follow_marking_stacks();
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
226 }
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
227 while (ParCompactionManager::steal(which, &random_seed, obj)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 obj->follow_contents(cm);
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
229 cm->follow_marking_stacks();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1000
diff changeset
231 } while (!terminator()->offer_termination());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 //
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
235 // StealRegionCompactionTask
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 //
a61af66fc99e Initial load
duke
parents:
diff changeset
237
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
238 StealRegionCompactionTask::StealRegionCompactionTask(ParallelTaskTerminator* t):
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
239 _terminator(t) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
240
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
241 void StealRegionCompactionTask::do_it(GCTaskManager* manager, uint which) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
242 assert(Universe::heap()->is_gc_active(), "called outside gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
243
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
244 NOT_PRODUCT(GCTraceTime tm("StealRegionCompactionTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
245 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
248 ParCompactionManager::gc_thread_compaction_manager(which);
a61af66fc99e Initial load
duke
parents:
diff changeset
249
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
250
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
251 // If not all threads are active, get a draining stack
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
252 // from the list. Else, just use this threads draining stack.
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
253 uint which_stack_index;
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
254 bool use_all_workers = manager->all_workers_active();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
255 if (use_all_workers) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
256 which_stack_index = which;
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
257 assert(manager->active_workers() == ParallelGCThreads,
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
258 err_msg("all_workers_active has been incorrectly set: "
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
259 " active %d ParallelGCThreads %d", manager->active_workers(),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
260 ParallelGCThreads));
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
261 } else {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
262 which_stack_index = ParCompactionManager::pop_recycled_stack_index();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
263 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
264
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
265 cm->set_region_stack_index(which_stack_index);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
266 cm->set_region_stack(ParCompactionManager::region_list(which_stack_index));
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
267 if (TraceDynamicGCThreads) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
268 gclog_or_tty->print_cr("StealRegionCompactionTask::do_it "
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
269 "region_stack_index %d region_stack = 0x%x "
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
270 " empty (%d) use all workers %d",
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
271 which_stack_index, ParCompactionManager::region_list(which_stack_index),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
272 cm->region_stack()->is_empty(),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
273 use_all_workers);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
274 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
275
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
276 // Has to drain stacks first because there may be regions on
0
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // preloaded onto the stack and this thread may never have
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // done a draining task. Are the draining tasks needed?
a61af66fc99e Initial load
duke
parents:
diff changeset
279
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
280 cm->drain_region_stacks();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
282 size_t region_index = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 int random_seed = 17;
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // If we're the termination task, try 10 rounds of stealing before
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // setting the termination flag
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 while(true) {
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
289 if (ParCompactionManager::steal(which, &random_seed, region_index)) {
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
290 PSParallelCompact::fill_and_update_region(cm, region_index);
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
291 cm->drain_region_stacks();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
292 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 if (terminator()->offer_termination()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // Go around again.
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 UpdateDensePrefixTask::UpdateDensePrefixTask(
a61af66fc99e Initial load
duke
parents:
diff changeset
303 PSParallelCompact::SpaceId space_id,
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
304 size_t region_index_start,
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
305 size_t region_index_end) :
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
306 _space_id(space_id), _region_index_start(region_index_start),
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
307 _region_index_end(region_index_end) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 void UpdateDensePrefixTask::do_it(GCTaskManager* manager, uint which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
311 NOT_PRODUCT(GCTraceTime tm("UpdateDensePrefixTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
312 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
315 ParCompactionManager::gc_thread_compaction_manager(which);
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 PSParallelCompact::update_and_deadwood_in_dense_prefix(cm,
a61af66fc99e Initial load
duke
parents:
diff changeset
318 _space_id,
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
319 _region_index_start,
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
320 _region_index_end);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 void DrainStacksCompactionTask::do_it(GCTaskManager* manager, uint which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 assert(Universe::heap()->is_gc_active(), "called outside gc");
a61af66fc99e Initial load
duke
parents:
diff changeset
325
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
326 NOT_PRODUCT(GCTraceTime tm("DrainStacksCompactionTask",
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10361
diff changeset
327 PrintGCDetails && TraceParallelOldGCTasks, true, NULL));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 ParCompactionManager* cm =
a61af66fc99e Initial load
duke
parents:
diff changeset
330 ParCompactionManager::gc_thread_compaction_manager(which);
a61af66fc99e Initial load
duke
parents:
diff changeset
331
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
332 uint which_stack_index;
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
333 bool use_all_workers = manager->all_workers_active();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
334 if (use_all_workers) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
335 which_stack_index = which;
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
336 assert(manager->active_workers() == ParallelGCThreads,
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
337 err_msg("all_workers_active has been incorrectly set: "
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
338 " active %d ParallelGCThreads %d", manager->active_workers(),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
339 ParallelGCThreads));
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
340 } else {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
341 which_stack_index = stack_index();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
342 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
343
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
344 cm->set_region_stack(ParCompactionManager::region_list(which_stack_index));
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
345 if (TraceDynamicGCThreads) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
346 gclog_or_tty->print_cr("DrainStacksCompactionTask::do_it which = %d "
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
347 "which_stack_index = %d/empty(%d) "
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
348 "use all workers %d",
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
349 which, which_stack_index,
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
350 cm->region_stack()->is_empty(),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
351 use_all_workers);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
352 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
353
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
354 cm->set_region_stack_index(which_stack_index);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
355
375
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
356 // Process any regions already in the compaction managers stacks.
81cd571500b0 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 196
diff changeset
357 cm->drain_region_stacks();
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
358
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
359 assert(cm->region_stack()->is_empty(), "Not empty");
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
360
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
361 if (!use_all_workers) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
362 // Always give up the region stack.
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
363 assert(cm->region_stack() ==
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
364 ParCompactionManager::region_list(cm->region_stack_index()),
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
365 "region_stack and region_stack_index are inconsistent");
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
366 ParCompactionManager::push_recycled_stack_index(cm->region_stack_index());
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
367
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
368 if (TraceDynamicGCThreads) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
369 void* old_region_stack = (void*) cm->region_stack();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
370 int old_region_stack_index = cm->region_stack_index();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
371 gclog_or_tty->print_cr("Pushing region stack 0x%x/%d",
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
372 old_region_stack, old_region_stack_index);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
373 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
374
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
375 cm->set_region_stack(NULL);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
376 cm->set_region_stack_index((uint)max_uintx);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
377 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }