src/share/vm/memory/genCollectedHeap.hpp

Wed, 22 Oct 2008 14:48:08 -0400

author
acorn
date
Wed, 22 Oct 2008 14:48:08 -0400
changeset 843
52e32c8b317e
parent 791
1ee8caae33af
child 952
e9be0e04635a
permissions
-rw-r--r--

6761092: jvm crashes when CDS is enabled.
Summary: CDS hardcoded max c++ virtual method table increased
Reviewed-by: coleenp, xlu, jmasa

     1 /*
     2  * Copyright 2000-2008 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 class SubTasksDone;
    27 // A "GenCollectedHeap" is a SharedHeap that uses generational
    28 // collection.  It is represented with a sequence of Generation's.
    29 class GenCollectedHeap : public SharedHeap {
    30   friend class GenCollectorPolicy;
    31   friend class Generation;
    32   friend class DefNewGeneration;
    33   friend class TenuredGeneration;
    34   friend class ConcurrentMarkSweepGeneration;
    35   friend class CMSCollector;
    36   friend class GenMarkSweep;
    37   friend class VM_GenCollectForAllocation;
    38   friend class VM_GenCollectForPermanentAllocation;
    39   friend class VM_GenCollectFull;
    40   friend class VM_GenCollectFullConcurrent;
    41   friend class VM_GC_HeapInspection;
    42   friend class VM_HeapDumper;
    43   friend class HeapInspection;
    44   friend class GCCauseSetter;
    45   friend class VMStructs;
    46 public:
    47   enum SomeConstants {
    48     max_gens = 10
    49   };
    51   friend class VM_PopulateDumpSharedSpace;
    53  protected:
    54   // Fields:
    55   static GenCollectedHeap* _gch;
    57  private:
    58   int _n_gens;
    59   Generation* _gens[max_gens];
    60   GenerationSpec** _gen_specs;
    62   // The generational collector policy.
    63   GenCollectorPolicy* _gen_policy;
    65   // If a generation would bail out of an incremental collection,
    66   // it sets this flag.  If the flag is set, satisfy_failed_allocation
    67   // will attempt allocating in all generations before doing a full GC.
    68   bool _incremental_collection_will_fail;
    69   bool _last_incremental_collection_failed;
    71   // In support of ExplicitGCInvokesConcurrent functionality
    72   unsigned int _full_collections_completed;
    74   // Data structure for claiming the (potentially) parallel tasks in
    75   // (gen-specific) strong roots processing.
    76   SubTasksDone* _gen_process_strong_tasks;
    78   // In block contents verification, the number of header words to skip
    79   NOT_PRODUCT(static size_t _skip_header_HeapWords;)
    81   // GC is not allowed during the dump of the shared classes.  Keep track
    82   // of this in order to provide an reasonable error message when terminating.
    83   bool _preloading_shared_classes;
    85 protected:
    86   // Directs each generation up to and including "collectedGen" to recompute
    87   // its desired size.
    88   void compute_new_generation_sizes(int collectedGen);
    90   // Helper functions for allocation
    91   HeapWord* attempt_allocation(size_t size,
    92                                bool   is_tlab,
    93                                bool   first_only);
    95   // Helper function for two callbacks below.
    96   // Considers collection of the first max_level+1 generations.
    97   void do_collection(bool   full,
    98                      bool   clear_all_soft_refs,
    99                      size_t size,
   100                      bool   is_tlab,
   101                      int    max_level);
   103   // Callback from VM_GenCollectForAllocation operation.
   104   // This function does everything necessary/possible to satisfy an
   105   // allocation request that failed in the youngest generation that should
   106   // have handled it (including collection, expansion, etc.)
   107   HeapWord* satisfy_failed_allocation(size_t size, bool is_tlab);
   109   // Callback from VM_GenCollectFull operation.
   110   // Perform a full collection of the first max_level+1 generations.
   111   void do_full_collection(bool clear_all_soft_refs, int max_level);
   113   // Does the "cause" of GC indicate that
   114   // we absolutely __must__ clear soft refs?
   115   bool must_clear_all_soft_refs();
   117 public:
   118   GenCollectedHeap(GenCollectorPolicy *policy);
   120   GCStats* gc_stats(int level) const;
   122   // Returns JNI_OK on success
   123   virtual jint initialize();
   124   char* allocate(size_t alignment, PermanentGenerationSpec* perm_gen_spec,
   125                  size_t* _total_reserved, int* _n_covered_regions,
   126                  ReservedSpace* heap_rs);
   128   // Does operations required after initialization has been done.
   129   void post_initialize();
   131   // Initialize ("weak") refs processing support
   132   virtual void ref_processing_init();
   134   virtual CollectedHeap::Name kind() const {
   135     return CollectedHeap::GenCollectedHeap;
   136   }
   138   // The generational collector policy.
   139   GenCollectorPolicy* gen_policy() const { return _gen_policy; }
   141   // Adaptive size policy
   142   virtual AdaptiveSizePolicy* size_policy() {
   143     return gen_policy()->size_policy();
   144   }
   146   size_t capacity() const;
   147   size_t used() const;
   149   // Save the "used_region" for generations level and lower,
   150   // and, if perm is true, for perm gen.
   151   void save_used_regions(int level, bool perm);
   153   size_t max_capacity() const;
   155   HeapWord* mem_allocate(size_t size,
   156                          bool   is_large_noref,
   157                          bool   is_tlab,
   158                          bool*  gc_overhead_limit_was_exceeded);
   160   // We may support a shared contiguous allocation area, if the youngest
   161   // generation does.
   162   bool supports_inline_contig_alloc() const;
   163   HeapWord** top_addr() const;
   164   HeapWord** end_addr() const;
   166   // Return an estimate of the maximum allocation that could be performed
   167   // without triggering any collection activity.  In a generational
   168   // collector, for example, this is probably the largest allocation that
   169   // could be supported in the youngest generation.  It is "unsafe" because
   170   // no locks are taken; the result should be treated as an approximation,
   171   // not a guarantee.
   172   size_t unsafe_max_alloc();
   174   // Does this heap support heap inspection? (+PrintClassHistogram)
   175   virtual bool supports_heap_inspection() const { return true; }
   177   // Perform a full collection of the heap; intended for use in implementing
   178   // "System.gc". This implies as full a collection as the CollectedHeap
   179   // supports. Caller does not hold the Heap_lock on entry.
   180   void collect(GCCause::Cause cause);
   182   // This interface assumes that it's being called by the
   183   // vm thread. It collects the heap assuming that the
   184   // heap lock is already held and that we are executing in
   185   // the context of the vm thread.
   186   void collect_as_vm_thread(GCCause::Cause cause);
   188   // The same as above but assume that the caller holds the Heap_lock.
   189   void collect_locked(GCCause::Cause cause);
   191   // Perform a full collection of the first max_level+1 generations.
   192   // Mostly used for testing purposes. Caller does not hold the Heap_lock on entry.
   193   void collect(GCCause::Cause cause, int max_level);
   195   // Returns "TRUE" iff "p" points into the allocated area of the heap.
   196   // The methods is_in(), is_in_closed_subset() and is_in_youngest() may
   197   // be expensive to compute in general, so, to prevent
   198   // their inadvertent use in product jvm's, we restrict their use to
   199   // assertion checking or verification only.
   200   bool is_in(const void* p) const;
   202   // override
   203   bool is_in_closed_subset(const void* p) const {
   204     if (UseConcMarkSweepGC) {
   205       return is_in_reserved(p);
   206     } else {
   207       return is_in(p);
   208     }
   209   }
   211   // Returns "TRUE" iff "p" points into the youngest generation.
   212   bool is_in_youngest(void* p);
   214   // Iteration functions.
   215   void oop_iterate(OopClosure* cl);
   216   void oop_iterate(MemRegion mr, OopClosure* cl);
   217   void object_iterate(ObjectClosure* cl);
   218   void object_iterate_since_last_GC(ObjectClosure* cl);
   219   Space* space_containing(const void* addr) const;
   221   // A CollectedHeap is divided into a dense sequence of "blocks"; that is,
   222   // each address in the (reserved) heap is a member of exactly
   223   // one block.  The defining characteristic of a block is that it is
   224   // possible to find its size, and thus to progress forward to the next
   225   // block.  (Blocks may be of different sizes.)  Thus, blocks may
   226   // represent Java objects, or they might be free blocks in a
   227   // free-list-based heap (or subheap), as long as the two kinds are
   228   // distinguishable and the size of each is determinable.
   230   // Returns the address of the start of the "block" that contains the
   231   // address "addr".  We say "blocks" instead of "object" since some heaps
   232   // may not pack objects densely; a chunk may either be an object or a
   233   // non-object.
   234   virtual HeapWord* block_start(const void* addr) const;
   236   // Requires "addr" to be the start of a chunk, and returns its size.
   237   // "addr + size" is required to be the start of a new chunk, or the end
   238   // of the active area of the heap. Assumes (and verifies in non-product
   239   // builds) that addr is in the allocated part of the heap and is
   240   // the start of a chunk.
   241   virtual size_t block_size(const HeapWord* addr) const;
   243   // Requires "addr" to be the start of a block, and returns "TRUE" iff
   244   // the block is an object. Assumes (and verifies in non-product
   245   // builds) that addr is in the allocated part of the heap and is
   246   // the start of a chunk.
   247   virtual bool block_is_obj(const HeapWord* addr) const;
   249   // Section on TLAB's.
   250   virtual bool supports_tlab_allocation() const;
   251   virtual size_t tlab_capacity(Thread* thr) const;
   252   virtual size_t unsafe_max_tlab_alloc(Thread* thr) const;
   253   virtual HeapWord* allocate_new_tlab(size_t size);
   255   // Can a compiler initialize a new object without store barriers?
   256   // This permission only extends from the creation of a new object
   257   // via a TLAB up to the first subsequent safepoint.
   258   virtual bool can_elide_tlab_store_barriers() const {
   259     return true;
   260   }
   262   // Can a compiler elide a store barrier when it writes
   263   // a permanent oop into the heap?  Applies when the compiler
   264   // is storing x to the heap, where x->is_perm() is true.
   265   virtual bool can_elide_permanent_oop_store_barriers() const {
   266     // CMS needs to see all, even intra-generational, ref updates.
   267     return !UseConcMarkSweepGC;
   268   }
   270   // The "requestor" generation is performing some garbage collection
   271   // action for which it would be useful to have scratch space.  The
   272   // requestor promises to allocate no more than "max_alloc_words" in any
   273   // older generation (via promotion say.)   Any blocks of space that can
   274   // be provided are returned as a list of ScratchBlocks, sorted by
   275   // decreasing size.
   276   ScratchBlock* gather_scratch(Generation* requestor, size_t max_alloc_words);
   277   // Allow each generation to reset any scratch space that it has
   278   // contributed as it needs.
   279   void release_scratch();
   281   size_t large_typearray_limit();
   283   // Ensure parsability: override
   284   virtual void ensure_parsability(bool retire_tlabs);
   286   // Time in ms since the longest time a collector ran in
   287   // in any generation.
   288   virtual jlong millis_since_last_gc();
   290   // Total number of full collections completed.
   291   unsigned int total_full_collections_completed() {
   292     assert(_full_collections_completed <= _total_full_collections,
   293            "Can't complete more collections than were started");
   294     return _full_collections_completed;
   295   }
   297   // Update above counter, as appropriate, at the end of a stop-world GC cycle
   298   unsigned int update_full_collections_completed();
   299   // Update above counter, as appropriate, at the end of a concurrent GC cycle
   300   unsigned int update_full_collections_completed(unsigned int count);
   302   // Update "time of last gc" for all constituent generations
   303   // to "now".
   304   void update_time_of_last_gc(jlong now) {
   305     for (int i = 0; i < _n_gens; i++) {
   306       _gens[i]->update_time_of_last_gc(now);
   307     }
   308     perm_gen()->update_time_of_last_gc(now);
   309   }
   311   // Update the gc statistics for each generation.
   312   // "level" is the level of the lastest collection
   313   void update_gc_stats(int current_level, bool full) {
   314     for (int i = 0; i < _n_gens; i++) {
   315       _gens[i]->update_gc_stats(current_level, full);
   316     }
   317     perm_gen()->update_gc_stats(current_level, full);
   318   }
   320   // Override.
   321   bool no_gc_in_progress() { return !is_gc_active(); }
   323   // Override.
   324   void prepare_for_verify();
   326   // Override.
   327   void verify(bool allow_dirty, bool silent);
   329   // Override.
   330   void print() const;
   331   void print_on(outputStream* st) const;
   332   virtual void print_gc_threads_on(outputStream* st) const;
   333   virtual void gc_threads_do(ThreadClosure* tc) const;
   334   virtual void print_tracing_info() const;
   336   // PrintGC, PrintGCDetails support
   337   void print_heap_change(size_t prev_used) const;
   338   void print_perm_heap_change(size_t perm_prev_used) const;
   340   // The functions below are helper functions that a subclass of
   341   // "CollectedHeap" can use in the implementation of its virtual
   342   // functions.
   344   class GenClosure : public StackObj {
   345    public:
   346     virtual void do_generation(Generation* gen) = 0;
   347   };
   349   // Apply "cl.do_generation" to all generations in the heap (not including
   350   // the permanent generation).  If "old_to_young" determines the order.
   351   void generation_iterate(GenClosure* cl, bool old_to_young);
   353   void space_iterate(SpaceClosure* cl);
   355   // Return "true" if all generations (but perm) have reached the
   356   // maximal committed limit that they can reach, without a garbage
   357   // collection.
   358   virtual bool is_maximal_no_gc() const;
   360   // Return the generation before "gen", or else NULL.
   361   Generation* prev_gen(Generation* gen) const {
   362     int l = gen->level();
   363     if (l == 0) return NULL;
   364     else return _gens[l-1];
   365   }
   367   // Return the generation after "gen", or else NULL.
   368   Generation* next_gen(Generation* gen) const {
   369     int l = gen->level() + 1;
   370     if (l == _n_gens) return NULL;
   371     else return _gens[l];
   372   }
   374   Generation* get_gen(int i) const {
   375     if (i >= 0 && i < _n_gens)
   376       return _gens[i];
   377     else
   378       return NULL;
   379   }
   381   int n_gens() const {
   382     assert(_n_gens == gen_policy()->number_of_generations(), "Sanity");
   383     return _n_gens;
   384   }
   386   // Convenience function to be used in situations where the heap type can be
   387   // asserted to be this type.
   388   static GenCollectedHeap* heap();
   390   void set_par_threads(int t);
   393   // Invoke the "do_oop" method of one of the closures "not_older_gens"
   394   // or "older_gens" on root locations for the generation at
   395   // "level".  (The "older_gens" closure is used for scanning references
   396   // from older generations; "not_older_gens" is used everywhere else.)
   397   // If "younger_gens_as_roots" is false, younger generations are
   398   // not scanned as roots; in this case, the caller must be arranging to
   399   // scan the younger generations itself.  (For example, a generation might
   400   // explicitly mark reachable objects in younger generations, to avoid
   401   // excess storage retention.)  If "collecting_perm_gen" is false, then
   402   // roots that may only contain references to permGen objects are not
   403   // scanned. The "so" argument determines which of the roots
   404   // the closure is applied to:
   405   // "SO_None" does none;
   406   // "SO_AllClasses" applies the closure to all entries in the SystemDictionary;
   407   // "SO_SystemClasses" to all the "system" classes and loaders;
   408   // "SO_Symbols_and_Strings" applies the closure to all entries in
   409   // SymbolsTable and StringTable.
   410   void gen_process_strong_roots(int level, bool younger_gens_as_roots,
   411                                 bool collecting_perm_gen,
   412                                 SharedHeap::ScanningOption so,
   413                                 OopsInGenClosure* older_gens,
   414                                 OopsInGenClosure* not_older_gens);
   416   // Apply "blk" to all the weak roots of the system.  These include
   417   // JNI weak roots, the code cache, system dictionary, symbol table,
   418   // string table, and referents of reachable weak refs.
   419   void gen_process_weak_roots(OopClosure* root_closure,
   420                               OopClosure* non_root_closure);
   422   // Set the saved marks of generations, if that makes sense.
   423   // In particular, if any generation might iterate over the oops
   424   // in other generations, it should call this method.
   425   void save_marks();
   427   // Apply "cur->do_oop" or "older->do_oop" to all the oops in objects
   428   // allocated since the last call to save_marks in generations at or above
   429   // "level" (including the permanent generation.)  The "cur" closure is
   430   // applied to references in the generation at "level", and the "older"
   431   // closure to older (and permanent) generations.
   432 #define GCH_SINCE_SAVE_MARKS_ITERATE_DECL(OopClosureType, nv_suffix)    \
   433   void oop_since_save_marks_iterate(int level,                          \
   434                                     OopClosureType* cur,                \
   435                                     OopClosureType* older);
   437   ALL_SINCE_SAVE_MARKS_CLOSURES(GCH_SINCE_SAVE_MARKS_ITERATE_DECL)
   439 #undef GCH_SINCE_SAVE_MARKS_ITERATE_DECL
   441   // Returns "true" iff no allocations have occurred in any generation at
   442   // "level" or above (including the permanent generation) since the last
   443   // call to "save_marks".
   444   bool no_allocs_since_save_marks(int level);
   446   // If a generation bails out of an incremental collection,
   447   // it sets this flag.
   448   bool incremental_collection_will_fail() {
   449     return _incremental_collection_will_fail;
   450   }
   451   void set_incremental_collection_will_fail() {
   452     _incremental_collection_will_fail = true;
   453   }
   454   void clear_incremental_collection_will_fail() {
   455     _incremental_collection_will_fail = false;
   456   }
   458   bool last_incremental_collection_failed() const {
   459     return _last_incremental_collection_failed;
   460   }
   461   void set_last_incremental_collection_failed() {
   462     _last_incremental_collection_failed = true;
   463   }
   464   void clear_last_incremental_collection_failed() {
   465     _last_incremental_collection_failed = false;
   466   }
   468   // Promotion of obj into gen failed.  Try to promote obj to higher non-perm
   469   // gens in ascending order; return the new location of obj if successful.
   470   // Otherwise, try expand-and-allocate for obj in each generation starting at
   471   // gen; return the new location of obj if successful.  Otherwise, return NULL.
   472   oop handle_failed_promotion(Generation* gen,
   473                               oop obj,
   474                               size_t obj_size);
   476 private:
   477   // Accessor for memory state verification support
   478   NOT_PRODUCT(
   479     static size_t skip_header_HeapWords() { return _skip_header_HeapWords; }
   480   )
   482   // Override
   483   void check_for_non_bad_heap_word_value(HeapWord* addr,
   484     size_t size) PRODUCT_RETURN;
   486   // For use by mark-sweep.  As implemented, mark-sweep-compact is global
   487   // in an essential way: compaction is performed across generations, by
   488   // iterating over spaces.
   489   void prepare_for_compaction();
   491   // Perform a full collection of the first max_level+1 generations.
   492   // This is the low level interface used by the public versions of
   493   // collect() and collect_locked(). Caller holds the Heap_lock on entry.
   494   void collect_locked(GCCause::Cause cause, int max_level);
   496   // Returns success or failure.
   497   bool create_cms_collector();
   499   // In support of ExplicitGCInvokesConcurrent functionality
   500   bool should_do_concurrent_full_gc(GCCause::Cause cause);
   501   void collect_mostly_concurrent(GCCause::Cause cause);
   503   // Save the tops of the spaces in all generations
   504   void record_gen_tops_before_GC() PRODUCT_RETURN;
   506 protected:
   507   virtual void gc_prologue(bool full);
   508   virtual void gc_epilogue(bool full);
   510 public:
   511   virtual void preload_and_dump(TRAPS) KERNEL_RETURN;
   512 };

mercurial