src/share/vm/memory/sharedHeap.cpp

Thu, 27 Jan 2011 16:11:27 -0800

author
coleenp
date
Thu, 27 Jan 2011 16:11:27 -0800
changeset 2497
3582bf76420e
parent 2314
f95d63e2154a
child 2661
b099aaf51bf8
permissions
-rw-r--r--

6990754: Use native memory and reference counting to implement SymbolTable
Summary: move symbols from permgen into C heap and reference count them
Reviewed-by: never, acorn, jmasa, stefank

     1 /*
     2  * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
     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  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    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"
    38 SharedHeap* SharedHeap::_sh;
    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,
    48   SH_PS_jvmti_oops_do,
    49   SH_PS_SymbolTable_oops_do,
    50   SH_PS_StringTable_oops_do,
    51   SH_PS_CodeCache_oops_do,
    52   // Leave this one last.
    53   SH_PS_NumElements
    54 };
    56 SharedHeap::SharedHeap(CollectorPolicy* policy_) :
    57   CollectedHeap(),
    58   _collector_policy(policy_),
    59   _perm_gen(NULL), _rem_set(NULL),
    60   _strong_roots_parity(0),
    61   _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
    62   _n_par_threads(0),
    63   _workers(NULL)
    64 {
    65   if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
    66     vm_exit_during_initialization("Failed necessary allocation.");
    67   }
    68   _sh = this;  // ch is static, should be set only once.
    69   if ((UseParNewGC ||
    70       (UseConcMarkSweepGC && CMSParallelRemarkEnabled) ||
    71        UseG1GC) &&
    72       ParallelGCThreads > 0) {
    73     _workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads,
    74                             /* are_GC_task_threads */true,
    75                             /* are_ConcurrentGC_threads */false);
    76     if (_workers == NULL) {
    77       vm_exit_during_initialization("Failed necessary allocation.");
    78     } else {
    79       _workers->initialize_workers();
    80     }
    81   }
    82 }
    84 bool SharedHeap::heap_lock_held_for_gc() {
    85   Thread* t = Thread::current();
    86   return    Heap_lock->owned_by_self()
    87          || (   (t->is_GC_task_thread() ||  t->is_VM_thread())
    88              && _thread_holds_heap_lock_for_gc);
    89 }
    91 void SharedHeap::set_par_threads(int t) {
    92   assert(t == 0 || !UseSerialGC, "Cannot have parallel threads");
    93   _n_par_threads = t;
    94   _process_strong_tasks->set_n_threads(t);
    95 }
    97 class AssertIsPermClosure: public OopClosure {
    98 public:
    99   virtual void do_oop(oop* p) {
   100     assert((*p) == NULL || (*p)->is_perm(), "Referent should be perm.");
   101   }
   102   virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
   103 };
   104 static AssertIsPermClosure assert_is_perm_closure;
   106 void SharedHeap::change_strong_roots_parity() {
   107   // Also set the new collection parity.
   108   assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
   109          "Not in range.");
   110   _strong_roots_parity++;
   111   if (_strong_roots_parity == 3) _strong_roots_parity = 1;
   112   assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
   113          "Not in range.");
   114 }
   116 SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* outer, bool activate)
   117   : MarkScope(activate)
   118 {
   119   if (_active) {
   120     outer->change_strong_roots_parity();
   121   }
   122 }
   124 SharedHeap::StrongRootsScope::~StrongRootsScope() {
   125   // nothing particular
   126 }
   128 void SharedHeap::process_strong_roots(bool activate_scope,
   129                                       bool collecting_perm_gen,
   130                                       ScanningOption so,
   131                                       OopClosure* roots,
   132                                       CodeBlobClosure* code_roots,
   133                                       OopsInGenClosure* perm_blk) {
   134   StrongRootsScope srs(this, activate_scope);
   135   // General strong roots.
   136   assert(_strong_roots_parity != 0, "must have called prologue code");
   137   if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
   138     Universe::oops_do(roots);
   139     ReferenceProcessor::oops_do(roots);
   140     // Consider perm-gen discovered lists to be strong.
   141     perm_gen()->ref_processor()->weak_oops_do(roots);
   142   }
   143   // Global (strong) JNI handles
   144   if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
   145     JNIHandles::oops_do(roots);
   146   // All threads execute this; the individual threads are task groups.
   147   if (ParallelGCThreads > 0) {
   148     Threads::possibly_parallel_oops_do(roots, code_roots);
   149   } else {
   150     Threads::oops_do(roots, code_roots);
   151   }
   152   if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
   153     ObjectSynchronizer::oops_do(roots);
   154   if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
   155     FlatProfiler::oops_do(roots);
   156   if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
   157     Management::oops_do(roots);
   158   if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
   159     JvmtiExport::oops_do(roots);
   161   if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
   162     if (so & SO_AllClasses) {
   163       SystemDictionary::oops_do(roots);
   164     } else
   165       if (so & SO_SystemClasses) {
   166         SystemDictionary::always_strong_oops_do(roots);
   167       }
   168   }
   170   if (!_process_strong_tasks->is_task_claimed(SH_PS_SymbolTable_oops_do)) {
   171   }
   173   if (!_process_strong_tasks->is_task_claimed(SH_PS_StringTable_oops_do)) {
   174      if (so & SO_Strings) {
   175        StringTable::oops_do(roots);
   176      }
   177     // Verify if the string table contents are in the perm gen
   178     NOT_PRODUCT(StringTable::oops_do(&assert_is_perm_closure));
   179   }
   181   if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
   182     if (so & SO_CodeCache) {
   183       // (Currently, CMSCollector uses this to do intermediate-strength collections.)
   184       assert(collecting_perm_gen, "scanning all of code cache");
   185       assert(code_roots != NULL, "must supply closure for code cache");
   186       if (code_roots != NULL) {
   187         CodeCache::blobs_do(code_roots);
   188       }
   189     } else if (so & (SO_SystemClasses|SO_AllClasses)) {
   190       if (!collecting_perm_gen) {
   191         // If we are collecting from class statics, but we are not going to
   192         // visit all of the CodeCache, collect from the non-perm roots if any.
   193         // This makes the code cache function temporarily as a source of strong
   194         // roots for oops, until the next major collection.
   195         //
   196         // If collecting_perm_gen is true, we require that this phase will call
   197         // CodeCache::do_unloading.  This will kill off nmethods with expired
   198         // weak references, such as stale invokedynamic targets.
   199         CodeCache::scavenge_root_nmethods_do(code_roots);
   200       }
   201     }
   202     // Verify if the code cache contents are in the perm gen
   203     NOT_PRODUCT(CodeBlobToOopClosure assert_code_is_perm(&assert_is_perm_closure, /*do_marking=*/ false));
   204     NOT_PRODUCT(CodeCache::asserted_non_scavengable_nmethods_do(&assert_code_is_perm));
   205   }
   207   if (!collecting_perm_gen) {
   208     // All threads perform this; coordination is handled internally.
   210     rem_set()->younger_refs_iterate(perm_gen(), perm_blk);
   211   }
   212   _process_strong_tasks->all_tasks_completed();
   213 }
   215 class AlwaysTrueClosure: public BoolObjectClosure {
   216 public:
   217   void do_object(oop p) { ShouldNotReachHere(); }
   218   bool do_object_b(oop p) { return true; }
   219 };
   220 static AlwaysTrueClosure always_true;
   222 class SkipAdjustingSharedStrings: public OopClosure {
   223   OopClosure* _clo;
   224 public:
   225   SkipAdjustingSharedStrings(OopClosure* clo) : _clo(clo) {}
   227   virtual void do_oop(oop* p) {
   228     oop o = (*p);
   229     if (!o->is_shared_readwrite()) {
   230       _clo->do_oop(p);
   231     }
   232   }
   233   virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
   234 };
   236 // Unmarked shared Strings in the StringTable (which got there due to
   237 // being in the constant pools of as-yet unloaded shared classes) were
   238 // not marked and therefore did not have their mark words preserved.
   239 // These entries are also deliberately not purged from the string
   240 // table during unloading of unmarked strings. If an identity hash
   241 // code was computed for any of these objects, it will not have been
   242 // cleared to zero during the forwarding process or by the
   243 // RecursiveAdjustSharedObjectClosure, and will be confused by the
   244 // adjusting process as a forwarding pointer. We need to skip
   245 // forwarding StringTable entries which contain unmarked shared
   246 // Strings. Actually, since shared strings won't be moving, we can
   247 // just skip adjusting any shared entries in the string table.
   249 void SharedHeap::process_weak_roots(OopClosure* root_closure,
   250                                     CodeBlobClosure* code_roots,
   251                                     OopClosure* non_root_closure) {
   252   // Global (weak) JNI handles
   253   JNIHandles::weak_oops_do(&always_true, root_closure);
   255   CodeCache::blobs_do(code_roots);
   256   if (UseSharedSpaces && !DumpSharedSpaces) {
   257     SkipAdjustingSharedStrings skip_closure(root_closure);
   258     StringTable::oops_do(&skip_closure);
   259   } else {
   260     StringTable::oops_do(root_closure);
   261   }
   262 }
   264 void SharedHeap::set_barrier_set(BarrierSet* bs) {
   265   _barrier_set = bs;
   266   // Cached barrier set for fast access in oops
   267   oopDesc::set_bs(bs);
   268 }
   270 void SharedHeap::post_initialize() {
   271   ref_processing_init();
   272 }
   274 void SharedHeap::ref_processing_init() {
   275   perm_gen()->ref_processor_init();
   276 }
   278 // Some utilities.
   279 void SharedHeap::print_size_transition(outputStream* out,
   280                                        size_t bytes_before,
   281                                        size_t bytes_after,
   282                                        size_t capacity) {
   283   out->print(" %d%s->%d%s(%d%s)",
   284              byte_size_in_proper_unit(bytes_before),
   285              proper_unit_for_byte_size(bytes_before),
   286              byte_size_in_proper_unit(bytes_after),
   287              proper_unit_for_byte_size(bytes_after),
   288              byte_size_in_proper_unit(capacity),
   289              proper_unit_for_byte_size(capacity));
   290 }

mercurial