src/share/vm/memory/sharedHeap.cpp

Wed, 01 Dec 2010 15:04:06 +0100

author
stefank
date
Wed, 01 Dec 2010 15:04:06 +0100
changeset 2325
c760f78e0a53
parent 2314
f95d63e2154a
child 2497
3582bf76420e
permissions
-rw-r--r--

7003125: precompiled.hpp is included when precompiled headers are not used
Summary: Added an ifndef DONT_USE_PRECOMPILED_HEADER to precompiled.hpp. Set up DONT_USE_PRECOMPILED_HEADER when compiling with Sun Studio or when the user specifies USE_PRECOMPILED_HEADER=0. Fixed broken include dependencies.
Reviewed-by: coleenp, kvn

duke@435 1 /*
jmasa@2188 2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/symbolTable.hpp"
stefank@2314 27 #include "classfile/systemDictionary.hpp"
stefank@2314 28 #include "code/codeCache.hpp"
stefank@2314 29 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 30 #include "memory/sharedHeap.hpp"
stefank@2314 31 #include "oops/oop.inline.hpp"
stefank@2314 32 #include "runtime/fprofiler.hpp"
stefank@2314 33 #include "runtime/java.hpp"
stefank@2314 34 #include "services/management.hpp"
stefank@2314 35 #include "utilities/copy.hpp"
stefank@2314 36 #include "utilities/workgroup.hpp"
duke@435 37
duke@435 38 SharedHeap* SharedHeap::_sh;
duke@435 39
duke@435 40 // The set of potentially parallel tasks in strong root scanning.
duke@435 41 enum SH_process_strong_roots_tasks {
duke@435 42 SH_PS_Universe_oops_do,
duke@435 43 SH_PS_JNIHandles_oops_do,
duke@435 44 SH_PS_ObjectSynchronizer_oops_do,
duke@435 45 SH_PS_FlatProfiler_oops_do,
duke@435 46 SH_PS_Management_oops_do,
duke@435 47 SH_PS_SystemDictionary_oops_do,
duke@435 48 SH_PS_jvmti_oops_do,
duke@435 49 SH_PS_vmSymbols_oops_do,
duke@435 50 SH_PS_SymbolTable_oops_do,
duke@435 51 SH_PS_StringTable_oops_do,
duke@435 52 SH_PS_CodeCache_oops_do,
duke@435 53 // Leave this one last.
duke@435 54 SH_PS_NumElements
duke@435 55 };
duke@435 56
duke@435 57 SharedHeap::SharedHeap(CollectorPolicy* policy_) :
duke@435 58 CollectedHeap(),
duke@435 59 _collector_policy(policy_),
duke@435 60 _perm_gen(NULL), _rem_set(NULL),
duke@435 61 _strong_roots_parity(0),
duke@435 62 _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
jmasa@2188 63 _n_par_threads(0),
jmasa@2188 64 _workers(NULL)
duke@435 65 {
duke@435 66 if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
duke@435 67 vm_exit_during_initialization("Failed necessary allocation.");
duke@435 68 }
duke@435 69 _sh = this; // ch is static, should be set only once.
duke@435 70 if ((UseParNewGC ||
ysr@777 71 (UseConcMarkSweepGC && CMSParallelRemarkEnabled) ||
ysr@777 72 UseG1GC) &&
duke@435 73 ParallelGCThreads > 0) {
jmasa@2188 74 _workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads,
ysr@777 75 /* are_GC_task_threads */true,
ysr@777 76 /* are_ConcurrentGC_threads */false);
duke@435 77 if (_workers == NULL) {
duke@435 78 vm_exit_during_initialization("Failed necessary allocation.");
jmasa@2188 79 } else {
jmasa@2188 80 _workers->initialize_workers();
duke@435 81 }
duke@435 82 }
duke@435 83 }
duke@435 84
ysr@777 85 bool SharedHeap::heap_lock_held_for_gc() {
ysr@777 86 Thread* t = Thread::current();
ysr@777 87 return Heap_lock->owned_by_self()
ysr@777 88 || ( (t->is_GC_task_thread() || t->is_VM_thread())
ysr@777 89 && _thread_holds_heap_lock_for_gc);
ysr@777 90 }
duke@435 91
duke@435 92 void SharedHeap::set_par_threads(int t) {
jmasa@2188 93 assert(t == 0 || !UseSerialGC, "Cannot have parallel threads");
duke@435 94 _n_par_threads = t;
jmasa@2188 95 _process_strong_tasks->set_n_threads(t);
duke@435 96 }
duke@435 97
duke@435 98 class AssertIsPermClosure: public OopClosure {
duke@435 99 public:
coleenp@548 100 virtual void do_oop(oop* p) {
duke@435 101 assert((*p) == NULL || (*p)->is_perm(), "Referent should be perm.");
duke@435 102 }
coleenp@548 103 virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
duke@435 104 };
duke@435 105 static AssertIsPermClosure assert_is_perm_closure;
duke@435 106
duke@435 107 void SharedHeap::change_strong_roots_parity() {
duke@435 108 // Also set the new collection parity.
duke@435 109 assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
duke@435 110 "Not in range.");
duke@435 111 _strong_roots_parity++;
duke@435 112 if (_strong_roots_parity == 3) _strong_roots_parity = 1;
duke@435 113 assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
duke@435 114 "Not in range.");
duke@435 115 }
duke@435 116
jrose@1424 117 SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* outer, bool activate)
jrose@1424 118 : MarkScope(activate)
jrose@1424 119 {
jrose@1424 120 if (_active) {
jrose@1424 121 outer->change_strong_roots_parity();
jrose@1424 122 }
jrose@1424 123 }
jrose@1424 124
jrose@1424 125 SharedHeap::StrongRootsScope::~StrongRootsScope() {
jrose@1424 126 // nothing particular
jrose@1424 127 }
jrose@1424 128
jrose@1424 129 void SharedHeap::process_strong_roots(bool activate_scope,
jrose@1424 130 bool collecting_perm_gen,
duke@435 131 ScanningOption so,
duke@435 132 OopClosure* roots,
jrose@1424 133 CodeBlobClosure* code_roots,
duke@435 134 OopsInGenClosure* perm_blk) {
jrose@1424 135 StrongRootsScope srs(this, activate_scope);
duke@435 136 // General strong roots.
jrose@1424 137 assert(_strong_roots_parity != 0, "must have called prologue code");
duke@435 138 if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
duke@435 139 Universe::oops_do(roots);
duke@435 140 ReferenceProcessor::oops_do(roots);
duke@435 141 // Consider perm-gen discovered lists to be strong.
duke@435 142 perm_gen()->ref_processor()->weak_oops_do(roots);
duke@435 143 }
duke@435 144 // Global (strong) JNI handles
duke@435 145 if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
duke@435 146 JNIHandles::oops_do(roots);
duke@435 147 // All threads execute this; the individual threads are task groups.
duke@435 148 if (ParallelGCThreads > 0) {
jrose@1424 149 Threads::possibly_parallel_oops_do(roots, code_roots);
duke@435 150 } else {
jrose@1424 151 Threads::oops_do(roots, code_roots);
duke@435 152 }
duke@435 153 if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
duke@435 154 ObjectSynchronizer::oops_do(roots);
duke@435 155 if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
duke@435 156 FlatProfiler::oops_do(roots);
duke@435 157 if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
duke@435 158 Management::oops_do(roots);
duke@435 159 if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
duke@435 160 JvmtiExport::oops_do(roots);
duke@435 161
duke@435 162 if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
duke@435 163 if (so & SO_AllClasses) {
duke@435 164 SystemDictionary::oops_do(roots);
duke@435 165 } else
duke@435 166 if (so & SO_SystemClasses) {
duke@435 167 SystemDictionary::always_strong_oops_do(roots);
duke@435 168 }
duke@435 169 }
duke@435 170
duke@435 171 if (!_process_strong_tasks->is_task_claimed(SH_PS_SymbolTable_oops_do)) {
duke@435 172 if (so & SO_Symbols) {
duke@435 173 SymbolTable::oops_do(roots);
duke@435 174 }
duke@435 175 // Verify if the symbol table contents are in the perm gen
duke@435 176 NOT_PRODUCT(SymbolTable::oops_do(&assert_is_perm_closure));
duke@435 177 }
duke@435 178
duke@435 179 if (!_process_strong_tasks->is_task_claimed(SH_PS_StringTable_oops_do)) {
duke@435 180 if (so & SO_Strings) {
duke@435 181 StringTable::oops_do(roots);
duke@435 182 }
duke@435 183 // Verify if the string table contents are in the perm gen
duke@435 184 NOT_PRODUCT(StringTable::oops_do(&assert_is_perm_closure));
duke@435 185 }
duke@435 186
duke@435 187 if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
jrose@1424 188 if (so & SO_CodeCache) {
jrose@1424 189 // (Currently, CMSCollector uses this to do intermediate-strength collections.)
jrose@1424 190 assert(collecting_perm_gen, "scanning all of code cache");
jrose@1424 191 assert(code_roots != NULL, "must supply closure for code cache");
jrose@1424 192 if (code_roots != NULL) {
jrose@1424 193 CodeCache::blobs_do(code_roots);
jrose@1424 194 }
jrose@1424 195 } else if (so & (SO_SystemClasses|SO_AllClasses)) {
jrose@1424 196 if (!collecting_perm_gen) {
jrose@1424 197 // If we are collecting from class statics, but we are not going to
jrose@1424 198 // visit all of the CodeCache, collect from the non-perm roots if any.
jrose@1424 199 // This makes the code cache function temporarily as a source of strong
jrose@1424 200 // roots for oops, until the next major collection.
jrose@1424 201 //
jrose@1424 202 // If collecting_perm_gen is true, we require that this phase will call
jrose@1424 203 // CodeCache::do_unloading. This will kill off nmethods with expired
jrose@1424 204 // weak references, such as stale invokedynamic targets.
jrose@1424 205 CodeCache::scavenge_root_nmethods_do(code_roots);
jrose@1424 206 }
jrose@1424 207 }
duke@435 208 // Verify if the code cache contents are in the perm gen
jrose@1424 209 NOT_PRODUCT(CodeBlobToOopClosure assert_code_is_perm(&assert_is_perm_closure, /*do_marking=*/ false));
jrose@1424 210 NOT_PRODUCT(CodeCache::asserted_non_scavengable_nmethods_do(&assert_code_is_perm));
duke@435 211 }
duke@435 212
duke@435 213 // Roots that should point only into permanent generation.
duke@435 214 {
duke@435 215 OopClosure* blk = NULL;
duke@435 216 if (collecting_perm_gen) {
duke@435 217 blk = roots;
duke@435 218 } else {
duke@435 219 debug_only(blk = &assert_is_perm_closure);
duke@435 220 }
duke@435 221 if (blk != NULL) {
duke@435 222 if (!_process_strong_tasks->is_task_claimed(SH_PS_vmSymbols_oops_do))
duke@435 223 vmSymbols::oops_do(blk);
duke@435 224 }
duke@435 225 }
duke@435 226
duke@435 227 if (!collecting_perm_gen) {
duke@435 228 // All threads perform this; coordination is handled internally.
duke@435 229
duke@435 230 rem_set()->younger_refs_iterate(perm_gen(), perm_blk);
duke@435 231 }
duke@435 232 _process_strong_tasks->all_tasks_completed();
duke@435 233 }
duke@435 234
duke@435 235 class AlwaysTrueClosure: public BoolObjectClosure {
duke@435 236 public:
duke@435 237 void do_object(oop p) { ShouldNotReachHere(); }
duke@435 238 bool do_object_b(oop p) { return true; }
duke@435 239 };
duke@435 240 static AlwaysTrueClosure always_true;
duke@435 241
duke@435 242 class SkipAdjustingSharedStrings: public OopClosure {
duke@435 243 OopClosure* _clo;
duke@435 244 public:
duke@435 245 SkipAdjustingSharedStrings(OopClosure* clo) : _clo(clo) {}
duke@435 246
coleenp@548 247 virtual void do_oop(oop* p) {
duke@435 248 oop o = (*p);
duke@435 249 if (!o->is_shared_readwrite()) {
duke@435 250 _clo->do_oop(p);
duke@435 251 }
duke@435 252 }
coleenp@548 253 virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
duke@435 254 };
duke@435 255
duke@435 256 // Unmarked shared Strings in the StringTable (which got there due to
duke@435 257 // being in the constant pools of as-yet unloaded shared classes) were
duke@435 258 // not marked and therefore did not have their mark words preserved.
duke@435 259 // These entries are also deliberately not purged from the string
duke@435 260 // table during unloading of unmarked strings. If an identity hash
duke@435 261 // code was computed for any of these objects, it will not have been
duke@435 262 // cleared to zero during the forwarding process or by the
duke@435 263 // RecursiveAdjustSharedObjectClosure, and will be confused by the
duke@435 264 // adjusting process as a forwarding pointer. We need to skip
duke@435 265 // forwarding StringTable entries which contain unmarked shared
duke@435 266 // Strings. Actually, since shared strings won't be moving, we can
duke@435 267 // just skip adjusting any shared entries in the string table.
duke@435 268
duke@435 269 void SharedHeap::process_weak_roots(OopClosure* root_closure,
jrose@1424 270 CodeBlobClosure* code_roots,
duke@435 271 OopClosure* non_root_closure) {
duke@435 272 // Global (weak) JNI handles
duke@435 273 JNIHandles::weak_oops_do(&always_true, root_closure);
duke@435 274
jrose@1424 275 CodeCache::blobs_do(code_roots);
duke@435 276 SymbolTable::oops_do(root_closure);
duke@435 277 if (UseSharedSpaces && !DumpSharedSpaces) {
duke@435 278 SkipAdjustingSharedStrings skip_closure(root_closure);
duke@435 279 StringTable::oops_do(&skip_closure);
duke@435 280 } else {
duke@435 281 StringTable::oops_do(root_closure);
duke@435 282 }
duke@435 283 }
duke@435 284
duke@435 285 void SharedHeap::set_barrier_set(BarrierSet* bs) {
duke@435 286 _barrier_set = bs;
duke@435 287 // Cached barrier set for fast access in oops
duke@435 288 oopDesc::set_bs(bs);
duke@435 289 }
duke@435 290
duke@435 291 void SharedHeap::post_initialize() {
duke@435 292 ref_processing_init();
duke@435 293 }
duke@435 294
duke@435 295 void SharedHeap::ref_processing_init() {
duke@435 296 perm_gen()->ref_processor_init();
duke@435 297 }
duke@435 298
duke@435 299 // Some utilities.
ysr@777 300 void SharedHeap::print_size_transition(outputStream* out,
ysr@777 301 size_t bytes_before,
duke@435 302 size_t bytes_after,
duke@435 303 size_t capacity) {
ysr@777 304 out->print(" %d%s->%d%s(%d%s)",
duke@435 305 byte_size_in_proper_unit(bytes_before),
duke@435 306 proper_unit_for_byte_size(bytes_before),
duke@435 307 byte_size_in_proper_unit(bytes_after),
duke@435 308 proper_unit_for_byte_size(bytes_after),
duke@435 309 byte_size_in_proper_unit(capacity),
duke@435 310 proper_unit_for_byte_size(capacity));
duke@435 311 }

mercurial