src/hotspot/share/gc/shared/gcVMOperations.hpp
author stuefe
Tue, 26 Nov 2019 16:21:29 +0100
branchstuefe-new-metaspace-branch
changeset 59272 54750b448264
parent 58063 bdf136b8ae0e
permissions -rw-r--r--
Metadatatype back to metaspace.hpp to reduce patch size
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52877
diff changeset
     2
 * Copyright (c) 2005, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52877
diff changeset
    25
#ifndef SHARE_GC_SHARED_GCVMOPERATIONS_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52877
diff changeset
    26
#define SHARE_GC_SHARED_GCVMOPERATIONS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30171
diff changeset
    28
#include "gc/shared/collectedHeap.hpp"
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30764
diff changeset
    29
#include "gc/shared/genCollectedHeap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    30
#include "memory/heapInspection.hpp"
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58063
diff changeset
    31
#include "memory/metaspace.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30171
diff changeset
    32
#include "prims/jvmtiExport.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    33
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    34
#include "runtime/jniHandles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    35
#include "runtime/synchronizer.hpp"
52877
9e041366c764 8214850: Rename vm_operations.?pp files to vmOperations.?pp files
tschatzl
parents: 52876
diff changeset
    36
#include "runtime/vmOperations.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// The following class hierarchy represents
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// a set of operations (VM_Operation) related to GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//  VM_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//      VM_GC_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//          VM_GC_HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//          VM_GenCollectFull
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//          VM_GenCollectFullConcurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//          VM_ParallelGCSystemGC
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
    47
//          VM_CollectForAllocation
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
    48
//              VM_GenCollectForAllocation
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
    49
//              VM_ParallelGCFailedAllocation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//  VM_GC_Operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//   - implements methods common to all classes in the hierarchy:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//     prevents multiple gc requests and manages lock on heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//  VM_GC_HeapInspection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
//   - prints class histogram on SIGBREAK if PrintClassHistogram
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
//     is specified; and also the attach "inspectheap" operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
    58
