author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 40892 | hotspot/src/share/vm/gc/shared/vmGCOperations.hpp@330a02d935ad |
child 49377 | ecd91135d645 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
37129
af29e306e50b
8151601: Cleanup locking of the Reference pending list
pliden
parents:
35227
diff
changeset
|
2 |
* Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_VMGCOPERATIONS_HPP |
26 |
#define SHARE_VM_GC_SHARED_VMGCOPERATIONS_HPP |
|
7397 | 27 |
|
30764 | 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 | 30 |
#include "memory/heapInspection.hpp" |
30764 | 31 |
#include "prims/jvmtiExport.hpp" |
7397 | 32 |
#include "runtime/handles.hpp" |
33 |
#include "runtime/jniHandles.hpp" |
|
34 |
#include "runtime/synchronizer.hpp" |
|
35 |
#include "runtime/vm_operations.hpp" |
|
36 |
||
1 | 37 |
// The following class hierarchy represents |
38 |
// a set of operations (VM_Operation) related to GC. |
|
39 |
// |
|
40 |
// VM_Operation |
|
41 |
// VM_GC_Operation |
|
42 |
// VM_GC_HeapInspection |
|
43 |
// VM_GenCollectFull |
|
44 |
// VM_GenCollectFullConcurrent |
|
45 |
// VM_ParallelGCSystemGC |
|
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
46 |
// VM_CollectForAllocation |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
47 |
// VM_GenCollectForAllocation |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
48 |
// VM_ParallelGCFailedAllocation |
1 | 49 |
// VM_GC_Operation |
50 |
// - implements methods common to all classes in the hierarchy: |
|
51 |
// prevents multiple gc requests and manages lock on heap; |
|
52 |
// |
|
53 |
// VM_GC_HeapInspection |
|
54 |
// - prints class histogram on SIGBREAK if PrintClassHistogram |
|
55 |
// is specified; and also the attach "inspectheap" operation |
|
56 |
// |
|
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
57 |
// VM_CollectForAllocation |
1 | 58 |
// VM_GenCollectForAllocation |
59 |
// VM_ParallelGCFailedAllocation |
|
60 |
// - this operation is invoked when allocation is failed; |
|
61 |
// operation performs garbage collection and tries to |
|
62 |
// allocate afterwards; |
|
63 |
// |
|
64 |
// VM_GenCollectFull |
|
65 |
// VM_GenCollectFullConcurrent |
|
66 |
// VM_ParallelGCSystemGC |
|
67 |
// - these operations preform full collection of heaps of |
|
68 |
// different kind |
|
69 |
// |
|
70 |
||
71 |
class VM_GC_Operation: public VM_Operation { |
|
72 |
protected: |
|
29078 | 73 |
uint _gc_count_before; // gc count before acquiring PLL |
74 |
uint _full_gc_count_before; // full gc count before acquiring PLL |
|
75 |
bool _full; // whether a "full" collection |
|
76 |
bool _prologue_succeeded; // whether doit_prologue succeeded |
|
1 | 77 |
GCCause::Cause _gc_cause; // the putative cause for this gc op |
29078 | 78 |
bool _gc_locked; // will be set if gc was locked |
1 | 79 |
|
80 |
virtual bool skip_operation() const; |
|
81 |
||
82 |
public: |
|
29078 | 83 |
VM_GC_Operation(uint gc_count_before, |
8295 | 84 |
GCCause::Cause _cause, |
29078 | 85 |
uint full_gc_count_before = 0, |
1 | 86 |
bool full = false) { |
87 |
_full = full; |
|
88 |
_prologue_succeeded = false; |
|
89 |
_gc_count_before = gc_count_before; |
|
90 |
||
91 |
// A subclass constructor will likely overwrite the following |
|
8295 | 92 |
_gc_cause = _cause; |
1 | 93 |
|
94 |
_gc_locked = false; |
|
95 |
||
6058
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5547
diff
changeset
|
96 |
_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
|
97 |
// 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
|
98 |
// 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
|
99 |
// 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
|
100 |
// 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
|
101 |
// 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
|
102 |
// _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
|
103 |
// 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
|
104 |
// collection. |
1 | 105 |
} |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
29079
diff
changeset
|
106 |
~VM_GC_Operation(); |
1 | 107 |
|
108 |
// Acquire the reference synchronization lock |
|
109 |
virtual bool doit_prologue(); |
|
110 |
// Do notifyAll (if needed) and release held lock |
|
111 |
virtual void doit_epilogue(); |
|
112 |
||
113 |
virtual bool allow_nested_vm_operations() const { return true; } |
|
114 |
bool prologue_succeeded() const { return _prologue_succeeded; } |
|
115 |
||
116 |
void set_gc_locked() { _gc_locked = true; } |
|
117 |
bool gc_locked() const { return _gc_locked; } |
|
118 |
||
119 |
static void notify_gc_begin(bool full = false); |
|
120 |
static void notify_gc_end(); |
|
121 |
}; |
|
122 |
||
123 |
||
124 |
class VM_GC_HeapInspection: public VM_GC_Operation { |
|
125 |
private: |
|
126 |
outputStream* _out; |
|
127 |
bool _full_gc; |
|
15437 | 128 |
bool _csv_format; // "comma separated values" format for spreadsheet. |
129 |
bool _print_help; |
|
130 |
bool _print_class_stats; |
|
131 |
const char* _columns; |
|
1 | 132 |
public: |
18025 | 133 |
VM_GC_HeapInspection(outputStream* out, bool request_full_gc) : |
1 | 134 |
VM_GC_Operation(0 /* total collections, dummy, ignored */, |
8295 | 135 |
GCCause::_heap_inspection /* GC Cause */, |
1 | 136 |
0 /* total full collections, dummy, ignored */, |
137 |
request_full_gc) { |
|
138 |
_out = out; |
|
139 |
_full_gc = request_full_gc; |
|
15437 | 140 |
_csv_format = false; |
141 |
_print_help = false; |
|
142 |
_print_class_stats = false; |
|
143 |
_columns = NULL; |
|
1 | 144 |
} |
145 |
||
146 |
~VM_GC_HeapInspection() {} |
|
147 |
virtual VMOp_Type type() const { return VMOp_GC_HeapInspection; } |
|
148 |
virtual bool skip_operation() const; |
|
149 |
virtual void doit(); |
|
15437 | 150 |
void set_csv_format(bool value) {_csv_format = value;} |
151 |
void set_print_help(bool value) {_print_help = value;} |
|
152 |
void set_print_class_stats(bool value) {_print_class_stats = value;} |
|
153 |
void set_columns(const char* value) {_columns = value;} |
|
18025 | 154 |
protected: |
155 |
bool collect(); |
|
1 | 156 |
}; |
157 |
||
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
158 |
class VM_CollectForAllocation : public VM_GC_Operation { |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
159 |
protected: |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
160 |
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
|
161 |
HeapWord* _result; // Allocation result (NULL if allocation failed) |
1 | 162 |
|
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
163 |
public: |
35227
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
32623
diff
changeset
|
164 |
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
|
165 |
|
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
166 |
HeapWord* result() const { |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
167 |
return _result; |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
168 |
} |
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 |
class VM_GenCollectForAllocation : public VM_CollectForAllocation { |
1 | 172 |
private: |
173 |
bool _tlab; // alloc is of a tlab. |
|
174 |
public: |
|
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
175 |
VM_GenCollectForAllocation(size_t word_size, |
1 | 176 |
bool tlab, |
29078 | 177 |
uint gc_count_before) |
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
178 |
: VM_CollectForAllocation(word_size, gc_count_before, GCCause::_allocation_failure), |
1 | 179 |
_tlab(tlab) { |
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
29078
diff
changeset
|
180 |
assert(word_size != 0, "An allocation should always be requested with this operation."); |
1 | 181 |
} |
182 |
~VM_GenCollectForAllocation() {} |
|
183 |
virtual VMOp_Type type() const { return VMOp_GenCollectForAllocation; } |
|
184 |
virtual void doit(); |
|
185 |
}; |
|
186 |
||
187 |
// VM operation to invoke a collection of the heap as a |
|
188 |
// GenCollectedHeap heap. |
|
189 |
class VM_GenCollectFull: public VM_GC_Operation { |
|
190 |
private: |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
191 |
GenCollectedHeap::GenerationType _max_generation; |
1 | 192 |
public: |
29078 | 193 |
VM_GenCollectFull(uint gc_count_before, |
194 |
uint full_gc_count_before, |
|
1 | 195 |
GCCause::Cause gc_cause, |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
196 |
GenCollectedHeap::GenerationType max_generation) |
8295 | 197 |
: VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true /* full */), |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30764
diff
changeset
|
198 |
_max_generation(max_generation) { } |
1 | 199 |
~VM_GenCollectFull() {} |
200 |
virtual VMOp_Type type() const { return VMOp_GenCollectFull; } |
|
201 |
virtual void doit(); |
|
202 |
}; |
|
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
|
203 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
204 |
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
|
205 |
private: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
206 |
MetaWord* _result; |
14123
944e56f74fba
7045397: NPG: Add freelists to class loader arenas.
jmasa
parents:
13728
diff
changeset
|
207 |
size_t _size; // size of object to be allocated |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
208 |
Metaspace::MetadataType _mdtype; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
209 |
ClassLoaderData* _loader_data; |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31358
diff
changeset
|
210 |
|
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
|
211 |
public: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
212 |
VM_CollectForMetadataAllocation(ClassLoaderData* loader_data, |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31358
diff
changeset
|
213 |
size_t size, |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31358
diff
changeset
|
214 |
Metaspace::MetadataType mdtype, |
29078 | 215 |
uint gc_count_before, |
216 |
uint full_gc_count_before, |
|
35227
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
32623
diff
changeset
|
217 |
GCCause::Cause gc_cause); |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31358
diff
changeset
|
218 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
219 |
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
|
220 |
virtual void doit(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
8295
diff
changeset
|
221 |
MetaWord* result() const { return _result; } |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
222 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
223 |
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
|
224 |
}; |
7397 | 225 |
|
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
226 |
class SvcGCMarker : public StackObj { |
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
227 |
private: |
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
228 |
JvmtiGCMarker _jgcm; |
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
229 |
public: |
37235
d9a0c407ac98
8153302: [BACKOUT] STW phases at Concurrent GC should count in PerfCounter
dcubed
parents:
37218
diff
changeset
|
230 |
typedef enum { MINOR, FULL, OTHER } reason_type; |
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
231 |
|
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
232 |
SvcGCMarker(reason_type reason ) { |
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
233 |
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
|
234 |
} |
1d92613a1e8a
6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents:
7397
diff
changeset
|
235 |
|
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7659
diff
changeset
|
236 |
~SvcGCMarker() { |
7659
1d92613a1e8a
6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents:
7397
diff
changeset
|
237 |
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
|
238 |
} |
1d92613a1e8a
6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents:
7397
diff
changeset
|
239 |
}; |
1d92613a1e8a
6896624: G1: hotspot:::gc and hotspot:::mem-pool-gc probes are not fired
tonyp
parents:
7397
diff
changeset
|
240 |
|
30764 | 241 |
#endif // SHARE_VM_GC_SHARED_VMGCOPERATIONS_HPP |