index

src/share/vm/gc_implementation/shared/vmGCOperations.hpp

Print this page
rev 7474 : imported patch cleanup
   1 /*
   2  * Copyright (c) 2005, 2013, 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  */
  24 
  25 #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
  26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
  27 
  28 #include "memory/heapInspection.hpp"
  29 #include "runtime/handles.hpp"
  30 #include "runtime/jniHandles.hpp"
  31 #include "runtime/synchronizer.hpp"
  32 #include "runtime/vm_operations.hpp"
  33 #include "prims/jvmtiExport.hpp"
  34 
  35 // The following class hierarchy represents
  36 // a set of operations (VM_Operation) related to GC.
  37 //
  38 //  VM_Operation
  39 //      VM_GC_Operation
  40 //          VM_GC_HeapInspection
  41 //          VM_GenCollectForAllocation
  42 //          VM_GenCollectFull
  43 //          VM_GenCollectFullConcurrent
  44 //          VM_ParallelGCFailedAllocation
  45 //          VM_ParallelGCSystemGC



  46 //  VM_GC_Operation
  47 //   - implements methods common to all classes in the hierarchy:
  48 //     prevents multiple gc requests and manages lock on heap;
  49 //
  50 //  VM_GC_HeapInspection
  51 //   - prints class histogram on SIGBREAK if PrintClassHistogram
  52 //     is specified; and also the attach "inspectheap" operation
  53 //

  54 //  VM_GenCollectForAllocation
  55 //  VM_ParallelGCFailedAllocation
  56 //   - this operation is invoked when allocation is failed;
  57 //     operation performs garbage collection and tries to
  58 //     allocate afterwards;
  59 //
  60 //  VM_GenCollectFull
  61 //  VM_GenCollectFullConcurrent
  62 //  VM_ParallelGCSystemGC
  63 //   - these operations preform full collection of heaps of
  64 //     different kind
  65 //
  66 
  67 class VM_GC_Operation: public VM_Operation {
  68  protected:
  69   BasicLock     _pending_list_basic_lock; // for refs pending list notification (PLL)
  70   unsigned int  _gc_count_before;         // gc count before acquiring PLL
  71   unsigned int  _full_gc_count_before;    // full gc count before acquiring PLL
  72   bool          _full;                    // whether a "full" collection
  73   bool          _prologue_succeeded;      // whether doit_prologue succeeded
  74   GCCause::Cause _gc_cause;                // the putative cause for this gc op
  75   bool          _gc_locked;               // will be set if gc was locked
  76 
  77   virtual bool skip_operation() const;
  78 
  79   // java.lang.ref.Reference support
  80   void acquire_pending_list_lock();
  81   void release_and_notify_pending_list_lock();
  82 
  83  public:
  84   VM_GC_Operation(unsigned int gc_count_before,
  85                   GCCause::Cause _cause,
  86                   unsigned int full_gc_count_before = 0,
  87                   bool full = false) {
  88     _full = full;
  89     _prologue_succeeded = false;
  90     _gc_count_before    = gc_count_before;
  91 
  92     // A subclass constructor will likely overwrite the following
  93     _gc_cause           = _cause;
  94 
  95     _gc_locked = false;
  96 
  97     _full_gc_count_before = full_gc_count_before;
  98     // In ParallelScavengeHeap::mem_allocate() collections can be
  99     // executed within a loop and _all_soft_refs_clear can be set
 100     // true after they have been cleared by a collection and another
 101     // collection started so that _all_soft_refs_clear can be true
 102     // when this collection is started.  Don't assert that
 103     // _all_soft_refs_clear have to be false here even though
 104     // mutators have run.  Soft refs will be cleared again in this
 105     // collection.
 106   }


 143     _full_gc = request_full_gc;
 144     _csv_format = false;
 145     _print_help = false;
 146     _print_class_stats = false;
 147     _columns = NULL;
 148   }
 149 
 150   ~VM_GC_HeapInspection() {}
 151   virtual VMOp_Type type() const { return VMOp_GC_HeapInspection; }
 152   virtual bool skip_operation() const;
 153   virtual bool doit_prologue();
 154   virtual void doit();
 155   void set_csv_format(bool value) {_csv_format = value;}
 156   void set_print_help(bool value) {_print_help = value;}
 157   void set_print_class_stats(bool value) {_print_class_stats = value;}
 158   void set_columns(const char* value) {_columns = value;}
 159  protected:
 160   bool collect();
 161 };
 162 












 163 
 164 class VM_GenCollectForAllocation: public VM_GC_Operation {
 165  private:
 166   HeapWord*   _res;
 167   size_t      _size;                       // size of object to be allocated.
 168   bool        _tlab;                       // alloc is of a tlab.
 169  public:
 170   VM_GenCollectForAllocation(size_t size,
 171                              bool tlab,
 172                              unsigned int gc_count_before)
 173     : VM_GC_Operation(gc_count_before, GCCause::_allocation_failure),
 174       _size(size),
 175       _tlab(tlab) {
 176     _res = NULL;
 177   }
 178   ~VM_GenCollectForAllocation()  {}
 179   virtual VMOp_Type type() const { return VMOp_GenCollectForAllocation; }
 180   virtual void doit();
 181   HeapWord* result() const       { return _res; }
 182 };
 183 
 184 
 185 // VM operation to invoke a collection of the heap as a
 186 // GenCollectedHeap heap.
 187 class VM_GenCollectFull: public VM_GC_Operation {
 188  private:
 189   int _max_level;
 190  public:
 191   VM_GenCollectFull(unsigned int gc_count_before,
 192                     unsigned int full_gc_count_before,
 193                     GCCause::Cause gc_cause,
 194                       int max_level)
 195     : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true /* full */),
 196       _max_level(max_level) { }
 197   ~VM_GenCollectFull() {}
 198   virtual VMOp_Type type() const { return VMOp_GenCollectFull; }
 199   virtual void doit();
 200 };
 201 
 202 class VM_CollectForMetadataAllocation: public VM_GC_Operation {
 203  private:
 204   MetaWord*                _result;
 205   size_t                   _size;     // size of object to be allocated
 206   Metaspace::MetadataType  _mdtype;
 207   ClassLoaderData*         _loader_data;
 208  public:
 209   VM_CollectForMetadataAllocation(ClassLoaderData* loader_data,
 210                                   size_t size, Metaspace::MetadataType mdtype,
 211                                       unsigned int gc_count_before,
 212                                       unsigned int full_gc_count_before,
 213                                       GCCause::Cause gc_cause)
 214     : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true),
 215       _loader_data(loader_data), _size(size), _mdtype(mdtype), _result(NULL) {
 216   }
 217   virtual VMOp_Type type() const { return VMOp_CollectForMetadataAllocation; }
 218   virtual void doit();
 219   MetaWord* result() const       { return _result; }
 220 
 221   bool initiate_concurrent_GC();
 222 };
 223 
 224 class SvcGCMarker : public StackObj {
 225  private:
 226   JvmtiGCMarker _jgcm;
 227  public:
 228   typedef enum { MINOR, FULL, OTHER } reason_type;
 229 
 230   SvcGCMarker(reason_type reason ) {
 231     VM_GC_Operation::notify_gc_begin(reason == FULL);
 232   }
   1 /*
   2  * Copyright (c) 2005, 2014, 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  */
  24 
  25 #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
  26 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
  27 
  28 #include "memory/heapInspection.hpp"
  29 #include "runtime/handles.hpp"
  30 #include "runtime/jniHandles.hpp"
  31 #include "runtime/synchronizer.hpp"
  32 #include "runtime/vm_operations.hpp"
  33 #include "prims/jvmtiExport.hpp"
  34 
  35 // The following class hierarchy represents
  36 // a set of operations (VM_Operation) related to GC.
  37 //
  38 //  VM_Operation
  39 //      VM_GC_Operation
  40 //          VM_GC_HeapInspection

  41 //          VM_GenCollectFull
  42 //          VM_GenCollectFullConcurrent

  43 //          VM_ParallelGCSystemGC
  44 //          VM_CollectForAllocation
  45 //              VM_GenCollectForAllocation
  46 //              VM_ParallelGCFailedAllocation
  47 //  VM_GC_Operation
  48 //   - implements methods common to all classes in the hierarchy:
  49 //     prevents multiple gc requests and manages lock on heap;
  50 //
  51 //  VM_GC_HeapInspection
  52 //   - prints class histogram on SIGBREAK if PrintClassHistogram
  53 //     is specified; and also the attach "inspectheap" operation
  54 //
  55 //  VM_CollectForAllocation
  56 //  VM_GenCollectForAllocation
  57 //  VM_ParallelGCFailedAllocation
  58 //   - this operation is invoked when allocation is failed;
  59 //     operation performs garbage collection and tries to
  60 //     allocate afterwards;
  61 //
  62 //  VM_GenCollectFull
  63 //  VM_GenCollectFullConcurrent
  64 //  VM_ParallelGCSystemGC
  65 //   - these operations preform full collection of heaps of
  66 //     different kind
  67 //
  68 
  69 class VM_GC_Operation: public VM_Operation {
  70  protected:
  71   BasicLock      _pending_list_basic_lock; // for refs pending list notification (PLL)
  72   uint           _gc_count_before;         // gc count before acquiring PLL
  73   uint           _full_gc_count_before;    // full gc count before acquiring PLL
  74   bool           _full;                    // whether a "full" collection
  75   bool           _prologue_succeeded;      // whether doit_prologue succeeded
  76   GCCause::Cause _gc_cause;                // the putative cause for this gc op
  77   bool           _gc_locked;               // will be set if gc was locked
  78 
  79   virtual bool skip_operation() const;
  80 
  81   // java.lang.ref.Reference support
  82   void acquire_pending_list_lock();
  83   void release_and_notify_pending_list_lock();
  84 
  85  public:
  86   VM_GC_Operation(uint gc_count_before,
  87                   GCCause::Cause _cause,
  88                   uint full_gc_count_before = 0,
  89                   bool full = false) {
  90     _full = full;
  91     _prologue_succeeded = false;
  92     _gc_count_before    = gc_count_before;
  93 
  94     // A subclass constructor will likely overwrite the following
  95     _gc_cause           = _cause;
  96 
  97     _gc_locked = false;
  98 
  99     _full_gc_count_before = full_gc_count_before;
 100     // In ParallelScavengeHeap::mem_allocate() collections can be
 101     // executed within a loop and _all_soft_refs_clear can be set
 102     // true after they have been cleared by a collection and another
 103     // collection started so that _all_soft_refs_clear can be true
 104     // when this collection is started.  Don't assert that
 105     // _all_soft_refs_clear have to be false here even though
 106     // mutators have run.  Soft refs will be cleared again in this
 107     // collection.
 108   }


 145     _full_gc = request_full_gc;
 146     _csv_format = false;
 147     _print_help = false;
 148     _print_class_stats = false;
 149     _columns = NULL;
 150   }
 151 
 152   ~VM_GC_HeapInspection() {}
 153   virtual VMOp_Type type() const { return VMOp_GC_HeapInspection; }
 154   virtual bool skip_operation() const;
 155   virtual bool doit_prologue();
 156   virtual void doit();
 157   void set_csv_format(bool value) {_csv_format = value;}
 158   void set_print_help(bool value) {_print_help = value;}
 159   void set_print_class_stats(bool value) {_print_class_stats = value;}
 160   void set_columns(const char* value) {_columns = value;}
 161  protected:
 162   bool collect();
 163 };
 164 
 165 class VM_CollectForAllocation : public VM_GC_Operation {
 166  protected:
 167   size_t                _word_size; // Size of object to be allocated (in number of words)
 168   HeapWord*             _result;    // Allocation result (NULL if allocation failed)
 169 
 170  public:
 171   VM_CollectForAllocation(size_t word_size, uint gc_count_before, GCCause::Cause cause);
 172 
 173   HeapWord* result() const {
 174     return _result;
 175   }
 176 };
 177 
 178 class VM_GenCollectForAllocation : public VM_CollectForAllocation {
 179  private:


 180   bool        _tlab;                       // alloc is of a tlab.
 181  public:
 182   VM_GenCollectForAllocation(size_t size,
 183                              bool tlab,
 184                              uint gc_count_before)
 185     : VM_CollectForAllocation(size, gc_count_before, GCCause::_allocation_failure),
 186       _tlab(tlab) {}



 187   ~VM_GenCollectForAllocation()  {}
 188   virtual VMOp_Type type() const { return VMOp_GenCollectForAllocation; }
 189   virtual void doit();

 190 };
 191 

 192 // VM operation to invoke a collection of the heap as a
 193 // GenCollectedHeap heap.
 194 class VM_GenCollectFull: public VM_GC_Operation {
 195  private:
 196   int _max_level;
 197  public:
 198   VM_GenCollectFull(uint gc_count_before,
 199                     uint full_gc_count_before,
 200                     GCCause::Cause gc_cause,
 201                     int max_level)
 202     : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true /* full */),
 203       _max_level(max_level) { }
 204   ~VM_GenCollectFull() {}
 205   virtual VMOp_Type type() const { return VMOp_GenCollectFull; }
 206   virtual void doit();
 207 };
 208 
 209 class VM_CollectForMetadataAllocation: public VM_GC_Operation {
 210  private:
 211   MetaWord*                _result;
 212   size_t                   _size;     // size of object to be allocated
 213   Metaspace::MetadataType  _mdtype;
 214   ClassLoaderData*         _loader_data;
 215  public:
 216   VM_CollectForMetadataAllocation(ClassLoaderData* loader_data,
 217                                   size_t size, Metaspace::MetadataType mdtype,
 218                                   uint gc_count_before,
 219                                   uint full_gc_count_before,
 220                                   GCCause::Cause gc_cause)
 221     : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true),
 222       _loader_data(loader_data), _size(size), _mdtype(mdtype), _result(NULL) {
 223   }
 224   virtual VMOp_Type type() const { return VMOp_CollectForMetadataAllocation; }
 225   virtual void doit();
 226   MetaWord* result() const       { return _result; }
 227 
 228   bool initiate_concurrent_GC();
 229 };
 230 
 231 class SvcGCMarker : public StackObj {
 232  private:
 233   JvmtiGCMarker _jgcm;
 234  public:
 235   typedef enum { MINOR, FULL, OTHER } reason_type;
 236 
 237   SvcGCMarker(reason_type reason ) {
 238     VM_GC_Operation::notify_gc_begin(reason == FULL);
 239   }
index