author | stefank |
Thu, 22 Feb 2018 18:36:32 +0100 | |
changeset 49048 | 4e8c86b75428 |
parent 49047 | 8f004146e407 |
child 49449 | ef5d5d343e2a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46996 | 2 |
* Copyright (c) 2005, 2017, 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:
5542
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
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:
5542
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/classLoader.hpp" |
|
27 |
#include "classfile/javaClasses.hpp" |
|
35227
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
28 |
#include "gc/shared/allocTracer.hpp" |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
29 |
#include "gc/shared/gcId.hpp" |
30764 | 30 |
#include "gc/shared/gcLocker.inline.hpp" |
31 |
#include "gc/shared/genCollectedHeap.hpp" |
|
32 |
#include "gc/shared/vmGCOperations.hpp" |
|
46996 | 33 |
#include "interpreter/oopMapCache.hpp" |
37129
af29e306e50b
8151601: Cleanup locking of the Reference pending list
pliden
parents:
37073
diff
changeset
|
34 |
#include "logging/log.hpp" |
7397 | 35 |
#include "memory/oopFactory.hpp" |
36 |
#include "runtime/handles.inline.hpp" |
|
37 |
#include "runtime/init.hpp" |
|
38 |
#include "runtime/interfaceSupport.hpp" |
|
39 |
#include "utilities/dtrace.hpp" |
|
30764 | 40 |
#include "utilities/macros.hpp" |
7397 | 41 |
#include "utilities/preserveException.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13927
diff
changeset
|
42 |
#if INCLUDE_ALL_GCS |
30764 | 43 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
37985
539c597ee0fa
8154154: Separate G1 specific policy code from the CollectorPolicy class hierarchy
mgerdin
parents:
37149
diff
changeset
|
44 |
#include "gc/g1/g1Policy.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13927
diff
changeset
|
45 |
#endif // INCLUDE_ALL_GCS |
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7397
diff
changeset
|
46 |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
29079
diff
changeset
|
47 |
VM_GC_Operation::~VM_GC_Operation() { |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
29079
diff
changeset
|
48 |
CollectedHeap* ch = Universe::heap(); |
49047
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
47216
diff
changeset
|
49 |
ch->soft_ref_policy()->set_all_soft_refs_clear(false); |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
29079
diff
changeset
|
50 |
} |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
29079
diff
changeset
|
51 |
|
1 | 52 |
// The same dtrace probe can't be inserted in two different files, so we |
53 |
// have to call it here, so it's only in one file. Can't create new probes |
|
54 |
// for the other file anymore. The dtrace probes have to remain stable. |
|
55 |
void VM_GC_Operation::notify_gc_begin(bool full) { |
|
10739 | 56 |
HOTSPOT_GC_BEGIN( |
57 |
full); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
20734
diff
changeset
|
58 |
HS_DTRACE_WORKAROUND_TAIL_CALL_BUG(); |
1 | 59 |
} |
60 |
||
61 |
void VM_GC_Operation::notify_gc_end() { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
20734
diff
changeset
|
62 |
HOTSPOT_GC_END(); |
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
20734
diff
changeset
|
63 |
HS_DTRACE_WORKAROUND_TAIL_CALL_BUG(); |
1 | 64 |
} |
65 |
||
66 |
// Allocations may fail in several threads at about the same time, |
|
67 |
// resulting in multiple gc requests. We only want to do one of them. |
|
22551 | 68 |
// In case a GC locker is active and the need for a GC is already signaled, |
1 | 69 |
// we want to skip this GC attempt altogether, without doing a futile |
70 |
// safepoint operation. |
|
71 |
bool VM_GC_Operation::skip_operation() const { |
|
72 |
bool skip = (_gc_count_before != Universe::heap()->total_collections()); |
|
73 |
if (_full && skip) { |
|
74 |
skip = (_full_gc_count_before != Universe::heap()->total_full_collections()); |
|
75 |
} |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35227
diff
changeset
|
76 |
if (!skip && GCLocker::is_active_and_needs_gc()) { |
1 | 77 |
skip = Universe::heap()->is_maximal_no_gc(); |
78 |
assert(!(skip && (_gc_cause == GCCause::_gc_locker)), |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35227
diff
changeset
|
79 |
"GCLocker cannot be active when initiating GC"); |
1 | 80 |
} |
81 |
return skip; |
|
82 |
} |
|
83 |
||
84 |
bool VM_GC_Operation::doit_prologue() { |
|
85 |
assert(Thread::current()->is_Java_thread(), "just checking"); |
|
8295 | 86 |
assert(((_gc_cause != GCCause::_no_gc) && |
87 |
(_gc_cause != GCCause::_no_cause_specified)), "Illegal GCCause"); |
|
1 | 88 |
|
23540
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
89 |
// To be able to handle a GC the VM initialization needs to be completed. |
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
90 |
if (!is_init_completed()) { |
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
91 |
vm_exit_during_initialization( |
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
92 |
err_msg("GC triggered before VM initialization completed. Try increasing " |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29081
diff
changeset
|
93 |
"NewSize, current value " SIZE_FORMAT "%s.", |
23540
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
94 |
byte_size_in_proper_unit(NewSize), |
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
95 |
proper_unit_for_byte_size(NewSize))); |
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
96 |
} |
06f7d6e1f654
8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents:
22796
diff
changeset
|
97 |
|
1 | 98 |
// If the GC count has changed someone beat us to the collection |
99 |
Heap_lock->lock(); |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
100 |
|
1 | 101 |
// Check invocations |
102 |
if (skip_operation()) { |
|
103 |
// skip collection |
|
104 |
Heap_lock->unlock(); |
|
105 |
_prologue_succeeded = false; |
|
106 |
} else { |
|
107 |
_prologue_succeeded = true; |
|
108 |
} |
|
109 |
return _prologue_succeeded; |
|
110 |
} |
|
111 |
||
112 |
||
113 |
void VM_GC_Operation::doit_epilogue() { |
|
114 |
assert(Thread::current()->is_Java_thread(), "just checking"); |
|
46996 | 115 |
// Clean up old interpreter OopMap entries that were replaced |
116 |
// during the GC thread root traversal. |
|
117 |
OopMapCache::cleanup_old_entries(); |
|
40892
330a02d935ad
8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents:
37985
diff
changeset
|
118 |
if (Universe::has_reference_pending_list()) { |
330a02d935ad
8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents:
37985
diff
changeset
|
119 |
Heap_lock->notify_all(); |
330a02d935ad
8156500: Move Reference pending list into VM to prevent deadlocks
kbarrett
parents:
37985
diff
changeset
|
120 |
} |
1 | 121 |
Heap_lock->unlock(); |
122 |
} |
|
123 |
||
124 |
bool VM_GC_HeapInspection::skip_operation() const { |
|
125 |
return false; |
|
126 |
} |
|
127 |
||
18025 | 128 |
bool VM_GC_HeapInspection::collect() { |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35227
diff
changeset
|
129 |
if (GCLocker::is_active()) { |
18025 | 130 |
return false; |
131 |
} |
|
132 |
Universe::heap()->collect_as_vm_thread(GCCause::_heap_inspection); |
|
133 |
return true; |
|
134 |
} |
|
135 |
||
1 | 136 |
void VM_GC_HeapInspection::doit() { |
137 |
HandleMark hm; |
|
18025 | 138 |
Universe::heap()->ensure_parsability(false); // must happen, even if collection does |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35227
diff
changeset
|
139 |
// not happen (e.g. due to GCLocker) |
18025 | 140 |
// or _full_gc being false |
1 | 141 |
if (_full_gc) { |
18025 | 142 |
if (!collect()) { |
143 |
// The collection attempt was skipped because the gc locker is held. |
|
144 |
// The following dump may then be a tad misleading to someone expecting |
|
145 |
// only live objects to show up in the dump (see CR 6944195). Just issue |
|
146 |
// a suitable warning in that case and do not attempt to do a collection. |
|
147 |
// The latter is a subtle point, because even a failed attempt |
|
148 |
// to GC will, in fact, induce one in the future, which we |
|
149 |
// probably want to avoid in this case because the GC that we may |
|
150 |
// be about to attempt holds value for us only |
|
151 |
// if it happens now and not if it happens in the eventual |
|
152 |
// future. |
|
37073
c39d0903390b
8151605: Change warning() to log_warning(gc) in the GC code
brutisso
parents:
35492
diff
changeset
|
153 |
log_warning(gc)("GC locker is held; pre-dump GC was skipped"); |
5348
5141d36180d5
6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents:
2141
diff
changeset
|
154 |
} |
1 | 155 |
} |
15437 | 156 |
HeapInspection inspect(_csv_format, _print_help, _print_class_stats, |
157 |
_columns); |
|
18025 | 158 |
inspect.heap_inspection(_out); |
1 | 159 |
} |
160 |
||
161 |
||
162 |
void VM_GenCollectForAllocation::doit() { |
|
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7397
diff
changeset
|
163 |
SvcGCMarker sgcm(SvcGCMarker::MINOR); |
1 | 164 |
|
165 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
166 |
GCCauseSetter gccs(gch, _gc_cause); |
|
29079
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
25908
diff
changeset
|
167 |
_result = gch->satisfy_failed_allocation(_word_size, _tlab); |
832d35c45d0b
8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents:
25908
diff
changeset
|
168 |
assert(gch->is_in_reserved_or_null(_result), "result not in heap"); |
1 | 169 |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35227
diff
changeset
|
170 |
if (_result == NULL && GCLocker::is_active_and_needs_gc()) { |
1 | 171 |
set_gc_locked(); |
172 |
} |
|
173 |
} |
|
174 |
||
175 |
void VM_GenCollectFull::doit() { |
|
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7397
diff
changeset
|
176 |
SvcGCMarker sgcm(SvcGCMarker::FULL); |
1 | 177 |
|
178 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
179 |
GCCauseSetter gccs(gch, _gc_cause); |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
31331
diff
changeset
|
180 |
gch->do_full_collection(gch->must_clear_all_soft_refs(), _max_generation); |
1 | 181 |
} |
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
|
182 |
|
35227
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
183 |
VM_CollectForMetadataAllocation::VM_CollectForMetadataAllocation(ClassLoaderData* loader_data, |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
184 |
size_t size, |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
185 |
Metaspace::MetadataType mdtype, |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
186 |
uint gc_count_before, |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
187 |
uint full_gc_count_before, |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
188 |
GCCause::Cause gc_cause) |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
189 |
: VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true), |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
190 |
_loader_data(loader_data), _size(size), _mdtype(mdtype), _result(NULL) { |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
191 |
assert(_size != 0, "An allocation should always be requested with this operation."); |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
192 |
AllocTracer::send_allocation_requiring_gc_event(_size * HeapWordSize, GCId::peek()); |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
193 |
} |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
194 |
|
25908
8adb2fb6fc3c
8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents:
25622
diff
changeset
|
195 |
// Returns true iff concurrent GCs unloads metadata. |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
196 |
bool VM_CollectForMetadataAllocation::initiate_concurrent_GC() { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
197 |
#if INCLUDE_ALL_GCS |
25622
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
198 |
if (UseConcMarkSweepGC && CMSClassUnloadingEnabled) { |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
199 |
MetaspaceGC::set_should_concurrent_collect(true); |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
200 |
return true; |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
201 |
} |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
202 |
|
25908
8adb2fb6fc3c
8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents:
25622
diff
changeset
|
203 |
if (UseG1GC && ClassUnloadingWithConcurrentMark) { |
25622
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
204 |
G1CollectedHeap* g1h = G1CollectedHeap::heap(); |
31331
a7c714b6cfb3
7097567: G1: abstract and encapsulate collector phases and transitions between them
drwhite
parents:
30764
diff
changeset
|
205 |
g1h->g1_policy()->collector_state()->set_initiate_conc_mark_if_possible(true); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
206 |
|
25622
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
207 |
GCCauseSetter x(g1h, _gc_cause); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
208 |
|
25622
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
209 |
// At this point we are supposed to start a concurrent cycle. We |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
210 |
// will do so if one is not already in progress. |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
211 |
bool should_start = g1h->g1_policy()->force_initial_mark_if_outside_cycle(_gc_cause); |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
212 |
|
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
213 |
if (should_start) { |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
214 |
double pause_target = g1h->g1_policy()->max_pause_time_ms(); |
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
215 |
g1h->do_collection_pause_at_safepoint(pause_target); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
216 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
217 |
return true; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
218 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
219 |
#endif |
25622
058307bdb07c
8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents:
25492
diff
changeset
|
220 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
221 |
return false; |
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 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
224 |
void VM_CollectForMetadataAllocation::doit() { |
7896
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7397
diff
changeset
|
225 |
SvcGCMarker sgcm(SvcGCMarker::FULL); |
08aadd7aa3ee
6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents:
7397
diff
changeset
|
226 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
227 |
CollectedHeap* heap = Universe::heap(); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
228 |
GCCauseSetter gccs(heap, _gc_cause); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
229 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
230 |
// Check again if the space is available. Another thread |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
231 |
// may have similarly failed a metadata allocation and induced |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
232 |
// a GC that freed space for the allocation. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
233 |
if (!MetadataAllocationFailALot) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
234 |
_result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
235 |
if (_result != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
236 |
return; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
237 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
386
diff
changeset
|
238 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10739
diff
changeset
|
239 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
240 |
if (initiate_concurrent_GC()) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
241 |
// For CMS and G1 expand since the collection is going to be concurrent. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
242 |
_result = _loader_data->metaspace_non_null()->expand_and_allocate(_size, _mdtype); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
243 |
if (_result != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
244 |
return; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
245 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
246 |
|
35061 | 247 |
log_debug(gc)("%s full GC for Metaspace", UseConcMarkSweepGC ? "CMS" : "G1"); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
248 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
249 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
250 |
// Don't clear the soft refs yet. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
251 |
heap->collect_as_vm_thread(GCCause::_metadata_GC_threshold); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
252 |
// After a GC try to allocate without expanding. Could fail |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
253 |
// and expansion will be tried below. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
254 |
_result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
255 |
if (_result != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
256 |
return; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
257 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
258 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
259 |
// If still failing, allow the Metaspace to expand. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
260 |
// See delta_capacity_until_GC() for explanation of the |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
261 |
// amount of the expansion. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
262 |
// This should work unless there really is no more space |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
263 |
// or a MaxMetaspaceSize has been specified on the command line. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
264 |
_result = _loader_data->metaspace_non_null()->expand_and_allocate(_size, _mdtype); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
265 |
if (_result != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
266 |
return; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
267 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
268 |
|
37149
f025738bbada
8152113: Remove _last_ditch_collection GC-cause and avoid expanding heap on Metaspace OOM
sjohanss
parents:
37129
diff
changeset
|
269 |
// If expansion failed, do a collection clearing soft references. |
f025738bbada
8152113: Remove _last_ditch_collection GC-cause and avoid expanding heap on Metaspace OOM
sjohanss
parents:
37129
diff
changeset
|
270 |
heap->collect_as_vm_thread(GCCause::_metadata_GC_clear_soft_refs); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
271 |
_result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
272 |
if (_result != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
273 |
return; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
274 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
275 |
|
35061 | 276 |
log_debug(gc)("After Metaspace GC failed to allocate size " SIZE_FORMAT, _size); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
277 |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35227
diff
changeset
|
278 |
if (GCLocker::is_active_and_needs_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
|
279 |
set_gc_locked(); |
7f121b1192f2
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents:
1
diff
changeset
|
280 |
} |
7f121b1192f2
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents:
1
diff
changeset
|
281 |
} |
35227
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
282 |
|
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
283 |
VM_CollectForAllocation::VM_CollectForAllocation(size_t word_size, uint gc_count_before, GCCause::Cause cause) |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
284 |
: VM_GC_Operation(gc_count_before, cause), _result(NULL), _word_size(word_size) { |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
285 |
// Only report if operation was really caused by an allocation. |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
286 |
if (_word_size != 0) { |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
287 |
AllocTracer::send_allocation_requiring_gc_event(_word_size * HeapWordSize, GCId::peek()); |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
288 |
} |
176e593eb364
8065331: Add trace events for failed allocations
mlarsson
parents:
35061
diff
changeset
|
289 |
} |