annotate src/share/vm/memory/sharedHeap.cpp @ 12355:cefad50507d8

Merge with hs25-b53
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 11 Oct 2013 10:38:03 +0200
parents ca9dedeebdec
children 8f07aa079343
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10991
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
2 * Copyright (c) 2000, 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: 989
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 989
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: 989
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: 1833
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
26 #include "classfile/symbolTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
28 #include "code/codeCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
29 #include "gc_interface/collectedHeap.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
30 #include "memory/sharedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
31 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
32 #include "runtime/fprofiler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
33 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
34 #include "services/management.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
35 #include "utilities/copy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1833
diff changeset
36 #include "utilities/workgroup.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 SharedHeap* SharedHeap::_sh;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // The set of potentially parallel tasks in strong root scanning.
a61af66fc99e Initial load
duke
parents:
diff changeset
41 enum SH_process_strong_roots_tasks {
a61af66fc99e Initial load
duke
parents:
diff changeset
42 SH_PS_Universe_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
43 SH_PS_JNIHandles_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 SH_PS_ObjectSynchronizer_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
45 SH_PS_FlatProfiler_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
46 SH_PS_Management_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 SH_PS_SystemDictionary_oops_do,
10361
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
48 SH_PS_ClassLoaderDataGraph_oops_do,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 SH_PS_jvmti_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
50 SH_PS_CodeCache_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // Leave this one last.
a61af66fc99e Initial load
duke
parents:
diff changeset
52 SH_PS_NumElements
a61af66fc99e Initial load
duke
parents:
diff changeset
53 };
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 SharedHeap::SharedHeap(CollectorPolicy* policy_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
56 CollectedHeap(),
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _collector_policy(policy_),
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
58 _rem_set(NULL),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _strong_roots_parity(0),
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
1833
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1552
diff changeset
61 _workers(NULL)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 vm_exit_during_initialization("Failed necessary allocation.");
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 _sh = this; // ch is static, should be set only once.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if ((UseParNewGC ||
11975
ca9dedeebdec 6412968: CMS Long initial mark pauses
jmasa
parents: 10991
diff changeset
68 (UseConcMarkSweepGC && (CMSParallelInitialMarkEnabled ||
ca9dedeebdec 6412968: CMS Long initial mark pauses
jmasa
parents: 10991
diff changeset
69 CMSParallelRemarkEnabled)) ||
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
70 UseG1GC) &&
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ParallelGCThreads > 0) {
1833
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1552
diff changeset
72 _workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads,
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
73 /* are_GC_task_threads */true,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
74 /* are_ConcurrentGC_threads */false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if (_workers == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 vm_exit_during_initialization("Failed necessary allocation.");
1833
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1552
diff changeset
77 } else {
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1552
diff changeset
78 _workers->initialize_workers();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
83 int SharedHeap::n_termination() {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
84 return _process_strong_tasks->n_threads();
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
85 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
86
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
87 void SharedHeap::set_n_termination(int t) {
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
88 _process_strong_tasks->set_n_threads(t);
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
89 }
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
90
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
91 bool SharedHeap::heap_lock_held_for_gc() {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
92 Thread* t = Thread::current();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
93 return Heap_lock->owned_by_self()
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
94 || ( (t->is_GC_task_thread() || t->is_VM_thread())
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
95 && _thread_holds_heap_lock_for_gc);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
96 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
97
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
98 void SharedHeap::set_par_threads(uint t) {
1833
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1552
diff changeset
99 assert(t == 0 || !UseSerialGC, "Cannot have parallel threads");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _n_par_threads = t;
1833
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1552
diff changeset
101 _process_strong_tasks->set_n_threads(t);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
3377
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
104 #ifdef ASSERT
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
105 class AssertNonScavengableClosure: public OopClosure {
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
106 public:
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
107 virtual void do_oop(oop* p) {
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
108 assert(!Universe::heap()->is_in_partial_collection(*p),
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
109 "Referent should not be scavengable."); }
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
110 virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
111 };
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
112 static AssertNonScavengableClosure assert_is_non_scavengable_closure;
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
113 #endif
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
114
0
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void SharedHeap::change_strong_roots_parity() {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // Also set the new collection parity.
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
118 "Not in range.");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _strong_roots_parity++;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 if (_strong_roots_parity == 3) _strong_roots_parity = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
122 "Not in range.");
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
125 SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* outer, bool activate)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
126 : MarkScope(activate)
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
127 {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
128 if (_active) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
129 outer->change_strong_roots_parity();
10991
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
130 // Zero the claimed high water mark in the StringTable
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
131 StringTable::clear_parallel_claimed_index();
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
132 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
133 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
134
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
135 SharedHeap::StrongRootsScope::~StrongRootsScope() {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
136 // nothing particular
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
137 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
138
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
139 void SharedHeap::process_strong_roots(bool activate_scope,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
140 bool is_scavenging,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 ScanningOption so,
a61af66fc99e Initial load
duke
parents:
diff changeset
142 OopClosure* roots,
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
143 CodeBlobClosure* code_roots,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
144 KlassClosure* klass_closure) {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
145 StrongRootsScope srs(this, activate_scope);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
146
0
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // General strong roots.
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
148 assert(_strong_roots_parity != 0, "must have called prologue code");
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
149 // _n_termination for _process_strong_tasks should be set up stream
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
150 // in a method not running in a GC worker. Otherwise the GC worker
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
151 // could be trying to change the termination condition while the task
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 3915
diff changeset
152 // is executing in another GC worker.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 Universe::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Global (strong) JNI handles
a61af66fc99e Initial load
duke
parents:
diff changeset
157 if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
158 JNIHandles::oops_do(roots);
10991
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
159
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // All threads execute this; the individual threads are task groups.
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6725
diff changeset
161 CLDToOopClosure roots_from_clds(roots);
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6725
diff changeset
162 CLDToOopClosure* roots_from_clds_p = (is_scavenging ? NULL : &roots_from_clds);
10991
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
163 if (CollectedHeap::use_parallel_gc_threads()) {
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
164 Threads::possibly_parallel_oops_do(roots, roots_from_clds_p, code_roots);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
165 } else {
7179
d0aa87f04bd5 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 6725
diff changeset
166 Threads::oops_do(roots, roots_from_clds_p, code_roots);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
10991
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
168
0
a61af66fc99e Initial load
duke
parents:
diff changeset
169 if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
170 ObjectSynchronizer::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
172 FlatProfiler::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
174 Management::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
176 JvmtiExport::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 if (so & SO_AllClasses) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 SystemDictionary::oops_do(roots);
3293
1f4413413144 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 2426
diff changeset
181 } else if (so & SO_SystemClasses) {
1f4413413144 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 2426
diff changeset
182 SystemDictionary::always_strong_oops_do(roots);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
183 } else {
8769
be4d5c6c1f79 8010121: Remove definition of ShouldNotReachHere2(msg)
neliasso
parents: 7179
diff changeset
184 fatal("We should always have selected either SO_AllClasses or SO_SystemClasses");
3293
1f4413413144 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 2426
diff changeset
185 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
10361
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
188 if (!_process_strong_tasks->is_task_claimed(SH_PS_ClassLoaderDataGraph_oops_do)) {
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
189 if (so & SO_AllClasses) {
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
190 ClassLoaderDataGraph::oops_do(roots, klass_closure, !is_scavenging);
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
191 } else if (so & SO_SystemClasses) {
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
192 ClassLoaderDataGraph::always_strong_oops_do(roots, klass_closure, !is_scavenging);
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
193 }
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
194 }
eda078b01c65 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 10327
diff changeset
195
10991
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
196 // All threads execute the following. A specific chunk of buckets
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
197 // from the StringTable are the individual tasks.
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
198 if (so & SO_Strings) {
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
199 if (CollectedHeap::use_parallel_gc_threads()) {
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
200 StringTable::possibly_parallel_oops_do(roots);
01522ca68fc7 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 10361
diff changeset
201 } else {
2379
b099aaf51bf8 6962931: move interned strings out of the perm gen
jcoomes
parents: 2177
diff changeset
202 StringTable::oops_do(roots);
b099aaf51bf8 6962931: move interned strings out of the perm gen
jcoomes
parents: 2177
diff changeset
203 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
207 if (so & SO_CodeCache) {
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
208 assert(code_roots != NULL, "must supply closure for code cache");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
209
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
210 if (is_scavenging) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
211 // We only visit parts of the CodeCache when scavenging.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
212 CodeCache::scavenge_root_nmethods_do(code_roots);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
213 } else {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
214 // CMSCollector uses this to do intermediate-strength collections.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
215 // We scan the entire code cache, since CodeCache::do_unloading is not called.
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
216 CodeCache::blobs_do(code_roots);
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
217 }
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
218 }
3377
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
219 // Verify that the code cache contents are not subject to
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
220 // movement by a scavenging collection.
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
221 DEBUG_ONLY(CodeBlobToOopClosure assert_code_is_non_scavengable(&assert_is_non_scavengable_closure, /*do_marking=*/ false));
2aa9ddbb9e60 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 3293
diff changeset
222 DEBUG_ONLY(CodeCache::asserted_non_scavengable_nmethods_do(&assert_code_is_non_scavengable));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 _process_strong_tasks->all_tasks_completed();
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 class AlwaysTrueClosure: public BoolObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
230 bool do_object_b(oop p) { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 };
a61af66fc99e Initial load
duke
parents:
diff changeset
232 static AlwaysTrueClosure always_true;
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 void SharedHeap::process_weak_roots(OopClosure* root_closure,
10179
a08c80e9e1e5 8012687: Remove unused is_root checks and closures
stefank
parents: 8769
diff changeset
235 CodeBlobClosure* code_roots) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Global (weak) JNI handles
a61af66fc99e Initial load
duke
parents:
diff changeset
237 JNIHandles::weak_oops_do(&always_true, root_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
238
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 579
diff changeset
239 CodeCache::blobs_do(code_roots);
10179
a08c80e9e1e5 8012687: Remove unused is_root checks and closures
stefank
parents: 8769
diff changeset
240 StringTable::oops_do(root_closure);
a08c80e9e1e5 8012687: Remove unused is_root checks and closures
stefank
parents: 8769
diff changeset
241 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 void SharedHeap::set_barrier_set(BarrierSet* bs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 _barrier_set = bs;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Cached barrier set for fast access in oops
a61af66fc99e Initial load
duke
parents:
diff changeset
246 oopDesc::set_bs(bs);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void SharedHeap::post_initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 ref_processing_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4728
diff changeset
253 void SharedHeap::ref_processing_init() {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // Some utilities.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
256 void SharedHeap::print_size_transition(outputStream* out,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
257 size_t bytes_before,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
258 size_t bytes_after,
a61af66fc99e Initial load
duke
parents:
diff changeset
259 size_t capacity) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
260 out->print(" %d%s->%d%s(%d%s)",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 byte_size_in_proper_unit(bytes_before),
a61af66fc99e Initial load
duke
parents:
diff changeset
262 proper_unit_for_byte_size(bytes_before),
a61af66fc99e Initial load
duke
parents:
diff changeset
263 byte_size_in_proper_unit(bytes_after),
a61af66fc99e Initial load
duke
parents:
diff changeset
264 proper_unit_for_byte_size(bytes_after),
a61af66fc99e Initial load
duke
parents:
diff changeset
265 byte_size_in_proper_unit(capacity),
a61af66fc99e Initial load
duke
parents:
diff changeset
266 proper_unit_for_byte_size(capacity));
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }