author | sjohanss |
Wed, 02 May 2018 13:44:46 +0200 | |
changeset 49945 | 9425445633cf |
parent 49851 | 9082914ccaf2 |
child 50057 | f945444fabc3 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48168
diff
changeset
|
2 |
* Copyright (c) 2001, 2018, 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:
5544
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5544
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:
5544
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/systemDictionary.hpp" |
|
30764 | 27 |
#include "gc/shared/allocTracer.hpp" |
49484
ee8fa73b90f9
8198949: Modularize arraycopy stub routine GC barriers
eosterlund
parents:
49468
diff
changeset
|
28 |
#include "gc/shared/barrierSet.hpp" |
30764 | 29 |
#include "gc/shared/collectedHeap.hpp" |
30 |
#include "gc/shared/collectedHeap.inline.hpp" |
|
49045
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
31 |
#include "gc/shared/gcLocker.inline.hpp" |
30764 | 32 |
#include "gc/shared/gcHeapSummary.hpp" |
33 |
#include "gc/shared/gcTrace.hpp" |
|
35061 | 34 |
#include "gc/shared/gcTraceTime.inline.hpp" |
30764 | 35 |
#include "gc/shared/gcWhen.hpp" |
36 |
#include "gc/shared/vmGCOperations.hpp" |
|
35061 | 37 |
#include "logging/log.hpp" |
18025 | 38 |
#include "memory/metaspace.hpp" |
37248 | 39 |
#include "memory/resourceArea.hpp" |
30764 | 40 |
#include "oops/instanceMirrorKlass.hpp" |
7397 | 41 |
#include "oops/oop.inline.hpp" |
49361
1956d0ec092a
8199319: Remove handles.inline.hpp include from reflectionUtils.hpp
stefank
parents:
49045
diff
changeset
|
42 |
#include "runtime/handles.inline.hpp" |
7397 | 43 |
#include "runtime/init.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13738
diff
changeset
|
44 |
#include "runtime/thread.inline.hpp" |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
45 |
#include "runtime/threadSMR.hpp" |
49045
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
46 |
#include "runtime/vmThread.hpp" |
7397 | 47 |
#include "services/heapDumper.hpp" |
46625 | 48 |
#include "utilities/align.hpp" |
1 | 49 |
|
49045
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
50 |
class ClassLoaderData; |
1 | 51 |
|
52 |
#ifdef ASSERT |
|
53 |
int CollectedHeap::_fire_out_of_memory_count = 0; |
|
54 |
#endif |
|
55 |
||
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
56 |
size_t CollectedHeap::_filler_array_max_size = 0; |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
57 |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
58 |
template <> |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
59 |
void EventLogBase<GCMessage>::print(outputStream* st, GCMessage& m) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
60 |
st->print_cr("GC heap %s", m.is_before ? "before" : "after"); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
61 |
st->print_raw(m); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
62 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
63 |
|
35061 | 64 |
void GCHeapLog::log_heap(CollectedHeap* heap, bool before) { |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
65 |
if (!should_log()) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
66 |
return; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
67 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
68 |
|
11788 | 69 |
double timestamp = fetch_timestamp(); |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
70 |
MutexLockerEx ml(&_mutex, Mutex::_no_safepoint_check_flag); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
71 |
int index = compute_log_index(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
72 |
_records[index].thread = NULL; // Its the GC thread so it's not that interesting. |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
73 |
_records[index].timestamp = timestamp; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
74 |
_records[index].data.is_before = before; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
75 |
stringStream st(_records[index].data.buffer(), _records[index].data.size()); |
35061 | 76 |
|
77 |
st.print_cr("{Heap %s GC invocations=%u (full %u):", |
|
78 |
before ? "before" : "after", |
|
79 |
heap->total_collections(), |
|
80 |
heap->total_full_collections()); |
|
81 |
||
82 |
heap->print_on(&st); |
|
83 |
st.print_cr("}"); |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
84 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
85 |
|
18025 | 86 |
VirtualSpaceSummary CollectedHeap::create_heap_space_summary() { |
87 |
size_t capacity_in_words = capacity() / HeapWordSize; |
|
88 |
||
89 |
return VirtualSpaceSummary( |
|
90 |
reserved_region().start(), reserved_region().start() + capacity_in_words, reserved_region().end()); |
|
91 |
} |
|
92 |
||
93 |
GCHeapSummary CollectedHeap::create_heap_summary() { |
|
94 |
VirtualSpaceSummary heap_space = create_heap_space_summary(); |
|
95 |
return GCHeapSummary(heap_space, used()); |
|
96 |
} |
|
97 |
||
98 |
MetaspaceSummary CollectedHeap::create_metaspace_summary() { |
|
99 |
const MetaspaceSizes meta_space( |
|
49389
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
100 |
MetaspaceUtils::committed_bytes(), |
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
101 |
MetaspaceUtils::used_bytes(), |
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
102 |
MetaspaceUtils::reserved_bytes()); |
18025 | 103 |
const MetaspaceSizes data_space( |
49389
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
104 |
MetaspaceUtils::committed_bytes(Metaspace::NonClassType), |
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
105 |
MetaspaceUtils::used_bytes(Metaspace::NonClassType), |
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
106 |
MetaspaceUtils::reserved_bytes(Metaspace::NonClassType)); |
18025 | 107 |
const MetaspaceSizes class_space( |
49389
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
108 |
MetaspaceUtils::committed_bytes(Metaspace::ClassType), |
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
109 |
MetaspaceUtils::used_bytes(Metaspace::ClassType), |
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
110 |
MetaspaceUtils::reserved_bytes(Metaspace::ClassType)); |
18025 | 111 |
|
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
112 |
const MetaspaceChunkFreeListSummary& ms_chunk_free_list_summary = |
49389
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
113 |
MetaspaceUtils::chunk_free_list_summary(Metaspace::NonClassType); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
114 |
const MetaspaceChunkFreeListSummary& class_chunk_free_list_summary = |
49389
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49361
diff
changeset
|
115 |
MetaspaceUtils::chunk_free_list_summary(Metaspace::ClassType); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
116 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
117 |
return MetaspaceSummary(MetaspaceGC::capacity_until_GC(), meta_space, data_space, class_space, |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
118 |
ms_chunk_free_list_summary, class_chunk_free_list_summary); |
18025 | 119 |
} |
120 |
||
121 |
void CollectedHeap::print_heap_before_gc() { |
|
35061 | 122 |
Universe::print_heap_before_gc(); |
18025 | 123 |
if (_gc_heap_log != NULL) { |
35061 | 124 |
_gc_heap_log->log_heap_before(this); |
18025 | 125 |
} |
126 |
} |
|
127 |
||
128 |
void CollectedHeap::print_heap_after_gc() { |
|
35061 | 129 |
Universe::print_heap_after_gc(); |
18025 | 130 |
if (_gc_heap_log != NULL) { |
35061 | 131 |
_gc_heap_log->log_heap_after(this); |
18025 | 132 |
} |
133 |
} |
|
134 |
||
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
135 |
void CollectedHeap::print_on_error(outputStream* st) const { |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
136 |
st->print_cr("Heap:"); |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
137 |
print_extended_on(st); |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
138 |
st->cr(); |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
139 |
|
49754 | 140 |
BarrierSet::barrier_set()->print_on(st); |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
141 |
} |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
142 |
|
28940
c314cf1db3fa
8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents:
26829
diff
changeset
|
143 |
void CollectedHeap::trace_heap(GCWhen::Type when, const GCTracer* gc_tracer) { |
18025 | 144 |
const GCHeapSummary& heap_summary = create_heap_summary(); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
145 |
gc_tracer->report_gc_heap_summary(when, heap_summary); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
146 |
|
18025 | 147 |
const MetaspaceSummary& metaspace_summary = create_metaspace_summary(); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
148 |
gc_tracer->report_metaspace_summary(when, metaspace_summary); |
18025 | 149 |
} |
150 |
||
28940
c314cf1db3fa
8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents:
26829
diff
changeset
|
151 |
void CollectedHeap::trace_heap_before_gc(const GCTracer* gc_tracer) { |
18025 | 152 |
trace_heap(GCWhen::BeforeGC, gc_tracer); |
153 |
} |
|
154 |
||
28940
c314cf1db3fa
8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents:
26829
diff
changeset
|
155 |
void CollectedHeap::trace_heap_after_gc(const GCTracer* gc_tracer) { |
18025 | 156 |
trace_heap(GCWhen::AfterGC, gc_tracer); |
157 |
} |
|
158 |
||
46384
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
159 |
// WhiteBox API support for concurrent collectors. These are the |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
160 |
// default implementations, for collectors which don't support this |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
161 |
// feature. |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
162 |
bool CollectedHeap::supports_concurrent_phase_control() const { |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
163 |
return false; |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
164 |
} |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
165 |
|
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
166 |
const char* const* CollectedHeap::concurrent_phases() const { |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
167 |
static const char* const result[] = { NULL }; |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
168 |
return result; |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
169 |
} |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
170 |
|
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
171 |
bool CollectedHeap::request_concurrent_phase(const char* phase) { |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
172 |
return false; |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
173 |
} |
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46329
diff
changeset
|
174 |
|
49851 | 175 |
bool CollectedHeap::is_oop(oop object) const { |
176 |
if (!check_obj_alignment(object)) { |
|
177 |
return false; |
|
178 |
} |
|
179 |
||
180 |
if (!is_in_reserved(object)) { |
|
181 |
return false; |
|
182 |
} |
|
183 |
||
184 |
if (is_in_reserved(object->klass_or_null())) { |
|
185 |
return false; |
|
186 |
} |
|
187 |
||
188 |
return true; |
|
189 |
} |
|
190 |
||
1 | 191 |
// Memory state functions. |
192 |
||
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5702
diff
changeset
|
193 |
|
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
194 |
CollectedHeap::CollectedHeap() : |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
195 |
_is_gc_active(false), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
196 |
_total_collections(0), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
197 |
_total_full_collections(0), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
198 |
_gc_cause(GCCause::_no_gc), |
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48168
diff
changeset
|
199 |
_gc_lastcause(GCCause::_no_gc) |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
200 |
{ |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
201 |
const size_t max_len = size_t(arrayOopDesc::max_array_length(T_INT)); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
202 |
const size_t elements_per_word = HeapWordSize / sizeof(jint); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
203 |
_filler_array_max_size = align_object_size(filler_array_hdr_size() + |
12229
c34a85c8f5aa
7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
brutisso
parents:
11788
diff
changeset
|
204 |
max_len / elements_per_word); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
205 |
|
1 | 206 |
NOT_PRODUCT(_promotion_failure_alot_count = 0;) |
207 |
NOT_PRODUCT(_promotion_failure_alot_gc_number = 0;) |
|
208 |
||
209 |
if (UsePerfData) { |
|
210 |
EXCEPTION_MARK; |
|
211 |
||
212 |
// create the gc cause jvmstat counters |
|
213 |
_perf_gc_cause = PerfDataManager::create_string_variable(SUN_GC, "cause", |
|
214 |
80, GCCause::to_string(_gc_cause), CHECK); |
|
215 |
||
216 |
_perf_gc_lastcause = |
|
217 |
PerfDataManager::create_string_variable(SUN_GC, "lastCause", |
|
218 |
80, GCCause::to_string(_gc_lastcause), CHECK); |
|
219 |
} |
|
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
220 |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
221 |
// Create the ring log |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
222 |
if (LogEvents) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
223 |
_gc_heap_log = new GCHeapLog(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
224 |
} else { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
225 |
_gc_heap_log = NULL; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
226 |
} |
1 | 227 |
} |
228 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
229 |
// This interface assumes that it's being called by the |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
230 |
// vm thread. It collects the heap assuming that the |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
231 |
// heap lock is already held and that we are executing in |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
232 |
// the context of the vm thread. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
233 |
void CollectedHeap::collect_as_vm_thread(GCCause::Cause cause) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
234 |
assert(Thread::current()->is_VM_thread(), "Precondition#1"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
235 |
assert(Heap_lock->is_locked(), "Precondition#2"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
236 |
GCCauseSetter gcs(this, cause); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
237 |
switch (cause) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
238 |
case GCCause::_heap_inspection: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
239 |
case GCCause::_heap_dump: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
240 |
case GCCause::_metadata_GC_threshold : { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
241 |
HandleMark hm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
242 |
do_full_collection(false); // don't clear all soft refs |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
243 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
244 |
} |
37149
f025738bbada
8152113: Remove _last_ditch_collection GC-cause and avoid expanding heap on Metaspace OOM
sjohanss
parents:
36363
diff
changeset
|
245 |
case GCCause::_metadata_GC_clear_soft_refs: { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
246 |
HandleMark hm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
247 |
do_full_collection(true); // do clear all soft refs |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
248 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
249 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
250 |
default: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
251 |
ShouldNotReachHere(); // Unexpected use of this function |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
252 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
253 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
254 |
|
49045
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
255 |
MetaWord* CollectedHeap::satisfy_failed_metadata_allocation(ClassLoaderData* loader_data, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
256 |
size_t word_size, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
257 |
Metaspace::MetadataType mdtype) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
258 |
uint loop_count = 0; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
259 |
uint gc_count = 0; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
260 |
uint full_gc_count = 0; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
261 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
262 |
assert(!Heap_lock->owned_by_self(), "Should not be holding the Heap_lock"); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
263 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
264 |
do { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
265 |
MetaWord* result = loader_data->metaspace_non_null()->allocate(word_size, mdtype); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
266 |
if (result != NULL) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
267 |
return result; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
268 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
269 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
270 |
if (GCLocker::is_active_and_needs_gc()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
271 |
// If the GCLocker is active, just expand and allocate. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
272 |
// If that does not succeed, wait if this thread is not |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
273 |
// in a critical section itself. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
274 |
result = loader_data->metaspace_non_null()->expand_and_allocate(word_size, mdtype); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
275 |
if (result != NULL) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
276 |
return result; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
277 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
278 |
JavaThread* jthr = JavaThread::current(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
279 |
if (!jthr->in_critical()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
280 |
// Wait for JNI critical section to be exited |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
281 |
GCLocker::stall_until_clear(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
282 |
// The GC invoked by the last thread leaving the critical |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
283 |
// section will be a young collection and a full collection |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
284 |
// is (currently) needed for unloading classes so continue |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
285 |
// to the next iteration to get a full GC. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
286 |
continue; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
287 |
} else { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
288 |
if (CheckJNICalls) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
289 |
fatal("Possible deadlock due to allocating while" |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
290 |
" in jni critical section"); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
291 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
292 |
return NULL; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
293 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
294 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
295 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
296 |
{ // Need lock to get self consistent gc_count's |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
297 |
MutexLocker ml(Heap_lock); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
298 |
gc_count = Universe::heap()->total_collections(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
299 |
full_gc_count = Universe::heap()->total_full_collections(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
300 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
301 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
302 |
// Generate a VM operation |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
303 |
VM_CollectForMetadataAllocation op(loader_data, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
304 |
word_size, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
305 |
mdtype, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
306 |
gc_count, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
307 |
full_gc_count, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
308 |
GCCause::_metadata_GC_threshold); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
309 |
VMThread::execute(&op); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
310 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
311 |
// If GC was locked out, try again. Check before checking success because the |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
312 |
// prologue could have succeeded and the GC still have been locked out. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
313 |
if (op.gc_locked()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
314 |
continue; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
315 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
316 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
317 |
if (op.prologue_succeeded()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
318 |
return op.result(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
319 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
320 |
loop_count++; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
321 |
if ((QueuedAllocationWarningCount > 0) && |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
322 |
(loop_count % QueuedAllocationWarningCount == 0)) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
323 |
log_warning(gc, ergo)("satisfy_failed_metadata_allocation() retries %d times," |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
324 |
" size=" SIZE_FORMAT, loop_count, word_size); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
325 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
326 |
} while (true); // Until a GC is done |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
327 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
328 |
|
1 | 329 |
#ifndef PRODUCT |
330 |
void CollectedHeap::check_for_bad_heap_word_value(HeapWord* addr, size_t size) { |
|
331 |
if (CheckMemoryInitialization && ZapUnusedHeapArea) { |
|
332 |
for (size_t slot = 0; slot < size; slot += 1) { |
|
333 |
assert((*(intptr_t*) (addr + slot)) != ((intptr_t) badHeapWordVal), |
|
334 |
"Found badHeapWordValue in post-allocation check"); |
|
335 |
} |
|
336 |
} |
|
337 |
} |
|
338 |
||
8296
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
7397
diff
changeset
|
339 |
void CollectedHeap::check_for_non_bad_heap_word_value(HeapWord* addr, size_t size) { |
1 | 340 |
if (CheckMemoryInitialization && ZapUnusedHeapArea) { |
341 |
for (size_t slot = 0; slot < size; slot += 1) { |
|
342 |
assert((*(intptr_t*) (addr + slot)) == ((intptr_t) badHeapWordVal), |
|
343 |
"Found non badHeapWordValue in pre-allocation check"); |
|
344 |
} |
|
345 |
} |
|
346 |
} |
|
347 |
#endif // PRODUCT |
|
348 |
||
349 |
#ifdef ASSERT |
|
350 |
void CollectedHeap::check_for_valid_allocation_state() { |
|
351 |
Thread *thread = Thread::current(); |
|
352 |
// How to choose between a pending exception and a potential |
|
353 |
// OutOfMemoryError? Don't allow pending exceptions. |
|
354 |
// This is a VM policy failure, so how do we exhaustively test it? |
|
355 |
assert(!thread->has_pending_exception(), |
|
356 |
"shouldn't be allocating with pending exception"); |
|
357 |
if (StrictSafepointChecks) { |
|
358 |
assert(thread->allow_allocation(), |
|
359 |
"Allocation done by thread for which allocation is blocked " |
|
360 |
"by No_Allocation_Verifier!"); |
|
361 |
// Allocation of an oop can always invoke a safepoint, |
|
362 |
// hence, the true argument |
|
363 |
thread->check_for_valid_safepoint_state(true); |
|
364 |
} |
|
365 |
} |
|
366 |
#endif |
|
367 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43455
diff
changeset
|
368 |
HeapWord* CollectedHeap::allocate_from_tlab_slow(Klass* klass, Thread* thread, size_t size) { |
1 | 369 |
|
370 |
// Retain tlab and allocate object in shared space if |
|
371 |
// the amount free in the tlab is too large to discard. |
|
372 |
if (thread->tlab().free() > thread->tlab().refill_waste_limit()) { |
|
373 |
thread->tlab().record_slow_allocation(size); |
|
374 |
return NULL; |
|
375 |
} |
|
376 |
||
377 |
// Discard tlab and allocate a new one. |
|
378 |
// To minimize fragmentation, the last TLAB may be smaller than the rest. |
|
379 |
size_t new_tlab_size = thread->tlab().compute_size(size); |
|
380 |
||
381 |
thread->tlab().clear_before_allocation(); |
|
382 |
||
383 |
if (new_tlab_size == 0) { |
|
384 |
return NULL; |
|
385 |
} |
|
386 |
||
49945 | 387 |
// Allocate a new TLAB requesting new_tlab_size. Any size |
388 |
// between minimal and new_tlab_size is accepted. |
|
389 |
size_t actual_tlab_size = 0; |
|
390 |
size_t min_tlab_size = ThreadLocalAllocBuffer::compute_min_size(size); |
|
391 |
HeapWord* obj = Universe::heap()->allocate_new_tlab(min_tlab_size, new_tlab_size, &actual_tlab_size); |
|
1 | 392 |
if (obj == NULL) { |
49945 | 393 |
assert(actual_tlab_size == 0, "Allocation failed, but actual size was updated. min: " SIZE_FORMAT ", desired: " SIZE_FORMAT ", actual: " SIZE_FORMAT, |
394 |
min_tlab_size, new_tlab_size, actual_tlab_size); |
|
1 | 395 |
return NULL; |
396 |
} |
|
49945 | 397 |
assert(actual_tlab_size != 0, "Allocation succeeded but actual size not updated. obj at: " PTR_FORMAT " min: " SIZE_FORMAT ", desired: " SIZE_FORMAT, |
398 |
p2i(obj), min_tlab_size, new_tlab_size); |
|
18025 | 399 |
|
49945 | 400 |
AllocTracer::send_allocation_in_new_tlab(klass, obj, actual_tlab_size * HeapWordSize, size * HeapWordSize, thread); |
18025 | 401 |
|
1 | 402 |
if (ZeroTLAB) { |
403 |
// ..and clear it. |
|
49945 | 404 |
Copy::zero_to_words(obj, actual_tlab_size); |
1 | 405 |
} else { |
10501 | 406 |
// ...and zap just allocated object. |
407 |
#ifdef ASSERT |
|
408 |
// Skip mangling the space corresponding to the object header to |
|
409 |
// ensure that the returned space is not considered parsable by |
|
410 |
// any concurrent GC thread. |
|
411 |
size_t hdr_size = oopDesc::header_size(); |
|
49945 | 412 |
Copy::fill_to_words(obj + hdr_size, actual_tlab_size - hdr_size, badHeapWordVal); |
10501 | 413 |
#endif // ASSERT |
1 | 414 |
} |
49945 | 415 |
thread->tlab().fill(obj, obj + size, actual_tlab_size); |
1 | 416 |
return obj; |
417 |
} |
|
418 |
||
22552 | 419 |
size_t CollectedHeap::max_tlab_size() const { |
420 |
// TLABs can't be bigger than we can fill with a int[Integer.MAX_VALUE]. |
|
421 |
// This restriction could be removed by enabling filling with multiple arrays. |
|
422 |
// If we compute that the reasonable way as |
|
423 |
// header_size + ((sizeof(jint) * max_jint) / HeapWordSize) |
|
424 |
// we'll overflow on the multiply, so we do the divide first. |
|
425 |
// We actually lose a little by dividing first, |
|
426 |
// but that just makes the TLAB somewhat smaller than the biggest array, |
|
427 |
// which is fine, since we'll be able to fill that. |
|
428 |
size_t max_int_size = typeArrayOopDesc::header_size(T_INT) + |
|
429 |
sizeof(jint) * |
|
430 |
((juint) max_jint / (size_t) HeapWordSize); |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
431 |
return align_down(max_int_size, MinObjAlignment); |
22552 | 432 |
} |
433 |
||
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
434 |
size_t CollectedHeap::filler_array_hdr_size() { |
46618
d503911aa948
8178489: Make align functions more type safe and consistent
stefank
parents:
46384
diff
changeset
|
435 |
return align_object_offset(arrayOopDesc::header_size(T_INT)); // align to Long |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
436 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
437 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
438 |
size_t CollectedHeap::filler_array_min_size() { |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
5544
diff
changeset
|
439 |
return align_object_size(filler_array_hdr_size()); // align to MinObjAlignment |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
440 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
441 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
442 |
#ifdef ASSERT |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
443 |
void CollectedHeap::fill_args_check(HeapWord* start, size_t words) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
444 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
445 |
assert(words >= min_fill_size(), "too small to fill"); |
46683
33808f7eadd5
8184753: Asserts against MinObjectAlignment should avoid integer division
shade
parents:
46625
diff
changeset
|
446 |
assert(is_object_aligned(words), "unaligned size"); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
447 |
assert(Universe::heap()->is_in_reserved(start), "not in heap"); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
448 |
assert(Universe::heap()->is_in_reserved(start + words - 1), "not in heap"); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
449 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
450 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
451 |
void CollectedHeap::zap_filler_array(HeapWord* start, size_t words, bool zap) |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
452 |
{ |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
453 |
if (ZapFillerObjects && zap) { |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
454 |
Copy::fill_to_words(start + filler_array_hdr_size(), |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
455 |
words - filler_array_hdr_size(), 0XDEAFBABE); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
456 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
457 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
458 |
#endif // ASSERT |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
459 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
460 |
void |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
461 |
CollectedHeap::fill_with_array(HeapWord* start, size_t words, bool zap) |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
462 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
463 |
assert(words >= filler_array_min_size(), "too small for an array"); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
464 |
assert(words <= filler_array_max_size(), "too big for a single object"); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
465 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
466 |
const size_t payload_size = words - filler_array_hdr_size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
467 |
const size_t len = payload_size * HeapWordSize / sizeof(jint); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32623
diff
changeset
|
468 |
assert((int)len >= 0, "size too large " SIZE_FORMAT " becomes %d", words, (int)len); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
469 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
470 |
// Set the length first for concurrent GC. |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
471 |
((arrayOop)start)->set_length((int)len); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
12229
diff
changeset
|
472 |
post_allocation_setup_common(Universe::intArrayKlassObj(), start); |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
473 |
DEBUG_ONLY(zap_filler_array(start, words, zap);) |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
474 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
475 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
476 |
void |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
477 |
CollectedHeap::fill_with_object_impl(HeapWord* start, size_t words, bool zap) |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
478 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
479 |
assert(words <= filler_array_max_size(), "too big for a single object"); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
480 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
481 |
if (words >= filler_array_min_size()) { |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
482 |
fill_with_array(start, words, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
483 |
} else if (words > 0) { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
484 |
assert(words == min_fill_size(), "unaligned size"); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
12229
diff
changeset
|
485 |
post_allocation_setup_common(SystemDictionary::Object_klass(), start); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
486 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
487 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
488 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
489 |
void CollectedHeap::fill_with_object(HeapWord* start, size_t words, bool zap) |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
490 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
491 |
DEBUG_ONLY(fill_args_check(start, words);) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
492 |
HandleMark hm; // Free handles before leaving. |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
493 |
fill_with_object_impl(start, words, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
494 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
495 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
496 |
void CollectedHeap::fill_with_objects(HeapWord* start, size_t words, bool zap) |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
497 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
498 |
DEBUG_ONLY(fill_args_check(start, words);) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
499 |
HandleMark hm; // Free handles before leaving. |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
500 |
|
31603
4bd3b4863e10
8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents:
30870
diff
changeset
|
501 |
// Multiple objects may be required depending on the filler array maximum size. Fill |
4bd3b4863e10
8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents:
30870
diff
changeset
|
502 |
// the range up to that with objects that are filler_array_max_size sized. The |
4bd3b4863e10
8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents:
30870
diff
changeset
|
503 |
// remainder is filled with a single object. |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
504 |
const size_t min = min_fill_size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
505 |
const size_t max = filler_array_max_size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
506 |
while (words > max) { |
31603
4bd3b4863e10
8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents:
30870
diff
changeset
|
507 |
const size_t cur = (words - max) >= min ? max : max - min; |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
508 |
fill_with_array(start, cur, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
509 |
start += cur; |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
510 |
words -= cur; |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
511 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
512 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
513 |
fill_with_object_impl(start, words, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
514 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
515 |
|
49945 | 516 |
HeapWord* CollectedHeap::allocate_new_tlab(size_t min_size, |
517 |
size_t requested_size, |
|
518 |
size_t* actual_size) { |
|
1 | 519 |
guarantee(false, "thread-local allocation buffers not supported"); |
520 |
return NULL; |
|
521 |
} |
|
522 |
||
523 |
void CollectedHeap::ensure_parsability(bool retire_tlabs) { |
|
524 |
// The second disjunct in the assertion below makes a concession |
|
525 |
// for the start-up verification done while the VM is being |
|
526 |
// created. Callers be careful that you know that mutators |
|
527 |
// aren't going to interfere -- for instance, this is permissible |
|
528 |
// if we are still single-threaded and have either not yet |
|
529 |
// started allocating (nothing much to verify) or we have |
|
530 |
// started allocating but are now a full-fledged JavaThread |
|
531 |
// (and have thus made our TLAB's) available for filling. |
|
532 |
assert(SafepointSynchronize::is_at_safepoint() || |
|
533 |
!is_init_completed(), |
|
534 |
"Should only be called at a safepoint or at start-up" |
|
535 |
" otherwise concurrent mutator activity may make heap " |
|
536 |
" unparsable again"); |
|
4637 | 537 |
const bool use_tlab = UseTLAB; |
538 |
// The main thread starts allocating via a TLAB even before it |
|
539 |
// has added itself to the threads list at vm boot-up. |
|
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
540 |
JavaThreadIteratorWithHandle jtiwh; |
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
541 |
assert(!use_tlab || jtiwh.length() > 0, |
4637 | 542 |
"Attempt to fill tlabs before main thread has been added" |
543 |
" to threads list is doomed to failure!"); |
|
49754 | 544 |
BarrierSet *bs = BarrierSet::barrier_set(); |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
545 |
for (; JavaThread *thread = jtiwh.next(); ) { |
4637 | 546 |
if (use_tlab) thread->tlab().make_parsable(retire_tlabs); |
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48168
diff
changeset
|
547 |
bs->make_parsable(thread); |
1 | 548 |
} |
549 |
} |
|
550 |
||
551 |
void CollectedHeap::accumulate_statistics_all_tlabs() { |
|
552 |
if (UseTLAB) { |
|
553 |
assert(SafepointSynchronize::is_at_safepoint() || |
|
554 |
!is_init_completed(), |
|
555 |
"should only accumulate statistics on tlabs at safepoint"); |
|
556 |
||
557 |
ThreadLocalAllocBuffer::accumulate_statistics_before_gc(); |
|
558 |
} |
|
559 |
} |
|
560 |
||
561 |
void CollectedHeap::resize_all_tlabs() { |
|
562 |
if (UseTLAB) { |
|
563 |
assert(SafepointSynchronize::is_at_safepoint() || |
|
564 |
!is_init_completed(), |
|
565 |
"should only resize tlabs at safepoint"); |
|
566 |
||
567 |
ThreadLocalAllocBuffer::resize_all_tlabs(); |
|
568 |
} |
|
569 |
} |
|
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
570 |
|
35915
5808cd93abfc
8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents:
35529
diff
changeset
|
571 |
void CollectedHeap::full_gc_dump(GCTimer* timer, bool before) { |
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35915
diff
changeset
|
572 |
assert(timer != NULL, "timer is null"); |
35915
5808cd93abfc
8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents:
35529
diff
changeset
|
573 |
if ((HeapDumpBeforeFullGC && before) || (HeapDumpAfterFullGC && !before)) { |
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35915
diff
changeset
|
574 |
GCTraceTime(Info, gc) tm(before ? "Heap Dump (before full gc)" : "Heap Dump (after full gc)", timer); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
575 |
HeapDumper::dump_heap(); |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
576 |
} |
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35915
diff
changeset
|
577 |
|
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
578 |
LogTarget(Trace, gc, classhisto) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
579 |
if (lt.is_enabled()) { |
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35915
diff
changeset
|
580 |
GCTraceTime(Trace, gc, classhisto) tm(before ? "Class Histogram (before full gc)" : "Class Histogram (after full gc)", timer); |
35061 | 581 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
582 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
583 |
VM_GC_HeapInspection inspector(&ls, false /* ! full gc */); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
584 |
inspector.doit(); |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
585 |
} |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
586 |
} |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
587 |
|
35061 | 588 |
void CollectedHeap::pre_full_gc_dump(GCTimer* timer) { |
35915
5808cd93abfc
8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents:
35529
diff
changeset
|
589 |
full_gc_dump(timer, true); |
35061 | 590 |
} |
591 |
||
18025 | 592 |
void CollectedHeap::post_full_gc_dump(GCTimer* timer) { |
35915
5808cd93abfc
8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents:
35529
diff
changeset
|
593 |
full_gc_dump(timer, false); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
594 |
} |
10742 | 595 |
|
26829
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
596 |
void CollectedHeap::initialize_reserved_region(HeapWord *start, HeapWord *end) { |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
597 |
// It is important to do this in a way such that concurrent readers can't |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
598 |
// temporarily think something is in the heap. (Seen this happen in asserts.) |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
599 |
_reserved.set_word_size(0); |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
600 |
_reserved.set_start(start); |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
601 |
_reserved.set_end(end); |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
602 |
} |
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
603 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
604 |
void CollectedHeap::post_initialize() { |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
605 |
initialize_serviceability(); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
606 |
} |
49466 | 607 |
|
49593
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
608 |
#ifndef PRODUCT |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
609 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
610 |
bool CollectedHeap::promotion_should_fail(volatile size_t* count) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
611 |
// Access to count is not atomic; the value does not have to be exact. |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
612 |
if (PromotionFailureALot) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
613 |
const size_t gc_num = total_collections(); |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
614 |
const size_t elapsed_gcs = gc_num - _promotion_failure_alot_gc_number; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
615 |
if (elapsed_gcs >= PromotionFailureALotInterval) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
616 |
// Test for unsigned arithmetic wrap-around. |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
617 |
if (++*count >= PromotionFailureALotCount) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
618 |
*count = 0; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
619 |
return true; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
620 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
621 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
622 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
623 |
return false; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
624 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
625 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
626 |
bool CollectedHeap::promotion_should_fail() { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
627 |
return promotion_should_fail(&_promotion_failure_alot_count); |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
628 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
629 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
630 |
void CollectedHeap::reset_promotion_should_fail(volatile size_t* count) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
631 |
if (PromotionFailureALot) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
632 |
_promotion_failure_alot_gc_number = total_collections(); |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
633 |
*count = 0; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
634 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
635 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
636 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
637 |
void CollectedHeap::reset_promotion_should_fail() { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
638 |
reset_promotion_should_fail(&_promotion_failure_alot_count); |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
639 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
640 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
641 |
#endif // #ifndef PRODUCT |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
642 |
|
49669
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
643 |
bool CollectedHeap::supports_object_pinning() const { |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
644 |
return false; |
49466 | 645 |
} |
646 |
||
49669
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
647 |
oop CollectedHeap::pin_object(JavaThread* thread, oop obj) { |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
648 |
ShouldNotReachHere(); |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
649 |
return NULL; |
49466 | 650 |
} |
49669
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
651 |
|
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
652 |
void CollectedHeap::unpin_object(JavaThread* thread, oop obj) { |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
653 |
ShouldNotReachHere(); |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
654 |
} |