author | jlaskey |
Tue, 23 Jul 2013 12:00:29 -0300 | |
changeset 19089 | 51cfdcf21d35 |
parent 18091 | ddde9f0f414d |
child 18996 | 05c86e558c94 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
2 |
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3908
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3908
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3908
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/symbolTable.hpp" |
|
27 |
#include "classfile/systemDictionary.hpp" |
|
28 |
#include "code/codeCache.hpp" |
|
29 |
#include "gc_interface/collectedHeap.inline.hpp" |
|
30 |
#include "memory/sharedHeap.hpp" |
|
31 |
#include "oops/oop.inline.hpp" |
|
32 |
#include "runtime/fprofiler.hpp" |
|
33 |
#include "runtime/java.hpp" |
|
34 |
#include "services/management.hpp" |
|
35 |
#include "utilities/copy.hpp" |
|
36 |
#include "utilities/workgroup.hpp" |
|
1 | 37 |
|
38 |
SharedHeap* SharedHeap::_sh; |
|
39 |
||
40 |
// The set of potentially parallel tasks in strong root scanning. |
|
41 |
enum SH_process_strong_roots_tasks { |
|
42 |
SH_PS_Universe_oops_do, |
|
43 |
SH_PS_JNIHandles_oops_do, |
|
44 |
SH_PS_ObjectSynchronizer_oops_do, |
|
45 |
SH_PS_FlatProfiler_oops_do, |
|
46 |
SH_PS_Management_oops_do, |
|
47 |
SH_PS_SystemDictionary_oops_do, |
|
17844
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
48 |
SH_PS_ClassLoaderDataGraph_oops_do, |
1 | 49 |
SH_PS_jvmti_oops_do, |
50 |
SH_PS_CodeCache_oops_do, |
|
51 |
// Leave this one last. |
|
52 |
SH_PS_NumElements |
|
53 |
}; |
|
54 |
||
55 |
SharedHeap::SharedHeap(CollectorPolicy* policy_) : |
|
56 |
CollectedHeap(), |
|
57 |
_collector_policy(policy_), |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
58 |
_rem_set(NULL), |
1 | 59 |
_strong_roots_parity(0), |
60 |
_process_strong_tasks(new SubTasksDone(SH_PS_NumElements)), |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
61 |
_workers(NULL) |
1 | 62 |
{ |
63 |
if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) { |
|
64 |
vm_exit_during_initialization("Failed necessary allocation."); |
|
65 |
} |
|
66 |
_sh = this; // ch is static, should be set only once. |
|
67 |
if ((UseParNewGC || |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
68 |
(UseConcMarkSweepGC && CMSParallelRemarkEnabled) || |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
69 |
UseG1GC) && |
1 | 70 |
ParallelGCThreads > 0) { |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
71 |
_workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads, |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
72 |
/* are_GC_task_threads */true, |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
73 |
/* are_ConcurrentGC_threads */false); |
1 | 74 |
if (_workers == NULL) { |
75 |
vm_exit_during_initialization("Failed necessary allocation."); |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
76 |
} else { |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
77 |
_workers->initialize_workers(); |
1 | 78 |
} |
79 |
} |
|
80 |
} |
|
81 |
||
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
82 |
int SharedHeap::n_termination() { |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
83 |
return _process_strong_tasks->n_threads(); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
84 |
} |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
85 |
|
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
86 |
void SharedHeap::set_n_termination(int t) { |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
87 |
_process_strong_tasks->set_n_threads(t); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
88 |
} |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
89 |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
90 |
bool SharedHeap::heap_lock_held_for_gc() { |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
91 |
Thread* t = Thread::current(); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
92 |
return Heap_lock->owned_by_self() |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
93 |
|| ( (t->is_GC_task_thread() || t->is_VM_thread()) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
94 |
&& _thread_holds_heap_lock_for_gc); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
95 |
} |
1 | 96 |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
97 |
void SharedHeap::set_par_threads(uint t) { |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
98 |
assert(t == 0 || !UseSerialGC, "Cannot have parallel threads"); |
1 | 99 |
_n_par_threads = t; |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
100 |
_process_strong_tasks->set_n_threads(t); |
1 | 101 |
} |
102 |
||
9935
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
103 |
#ifdef ASSERT |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
104 |
class AssertNonScavengableClosure: public OopClosure { |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
105 |
public: |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
106 |
virtual void do_oop(oop* p) { |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
107 |
assert(!Universe::heap()->is_in_partial_collection(*p), |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
108 |
"Referent should not be scavengable."); } |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
109 |
virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); } |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
110 |
}; |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
111 |
static AssertNonScavengableClosure assert_is_non_scavengable_closure; |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
112 |
#endif |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
113 |
|
1 | 114 |
void SharedHeap::change_strong_roots_parity() { |
115 |
// Also set the new collection parity. |
|
116 |
assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2, |
|
117 |
"Not in range."); |
|
118 |
_strong_roots_parity++; |
|
119 |
if (_strong_roots_parity == 3) _strong_roots_parity = 1; |
|
120 |
assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2, |
|
121 |
"Not in range."); |
|
122 |
} |
|
123 |
||
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
124 |
SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* outer, bool activate) |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
125 |
: MarkScope(activate) |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
126 |
{ |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
127 |
if (_active) { |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
128 |
outer->change_strong_roots_parity(); |
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
129 |
// Zero the claimed high water mark in the StringTable |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
130 |
StringTable::clear_parallel_claimed_index(); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
131 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
132 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
133 |
|
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
134 |
SharedHeap::StrongRootsScope::~StrongRootsScope() { |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
135 |
// nothing particular |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
136 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
137 |
|
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
138 |
void SharedHeap::process_strong_roots(bool activate_scope, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
139 |
bool is_scavenging, |
1 | 140 |
ScanningOption so, |
141 |
OopClosure* roots, |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
142 |
CodeBlobClosure* code_roots, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
143 |
KlassClosure* klass_closure) { |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
144 |
StrongRootsScope srs(this, activate_scope); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
145 |
|
1 | 146 |
// General strong roots. |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
147 |
assert(_strong_roots_parity != 0, "must have called prologue code"); |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
148 |
// _n_termination for _process_strong_tasks should be set up stream |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
149 |
// in a method not running in a GC worker. Otherwise the GC worker |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
150 |
// could be trying to change the termination condition while the task |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10524
diff
changeset
|
151 |
// is executing in another GC worker. |
1 | 152 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) { |
153 |
Universe::oops_do(roots); |
|
154 |
} |
|
155 |
// Global (strong) JNI handles |
|
156 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do)) |
|
157 |
JNIHandles::oops_do(roots); |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
158 |
|
1 | 159 |
// All threads execute this; the individual threads are task groups. |
14582
490bb6c0df7c
8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
13728
diff
changeset
|
160 |
CLDToOopClosure roots_from_clds(roots); |
490bb6c0df7c
8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
13728
diff
changeset
|
161 |
CLDToOopClosure* roots_from_clds_p = (is_scavenging ? NULL : &roots_from_clds); |
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
162 |
if (CollectedHeap::use_parallel_gc_threads()) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
163 |
Threads::possibly_parallel_oops_do(roots, roots_from_clds_p, code_roots); |
1 | 164 |
} else { |
14582
490bb6c0df7c
8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
13728
diff
changeset
|
165 |
Threads::oops_do(roots, roots_from_clds_p, code_roots); |
1 | 166 |
} |
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
167 |
|
1 | 168 |
if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do)) |
169 |
ObjectSynchronizer::oops_do(roots); |
|
170 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do)) |
|
171 |
FlatProfiler::oops_do(roots); |
|
172 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do)) |
|
173 |
Management::oops_do(roots); |
|
174 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do)) |
|
175 |
JvmtiExport::oops_do(roots); |
|
176 |
||
177 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) { |
|
178 |
if (so & SO_AllClasses) { |
|
179 |
SystemDictionary::oops_do(roots); |
|
9342
456b8d0486b5
7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents:
8921
diff
changeset
|
180 |
} else if (so & SO_SystemClasses) { |
456b8d0486b5
7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents:
8921
diff
changeset
|
181 |
SystemDictionary::always_strong_oops_do(roots); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
182 |
} else { |
16370
4b75aa6388ab
8010121: Remove definition of ShouldNotReachHere2(msg)
neliasso
parents:
14582
diff
changeset
|
183 |
fatal("We should always have selected either SO_AllClasses or SO_SystemClasses"); |
9342
456b8d0486b5
7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents:
8921
diff
changeset
|
184 |
} |
1 | 185 |
} |
186 |
||
17844
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
187 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_ClassLoaderDataGraph_oops_do)) { |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
188 |
if (so & SO_AllClasses) { |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
189 |
ClassLoaderDataGraph::oops_do(roots, klass_closure, !is_scavenging); |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
190 |
} else if (so & SO_SystemClasses) { |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
191 |
ClassLoaderDataGraph::always_strong_oops_do(roots, klass_closure, !is_scavenging); |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
192 |
} |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
193 |
} |
28ca9179db98
8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents:
17625
diff
changeset
|
194 |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
195 |
// All threads execute the following. A specific chunk of buckets |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
196 |
// from the StringTable are the individual tasks. |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
197 |
if (so & SO_Strings) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
198 |
if (CollectedHeap::use_parallel_gc_threads()) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
199 |
StringTable::possibly_parallel_oops_do(roots); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17844
diff
changeset
|
200 |
} else { |
8728
3f1bcd33068e
6962931: move interned strings out of the perm gen
jcoomes
parents:
8076
diff
changeset
|
201 |
StringTable::oops_do(roots); |
3f1bcd33068e
6962931: move interned strings out of the perm gen
jcoomes
parents:
8076
diff
changeset
|
202 |
} |
1 | 203 |
} |
204 |
||
205 |
if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) { |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
206 |
if (so & SO_CodeCache) { |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
207 |
assert(code_roots != NULL, "must supply closure for code cache"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
208 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
209 |
if (is_scavenging) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
210 |
// We only visit parts of the CodeCache when scavenging. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
211 |
CodeCache::scavenge_root_nmethods_do(code_roots); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
212 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
213 |
// CMSCollector uses this to do intermediate-strength collections. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
214 |
// We scan the entire code cache, since CodeCache::do_unloading is not called. |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
215 |
CodeCache::blobs_do(code_roots); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
216 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
217 |
} |
9935
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
218 |
// Verify that the code cache contents are not subject to |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
219 |
// movement by a scavenging collection. |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
220 |
DEBUG_ONLY(CodeBlobToOopClosure assert_code_is_non_scavengable(&assert_is_non_scavengable_closure, /*do_marking=*/ false)); |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
221 |
DEBUG_ONLY(CodeCache::asserted_non_scavengable_nmethods_do(&assert_code_is_non_scavengable)); |
1 | 222 |
} |
223 |
||
224 |
_process_strong_tasks->all_tasks_completed(); |
|
225 |
} |
|
226 |
||
227 |
class AlwaysTrueClosure: public BoolObjectClosure { |
|
228 |
public: |
|
229 |
bool do_object_b(oop p) { return true; } |
|
230 |
}; |
|
231 |
static AlwaysTrueClosure always_true; |
|
232 |
||
233 |
void SharedHeap::process_weak_roots(OopClosure* root_closure, |
|
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
16370
diff
changeset
|
234 |
CodeBlobClosure* code_roots) { |
1 | 235 |
// Global (weak) JNI handles |
236 |
JNIHandles::weak_oops_do(&always_true, root_closure); |
|
237 |
||
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2105
diff
changeset
|
238 |
CodeCache::blobs_do(code_roots); |
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
16370
diff
changeset
|
239 |
StringTable::oops_do(root_closure); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
16370
diff
changeset
|
240 |
} |
1 | 241 |
|
242 |
void SharedHeap::set_barrier_set(BarrierSet* bs) { |
|
243 |
_barrier_set = bs; |
|
244 |
// Cached barrier set for fast access in oops |
|
245 |
oopDesc::set_bs(bs); |
|
246 |
} |
|
247 |
||
248 |
void SharedHeap::post_initialize() { |
|
249 |
ref_processing_init(); |
|
250 |
} |
|
251 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11396
diff
changeset
|
252 |
void SharedHeap::ref_processing_init() {} |
1 | 253 |
|
254 |
// Some utilities. |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
255 |
void SharedHeap::print_size_transition(outputStream* out, |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
256 |
size_t bytes_before, |
1 | 257 |
size_t bytes_after, |
258 |
size_t capacity) { |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
259 |
out->print(" %d%s->%d%s(%d%s)", |
1 | 260 |
byte_size_in_proper_unit(bytes_before), |
261 |
proper_unit_for_byte_size(bytes_before), |
|
262 |
byte_size_in_proper_unit(bytes_after), |
|
263 |
proper_unit_for_byte_size(bytes_after), |
|
264 |
byte_size_in_proper_unit(capacity), |
|
265 |
proper_unit_for_byte_size(capacity)); |
|
266 |
} |