//  VM_CollectForAllocation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//  VM_GenCollectForAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//  VM_ParallelGCFailedAllocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//   - this operation is invoked when allocation is failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//     operation performs garbage collection and tries to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//     allocate afterwards;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
//  VM_GenCollectFull
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
//  VM_GenCollectFullConcurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
//  VM_ParallelGCSystemGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
//   - these operations preform full collection of heaps of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
//     different kind
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
class VM_GC_Operation: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 protected:
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    74
  uint           _gc_count_before;         // gc count before acquiring PLL
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    75
  uint           _full_gc_count_before;    // full gc count before acquiring PLL
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    76
  bool           _full;                    // whether a "full" collection
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    77
  bool           _prologue_succeeded;      // whether doit_prologue succeeded
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  GCCause::Cause _gc_cause;                // the putative cause for this gc op
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    79
  bool           _gc_locked;               // will be set if gc was locked
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  virtual bool skip_operation() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
 public:
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    84
  VM_GC_Operation(uint gc_count_before,
8295
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
    85
                  GCCause::Cause _cause,
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
    86
                  uint full_gc_count_before = 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                  bool full = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    _full = full;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _prologue_succeeded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _gc_count_before    = gc_count_before;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // A subclass constructor will likely overwrite the following
8295
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
    93
    _gc_cause           = _cause;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _gc_locked = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
6058
9c9aec6ab47d 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 5547
diff changeset
    97
    _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
    98
    // 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
    99
    // 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
   100
    // 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
   101
    // 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
   102
    // 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
   103
    // _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
   104
    // 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
   105
    // collection.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 29079
diff changeset
   107
  ~VM_GC_Operation();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Acquire the reference synchronization lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  virtual bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Do notifyAll (if needed) and release held lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  virtual void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  virtual bool allow_nested_vm_operations() const  { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  bool prologue_succeeded() const { return _prologue_succeeded; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  void set_gc_locked() { _gc_locked = true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  bool gc_locked() const  { return _gc_locked; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static void notify_gc_begin(bool full = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  static void notify_gc_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
class VM_GC_HeapInspection: public VM_GC_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  bool _full_gc;
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   129
  bool _csv_format; // "comma separated values" format for spreadsheet.
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   130
  bool _print_help;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   131
  bool _print_class_stats;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   132
  const char* _columns;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
 public:
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15437
diff changeset
   134
  VM_GC_HeapInspection(outputStream* out, bool request_full_gc) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    VM_GC_Operation(0 /* total collections,      dummy, ignored */,
8295
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
   136
                    GCCause::_heap_inspection /* GC Cause */,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
                    0 /* total full collections, dummy, ignored */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                    request_full_gc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    _out = out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _full_gc = request_full_gc;
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   141
    _csv_format = false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   142
    _print_help = false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   143
    _print_class_stats = false;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   144
    _columns = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  ~VM_GC_HeapInspection() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  virtual VMOp_Type type() const { return VMOp_GC_HeapInspection; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  virtual bool skip_operation() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  virtual void doit();
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   151
  void set_csv_format(bool value) {_csv_format = value;}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   152
  void set_print_help(bool value) {_print_help = value;}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   153
  void set_print_class_stats(bool value) {_print_class_stats = value;}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14123
diff changeset
   154
  void set_columns(const char* value) {_columns = value;}
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15437
diff changeset
   155
 protected:
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15437
diff changeset
   156
  bool collect();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   159
class VM_CollectForAllocation : public VM_GC_Operation {
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   160
 protected:
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   161
  size_t    _word_size; // Size of object to be allocated (in number of words)
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   162
  HeapWord* _result;    // Allocation result (NULL if allocation failed)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   164
 public:
35227
176e593eb364 8065331: Add trace events for failed allocations
mlarsson
parents: 32623
diff changeset
   165
  VM_CollectForAllocation(size_t word_size, uint gc_count_before, GCCause::Cause cause);
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   166
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   167
  HeapWord* result() const {
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   168
    return _result;
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   169
  }
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   170
};
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   171
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   172
class VM_GenCollectForAllocation : public VM_CollectForAllocation {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  bool        _tlab;                       // alloc is of a tlab.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
 public:
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   176
  VM_GenCollectForAllocation(size_t word_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                             bool tlab,
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
   178
                             uint gc_count_before)
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   179
    : VM_CollectForAllocation(word_size, gc_count_before, GCCause::_allocation_failure),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      _tlab(tlab) {
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 29078
diff changeset
   181
    assert(word_size != 0, "An allocation should always be requested with this operation.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  ~VM_GenCollectForAllocation()  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  virtual VMOp_Type type() const { return VMOp_GenCollectForAllocation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  virtual void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// VM operation to invoke a collection of the heap as a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// GenCollectedHeap heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
class VM_GenCollectFull: public VM_GC_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
 private:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30764
diff changeset
   192
  GenCollectedHeap::GenerationType _max_generation;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
 public:
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
   194
  VM_GenCollectFull(uint gc_count_before,
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
   195
                    uint full_gc_count_before,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                    GCCause::Cause gc_cause,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30764
diff changeset
   197
                    GenCollectedHeap::GenerationType max_generation)
57607
8d3886985964 8048556: Unnecessary GCLocker-initiated young GCs
kbarrett
parents: 53244
diff changeset
   198
    : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before,
8d3886985964 8048556: Unnecessary GCLocker-initiated young GCs
kbarrett
parents: 53244
diff changeset
   199
                      max_generation != GenCollectedHeap::YoungGen /* full */),
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30764
diff changeset
   200
      _max_generation(max_generation) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  ~VM_GenCollectFull() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  virtual VMOp_Type type() const { return VMOp_GenCollectFull; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  virtual void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
};
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
   205
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8295
diff changeset
   206
class VM_CollectForMetadataAllocation: public VM_GC_Operation {
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
   207
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8295
diff changeset
   208
  MetaWord*                _result;
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   209
  size_t                   _size;     // size of object to be allocated
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58063
diff changeset
   210
  Metaspace::MetadataType  _mdtype;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8295
diff changeset
   211
  ClassLoaderData*         _loader_data;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31358
diff changeset
   212
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
   213
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8295
diff changeset
   214
  VM_CollectForMetadataAllocation(ClassLoaderData* loader_data,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31358
diff changeset
   215
                                  size_t size,
59272
54750b448264 Metadatatype back to metaspace.hpp to reduce patch size
stuefe
parents: 58063
diff changeset
   216
                                  Metaspace::MetadataType mdtype,
29078
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
   217
                                  uint gc_count_before,
3b7dd035c20b 8072621: Clean up around VM_GC_Operations
mlarsson
parents: 25492
diff changeset
   218
                                  uint full_gc_count_before,
35227
176e593eb364 8065331: Add trace events for failed allocations
mlarsson
parents: 32623
diff changeset
   219
                                  GCCause::Cause gc_cause);
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 31358
diff changeset
   220
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8295
diff changeset
   221
  virtual VMOp_Type type() const { return VMOp_CollectForMetadataAllocation; }
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
   222
  virtual void doit();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 8295
diff changeset
   223
  MetaWord* result() const       { return _result; }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   224
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   225
  bool initiate_concurrent_GC();
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
   226
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
   227
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   228
class SvcGCMarker : public StackObj {
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   229
 private:
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   230
  JvmtiGCMarker _jgcm;
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   231
 public:
51343
da5b0111c93c 8207756: ZGC: jstat should show CGC STW phases
pliden
parents: 49377
diff changeset
   232
  typedef enum { MINOR, FULL, CONCURRENT } reason_type;
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   233
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   234
  SvcGCMarker(reason_type reason ) {
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   235
    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
   236
  }
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   237
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7659
diff changeset
   238
  ~SvcGCMarker() {
7659
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   239
    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
   240
  }
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   241
};
1d92613a1e8a 6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents: 7397
diff changeset
   242
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52877
diff changeset
   243
#endif // SHARE_GC_SHARED_GCVMOPERATIONS_HPP