hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.hpp
author kamg
Mon, 10 Jan 2011 17:14:53 -0500
changeset 7896 08aadd7aa3ee
parent 7659 1d92613a1e8a
child 8295 a2b2a8a3aaee
permissions -rw-r--r--
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent Summary: Make JvmtiGCMark safe to run non-safepoint and instrument CMS Reviewed-by: ysr, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
     2
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    28
#include "memory/heapInspection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    29
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    30
#include "runtime/jniHandles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    31
#include "runtime/synchronizer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    32
#include "runtime/vm_operations.hpp"
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
    33
#include "prims/jvmtiExport.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The following class hierarchy represents
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// a set of operations (VM_Operation) related to GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//  VM_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//      VM_GC_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//          VM_GC_HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//          VM_GenCollectForAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//          VM_GenCollectFull
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//          VM_GenCollectFullConcurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//          VM_ParallelGCFailedAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//          VM_ParallelGCFailedPermanentAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//          VM_ParallelGCSystemGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//  VM_GC_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//   - implements methods common to all classes in the hierarchy:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//     prevents multiple gc requests and manages lock on heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//  VM_GC_HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//   - prints class histogram on SIGBREAK if PrintClassHistogram
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//     is specified; and also the attach "inspectheap" operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//  VM_GenCollectForAllocation
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
    56
//  VM_GenCollectForPermanentAllocation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//  VM_ParallelGCFailedAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
//  VM_ParallelGCFailedPermanentAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//   - this operation is invoked when allocation is failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//     operation performs garbage collection and tries to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//     allocate afterwards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//  VM_GenCollectFull
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//  VM_GenCollectFullConcurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
//  VM_ParallelGCSystemGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
//   - these operations preform full collection of heaps of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
//     different kind
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
class VM_GC_Operation: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  BasicLock     _pending_list_basic_lock; // for refs pending list notification (PLL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  unsigned int  _gc_count_before;         // gc count before acquiring PLL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  unsigned int  _full_gc_count_before;    // full gc count before acquiring PLL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  bool          _full;                    // whether a "full" collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool          _prologue_succeeded;      // whether doit_prologue succeeded
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  GCCause::Cause _gc_cause;                // the putative cause for this gc op
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  bool          _gc_locked;               // will be set if gc was locked
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  virtual bool skip_operation() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // java.lang.ref.Reference support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  void acquire_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  void release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  VM_GC_Operation(unsigned int gc_count_before,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                  unsigned int full_gc_count_before = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                  bool full = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _full = full;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    _prologue_succeeded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _gc_count_before    = gc_count_before;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // A subclass constructor will likely overwrite the following
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _gc_cause           = GCCause::_no_cause_specified;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    _gc_locked = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
6058
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
    99
    _full_gc_count_before = full_gc_count_before;
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   100
    // In ParallelScavengeHeap::mem_allocate() collections can be
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   101
    // executed within a loop and _all_soft_refs_clear can be set
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   102
    // true after they have been cleared by a collection and another
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   103
    // collection started so that _all_soft_refs_clear can be true
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   104
    // when this collection is started.  Don't assert that
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   105
    // _all_soft_refs_clear have to be false here even though
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   106
    // mutators have run.  Soft refs will be cleared again in this
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   107
    // collection.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   109
  ~VM_GC_Operation() {
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   110
    CollectedHeap* ch = Universe::heap();
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   111
    ch->collector_policy()->set_all_soft_refs_clear(false);
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 2141
diff changeset
   112
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Acquire the reference synchronization lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  virtual bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Do notifyAll (if needed) and release held lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  virtual void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  virtual bool allow_nested_vm_operations() const  { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  bool prologue_succeeded() const { return _prologue_succeeded; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void set_gc_locked() { _gc_locked = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  bool gc_locked() const  { return _gc_locked; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static void notify_gc_begin(bool full = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static void notify_gc_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
class VM_GC_HeapInspection: public VM_GC_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool _full_gc;
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 670
diff changeset
   134
  bool _need_prologue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
 public:
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 670
diff changeset
   136
  VM_GC_HeapInspection(outputStream* out, bool request_full_gc,
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 670
diff changeset
   137
                       bool need_prologue) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    VM_GC_Operation(0 /* total collections,      dummy, ignored */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                    0 /* total full collections, dummy, ignored */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                    request_full_gc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _out = out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    _full_gc = request_full_gc;
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 670
diff changeset
   143
    _need_prologue = need_prologue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  ~VM_GC_HeapInspection() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  virtual VMOp_Type type() const { return VMOp_GC_HeapInspection; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  virtual bool skip_operation() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  virtual bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  virtual void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
class VM_GenCollectForAllocation: public VM_GC_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  HeapWord*   _res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  size_t      _size;                       // size of object to be allocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  bool        _tlab;                       // alloc is of a tlab.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  VM_GenCollectForAllocation(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                             bool tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                             unsigned int gc_count_before)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    : VM_GC_Operation(gc_count_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      _size(size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      _tlab(tlab) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _res = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  ~VM_GenCollectForAllocation()  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  virtual VMOp_Type type() const { return VMOp_GenCollectForAllocation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  virtual void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  HeapWord* result() const       { return _res; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// VM operation to invoke a collection of the heap as a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// GenCollectedHeap heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
class VM_GenCollectFull: public VM_GC_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  int _max_level;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  VM_GenCollectFull(unsigned int gc_count_before,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
                    unsigned int full_gc_count_before,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                    GCCause::Cause gc_cause,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
                      int max_level)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    : VM_GC_Operation(gc_count_before, full_gc_count_before, true /* full */),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      _max_level(max_level)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  { _gc_cause = gc_cause; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  ~VM_GenCollectFull() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  virtual VMOp_Type type() const { return VMOp_GenCollectFull; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  virtual void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
};
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   192
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   193
class VM_GenCollectForPermanentAllocation: public VM_GC_Operation {
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   194
 private:
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   195
  HeapWord*   _res;
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   196
  size_t      _size;                       // size of object to be allocated
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   197
 public:
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   198
  VM_GenCollectForPermanentAllocation(size_t size,
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   199
                                      unsigned int gc_count_before,
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   200
                                      unsigned int full_gc_count_before,
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   201
                                      GCCause::Cause gc_cause)
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   202
    : VM_GC_Operation(gc_count_before, full_gc_count_before, true),
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   203
      _size(size) {
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   204
    _res = NULL;
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   205
    _gc_cause = gc_cause;
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   206
  }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   207
  ~VM_GenCollectForPermanentAllocation()  {}
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   208
  virtual VMOp_Type type() const { return VMOp_GenCollectForPermanentAllocation; }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   209
  virtual void doit();
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   210
  HeapWord* result() const       { return _res; }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   211
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
   212
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   213
class SvcGCMarker : public StackObj {
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   214
 private:
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   215
  JvmtiGCMarker _jgcm;
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   216
 public:
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   217
  typedef enum { MINOR, FULL, OTHER } reason_type;
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   218
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   219
  SvcGCMarker(reason_type reason ) {
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   220
    VM_GC_Operation::notify_gc_begin(reason == FULL);
7659
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   221
  }
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   222
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   223
  ~SvcGCMarker() {
7659
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   224
    VM_GC_Operation::notify_gc_end();
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   225
  }
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   226
};
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   227
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
   228
#endif // SHARE_VM_GC_IMPLEMENTATION_SHARED_VMGCOPERATIONS_HPP