annotate src/share/vm/memory/sharedHeap.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2000-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_sharedHeap.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 SharedHeap* SharedHeap::_sh;
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // The set of potentially parallel tasks in strong root scanning.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 enum SH_process_strong_roots_tasks {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 SH_PS_Universe_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
33 SH_PS_JNIHandles_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
34 SH_PS_ObjectSynchronizer_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 SH_PS_FlatProfiler_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 SH_PS_Management_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 SH_PS_SystemDictionary_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 SH_PS_jvmti_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
39 SH_PS_vmSymbols_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
40 SH_PS_SymbolTable_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
41 SH_PS_StringTable_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
42 SH_PS_CodeCache_oops_do,
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Leave this one last.
a61af66fc99e Initial load
duke
parents:
diff changeset
44 SH_PS_NumElements
a61af66fc99e Initial load
duke
parents:
diff changeset
45 };
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 SharedHeap::SharedHeap(CollectorPolicy* policy_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
48 CollectedHeap(),
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _collector_policy(policy_),
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _perm_gen(NULL), _rem_set(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _strong_roots_parity(0),
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _workers(NULL), _n_par_threads(0)
a61af66fc99e Initial load
duke
parents:
diff changeset
54 {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 vm_exit_during_initialization("Failed necessary allocation.");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _sh = this; // ch is static, should be set only once.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 if ((UseParNewGC ||
a61af66fc99e Initial load
duke
parents:
diff changeset
60 (UseConcMarkSweepGC && CMSParallelRemarkEnabled)) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ParallelGCThreads > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _workers = new WorkGang("Parallel GC Threads", ParallelGCThreads, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (_workers == NULL) {
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 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void SharedHeap::set_par_threads(int t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 _n_par_threads = t;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 _process_strong_tasks->set_par_threads(t);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 class AssertIsPermClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 assert((*p) == NULL || (*p)->is_perm(), "Referent should be perm.");
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 };
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static AssertIsPermClosure assert_is_perm_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void SharedHeap::change_strong_roots_parity() {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Also set the new collection parity.
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
86 "Not in range.");
a61af66fc99e Initial load
duke
parents:
diff changeset
87 _strong_roots_parity++;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if (_strong_roots_parity == 3) _strong_roots_parity = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 "Not in range.");
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void SharedHeap::process_strong_roots(bool collecting_perm_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ScanningOption so,
a61af66fc99e Initial load
duke
parents:
diff changeset
95 OopClosure* roots,
a61af66fc99e Initial load
duke
parents:
diff changeset
96 OopsInGenClosure* perm_blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // General strong roots.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 if (n_par_threads() == 0) change_strong_roots_parity();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 Universe::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 ReferenceProcessor::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Consider perm-gen discovered lists to be strong.
a61af66fc99e Initial load
duke
parents:
diff changeset
103 perm_gen()->ref_processor()->weak_oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Global (strong) JNI handles
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
107 JNIHandles::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // All threads execute this; the individual threads are task groups.
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (ParallelGCThreads > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 Threads::possibly_parallel_oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 Threads::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ObjectSynchronizer::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
117 FlatProfiler::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
119 Management::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
121 JvmtiExport::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (so & SO_AllClasses) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 SystemDictionary::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 } else
a61af66fc99e Initial load
duke
parents:
diff changeset
127 if (so & SO_SystemClasses) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 SystemDictionary::always_strong_oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 if (!_process_strong_tasks->is_task_claimed(SH_PS_SymbolTable_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 if (so & SO_Symbols) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 SymbolTable::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Verify if the symbol table contents are in the perm gen
a61af66fc99e Initial load
duke
parents:
diff changeset
137 NOT_PRODUCT(SymbolTable::oops_do(&assert_is_perm_closure));
a61af66fc99e Initial load
duke
parents:
diff changeset
138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 if (!_process_strong_tasks->is_task_claimed(SH_PS_StringTable_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (so & SO_Strings) {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 StringTable::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Verify if the string table contents are in the perm gen
a61af66fc99e Initial load
duke
parents:
diff changeset
145 NOT_PRODUCT(StringTable::oops_do(&assert_is_perm_closure));
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (so & SO_CodeCache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 CodeCache::oops_do(roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Verify if the code cache contents are in the perm gen
a61af66fc99e Initial load
duke
parents:
diff changeset
153 NOT_PRODUCT(CodeCache::oops_do(&assert_is_perm_closure));
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Roots that should point only into permanent generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 OopClosure* blk = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 if (collecting_perm_gen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 blk = roots;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 debug_only(blk = &assert_is_perm_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (blk != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if (!_process_strong_tasks->is_task_claimed(SH_PS_vmSymbols_oops_do))
a61af66fc99e Initial load
duke
parents:
diff changeset
166 vmSymbols::oops_do(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 if (!collecting_perm_gen) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // All threads perform this; coordination is handled internally.
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 rem_set()->younger_refs_iterate(perm_gen(), perm_blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _process_strong_tasks->all_tasks_completed();
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 class AlwaysTrueClosure: public BoolObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void do_object(oop p) { ShouldNotReachHere(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 bool do_object_b(oop p) { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
182 };
a61af66fc99e Initial load
duke
parents:
diff changeset
183 static AlwaysTrueClosure always_true;
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 class SkipAdjustingSharedStrings: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 OopClosure* _clo;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
188 SkipAdjustingSharedStrings(OopClosure* clo) : _clo(clo) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 void do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 oop o = (*p);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 if (!o->is_shared_readwrite()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 _clo->do_oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 };
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Unmarked shared Strings in the StringTable (which got there due to
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // being in the constant pools of as-yet unloaded shared classes) were
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // not marked and therefore did not have their mark words preserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // These entries are also deliberately not purged from the string
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // table during unloading of unmarked strings. If an identity hash
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // code was computed for any of these objects, it will not have been
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // cleared to zero during the forwarding process or by the
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // RecursiveAdjustSharedObjectClosure, and will be confused by the
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // adjusting process as a forwarding pointer. We need to skip
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // forwarding StringTable entries which contain unmarked shared
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // Strings. Actually, since shared strings won't be moving, we can
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // just skip adjusting any shared entries in the string table.
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 void SharedHeap::process_weak_roots(OopClosure* root_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
212 OopClosure* non_root_closure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Global (weak) JNI handles
a61af66fc99e Initial load
duke
parents:
diff changeset
214 JNIHandles::weak_oops_do(&always_true, root_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 CodeCache::oops_do(non_root_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 SymbolTable::oops_do(root_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 if (UseSharedSpaces && !DumpSharedSpaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 SkipAdjustingSharedStrings skip_closure(root_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 StringTable::oops_do(&skip_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 StringTable::oops_do(root_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 void SharedHeap::set_barrier_set(BarrierSet* bs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 _barrier_set = bs;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // Cached barrier set for fast access in oops
a61af66fc99e Initial load
duke
parents:
diff changeset
229 oopDesc::set_bs(bs);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 void SharedHeap::post_initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 ref_processing_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 void SharedHeap::ref_processing_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 perm_gen()->ref_processor_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void SharedHeap::fill_region_with_object(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // Disable the posting of JVMTI VMObjectAlloc events as we
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // don't want the filling of tlabs with filler arrays to be
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // reported to the profiler.
a61af66fc99e Initial load
duke
parents:
diff changeset
244 NoJvmtiVMObjectAllocMark njm;
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Disable low memory detector because there is no real allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 LowMemoryDetectorDisabler lmd_dis;
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // It turns out that post_allocation_setup_array takes a handle, so the
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // call below contains an implicit conversion. Best to free that handle
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // as soon as possible.
a61af66fc99e Initial load
duke
parents:
diff changeset
252 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 size_t word_size = mr.word_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 size_t aligned_array_header_size =
a61af66fc99e Initial load
duke
parents:
diff changeset
256 align_object_size(typeArrayOopDesc::header_size(T_INT));
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if (word_size >= aligned_array_header_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 const size_t array_length =
a61af66fc99e Initial load
duke
parents:
diff changeset
260 pointer_delta(mr.end(), mr.start()) -
a61af66fc99e Initial load
duke
parents:
diff changeset
261 typeArrayOopDesc::header_size(T_INT);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 const size_t array_length_words =
a61af66fc99e Initial load
duke
parents:
diff changeset
263 array_length * (HeapWordSize/sizeof(jint));
a61af66fc99e Initial load
duke
parents:
diff changeset
264 post_allocation_setup_array(Universe::intArrayKlassObj(),
a61af66fc99e Initial load
duke
parents:
diff changeset
265 mr.start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
266 mr.word_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
267 (int)array_length_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
269 HeapWord* elt_words = (mr.start() + typeArrayOopDesc::header_size(T_INT));
a61af66fc99e Initial load
duke
parents:
diff changeset
270 Copy::fill_to_words(elt_words, array_length, 0xDEAFBABE);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
272 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 assert(word_size == (size_t)oopDesc::header_size(), "Unaligned?");
a61af66fc99e Initial load
duke
parents:
diff changeset
274 post_allocation_setup_obj(SystemDictionary::object_klass(),
a61af66fc99e Initial load
duke
parents:
diff changeset
275 mr.start(),
a61af66fc99e Initial load
duke
parents:
diff changeset
276 mr.word_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // Some utilities.
a61af66fc99e Initial load
duke
parents:
diff changeset
281 void SharedHeap::print_size_transition(size_t bytes_before,
a61af66fc99e Initial load
duke
parents:
diff changeset
282 size_t bytes_after,
a61af66fc99e Initial load
duke
parents:
diff changeset
283 size_t capacity) {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 tty->print(" %d%s->%d%s(%d%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
285 byte_size_in_proper_unit(bytes_before),
a61af66fc99e Initial load
duke
parents:
diff changeset
286 proper_unit_for_byte_size(bytes_before),
a61af66fc99e Initial load
duke
parents:
diff changeset
287 byte_size_in_proper_unit(bytes_after),
a61af66fc99e Initial load
duke
parents:
diff changeset
288 proper_unit_for_byte_size(bytes_after),
a61af66fc99e Initial load
duke
parents:
diff changeset
289 byte_size_in_proper_unit(capacity),
a61af66fc99e Initial load
duke
parents:
diff changeset
290 proper_unit_for_byte_size(capacity));
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }