author | pliden |
Wed, 04 Apr 2018 11:59:47 +0200 | |
changeset 49669 | 3569b528972e |
parent 49593 | 4dd58ecc9912 |
child 49752 | 93d84f667d12 |
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 |
|
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
140 |
_barrier_set->print_on(st); |
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 |
|
1 | 175 |
// Memory state functions. |
176 |
||
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5702
diff
changeset
|
177 |
|
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
178 |
CollectedHeap::CollectedHeap() : |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
179 |
_barrier_set(NULL), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
180 |
_is_gc_active(false), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
181 |
_total_collections(0), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
182 |
_total_full_collections(0), |
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
183 |
_gc_cause(GCCause::_no_gc), |
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48168
diff
changeset
|
184 |
_gc_lastcause(GCCause::_no_gc) |
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
185 |
{ |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
186 |
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
|
187 |
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
|
188 |
_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
|
189 |
max_len / elements_per_word); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
190 |
|
1 | 191 |
NOT_PRODUCT(_promotion_failure_alot_count = 0;) |
192 |
NOT_PRODUCT(_promotion_failure_alot_gc_number = 0;) |
|
193 |
||
194 |
if (UsePerfData) { |
|
195 |
EXCEPTION_MARK; |
|
196 |
||
197 |
// create the gc cause jvmstat counters |
|
198 |
_perf_gc_cause = PerfDataManager::create_string_variable(SUN_GC, "cause", |
|
199 |
80, GCCause::to_string(_gc_cause), CHECK); |
|
200 |
||
201 |
_perf_gc_lastcause = |
|
202 |
PerfDataManager::create_string_variable(SUN_GC, "lastCause", |
|
203 |
80, GCCause::to_string(_gc_lastcause), CHECK); |
|
204 |
} |
|
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
31603
diff
changeset
|
205 |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
206 |
// Create the ring log |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
207 |
if (LogEvents) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
208 |
_gc_heap_log = new GCHeapLog(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
209 |
} else { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
210 |
_gc_heap_log = NULL; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11414
diff
changeset
|
211 |
} |
1 | 212 |
} |
213 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
214 |
// 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
|
215 |
// 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
|
216 |
// 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
|
217 |
// the context of the vm thread. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
218 |
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
|
219 |
assert(Thread::current()->is_VM_thread(), "Precondition#1"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
220 |
assert(Heap_lock->is_locked(), "Precondition#2"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
221 |
GCCauseSetter gcs(this, cause); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
222 |
switch (cause) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
223 |
case GCCause::_heap_inspection: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
224 |
case GCCause::_heap_dump: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
225 |
case GCCause::_metadata_GC_threshold : { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
226 |
HandleMark hm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
227 |
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
|
228 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
229 |
} |
37149
f025738bbada
8152113: Remove _last_ditch_collection GC-cause and avoid expanding heap on Metaspace OOM
sjohanss
parents:
36363
diff
changeset
|
230 |
case GCCause::_metadata_GC_clear_soft_refs: { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
231 |
HandleMark hm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
232 |
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
|
233 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
234 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
235 |
default: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
236 |
ShouldNotReachHere(); // Unexpected use of this function |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
237 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
238 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
239 |
|
49045
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
240 |
MetaWord* CollectedHeap::satisfy_failed_metadata_allocation(ClassLoaderData* loader_data, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
241 |
size_t word_size, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
242 |
Metaspace::MetadataType mdtype) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
243 |
uint loop_count = 0; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
244 |
uint gc_count = 0; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
245 |
uint full_gc_count = 0; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
246 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
247 |
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
|
248 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
249 |
do { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
250 |
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
|
251 |
if (result != NULL) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
252 |
return result; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
253 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
254 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
255 |
if (GCLocker::is_active_and_needs_gc()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
256 |
// If the GCLocker is active, just expand and allocate. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
257 |
// 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
|
258 |
// in a critical section itself. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
259 |
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
|
260 |
if (result != NULL) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
261 |
return result; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
262 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
263 |
JavaThread* jthr = JavaThread::current(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
264 |
if (!jthr->in_critical()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
265 |
// Wait for JNI critical section to be exited |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
266 |
GCLocker::stall_until_clear(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
267 |
// 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
|
268 |
// 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
|
269 |
// is (currently) needed for unloading classes so continue |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
270 |
// to the next iteration to get a full GC. |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
271 |
continue; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
272 |
} else { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
273 |
if (CheckJNICalls) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
274 |
fatal("Possible deadlock due to allocating while" |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
275 |
" in jni critical section"); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
276 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
277 |
return NULL; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
278 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
279 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
280 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
281 |
{ // Need lock to get self consistent gc_count's |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
282 |
MutexLocker ml(Heap_lock); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
283 |
gc_count = Universe::heap()->total_collections(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
284 |
full_gc_count = Universe::heap()->total_full_collections(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
285 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
286 |
|
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
287 |
// Generate a VM operation |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
288 |
VM_CollectForMetadataAllocation op(loader_data, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
289 |
word_size, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
290 |
mdtype, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
291 |
gc_count, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
292 |
full_gc_count, |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
293 |
GCCause::_metadata_GC_threshold); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
294 |
VMThread::execute(&op); |
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 |
// 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
|
297 |
// 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
|
298 |
if (op.gc_locked()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
299 |
continue; |
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 |
if (op.prologue_succeeded()) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
303 |
return op.result(); |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
304 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
305 |
loop_count++; |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
306 |
if ((QueuedAllocationWarningCount > 0) && |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
307 |
(loop_count % QueuedAllocationWarningCount == 0)) { |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
308 |
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
|
309 |
" size=" SIZE_FORMAT, loop_count, word_size); |
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 |
} while (true); // Until a GC is done |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
312 |
} |
9b556b613a07
8198509: Move satisfy_failed_metadata_allocation out from CollectorPolicy
stefank
parents:
48961
diff
changeset
|
313 |
|
30152 | 314 |
void CollectedHeap::set_barrier_set(BarrierSet* barrier_set) { |
315 |
_barrier_set = barrier_set; |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47799
diff
changeset
|
316 |
BarrierSet::set_bs(barrier_set); |
30152 | 317 |
} |
318 |
||
1 | 319 |
#ifndef PRODUCT |
320 |
void CollectedHeap::check_for_bad_heap_word_value(HeapWord* addr, size_t size) { |
|
321 |
if (CheckMemoryInitialization && ZapUnusedHeapArea) { |
|
322 |
for (size_t slot = 0; slot < size; slot += 1) { |
|
323 |
assert((*(intptr_t*) (addr + slot)) != ((intptr_t) badHeapWordVal), |
|
324 |
"Found badHeapWordValue in post-allocation check"); |
|
325 |
} |
|
326 |
} |
|
327 |
} |
|
328 |
||
8296
b1c2163e4e59
6912621: iCMS: Error: assert(_markBitMap.isMarked(addr + 1),"Missing Printezis bit?")
ysr
parents:
7397
diff
changeset
|
329 |
void CollectedHeap::check_for_non_bad_heap_word_value(HeapWord* addr, size_t size) { |
1 | 330 |
if (CheckMemoryInitialization && ZapUnusedHeapArea) { |
331 |
for (size_t slot = 0; slot < size; slot += 1) { |
|
332 |
assert((*(intptr_t*) (addr + slot)) == ((intptr_t) badHeapWordVal), |
|
333 |
"Found non badHeapWordValue in pre-allocation check"); |
|
334 |
} |
|
335 |
} |
|
336 |
} |
|
337 |
#endif // PRODUCT |
|
338 |
||
339 |
#ifdef ASSERT |
|
340 |
void CollectedHeap::check_for_valid_allocation_state() { |
|
341 |
Thread *thread = Thread::current(); |
|
342 |
// How to choose between a pending exception and a potential |
|
343 |
// OutOfMemoryError? Don't allow pending exceptions. |
|
344 |
// This is a VM policy failure, so how do we exhaustively test it? |
|
345 |
assert(!thread->has_pending_exception(), |
|
346 |
"shouldn't be allocating with pending exception"); |
|
347 |
if (StrictSafepointChecks) { |
|
348 |
assert(thread->allow_allocation(), |
|
349 |
"Allocation done by thread for which allocation is blocked " |
|
350 |
"by No_Allocation_Verifier!"); |
|
351 |
// Allocation of an oop can always invoke a safepoint, |
|
352 |
// hence, the true argument |
|
353 |
thread->check_for_valid_safepoint_state(true); |
|
354 |
} |
|
355 |
} |
|
356 |
#endif |
|
357 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43455
diff
changeset
|
358 |
HeapWord* CollectedHeap::allocate_from_tlab_slow(Klass* klass, Thread* thread, size_t size) { |
1 | 359 |
|
360 |
// Retain tlab and allocate object in shared space if |
|
361 |
// the amount free in the tlab is too large to discard. |
|
362 |
if (thread->tlab().free() > thread->tlab().refill_waste_limit()) { |
|
363 |
thread->tlab().record_slow_allocation(size); |
|
364 |
return NULL; |
|
365 |
} |
|
366 |
||
367 |
// Discard tlab and allocate a new one. |
|
368 |
// To minimize fragmentation, the last TLAB may be smaller than the rest. |
|
369 |
size_t new_tlab_size = thread->tlab().compute_size(size); |
|
370 |
||
371 |
thread->tlab().clear_before_allocation(); |
|
372 |
||
373 |
if (new_tlab_size == 0) { |
|
374 |
return NULL; |
|
375 |
} |
|
376 |
||
377 |
// Allocate a new TLAB... |
|
378 |
HeapWord* obj = Universe::heap()->allocate_new_tlab(new_tlab_size); |
|
379 |
if (obj == NULL) { |
|
380 |
return NULL; |
|
381 |
} |
|
18025 | 382 |
|
47779
24022215d092
8189440: Event tracing macros for allocation and weak oops processing
egahlin
parents:
47658
diff
changeset
|
383 |
AllocTracer::send_allocation_in_new_tlab(klass, obj, new_tlab_size * HeapWordSize, size * HeapWordSize, thread); |
18025 | 384 |
|
1 | 385 |
if (ZeroTLAB) { |
386 |
// ..and clear it. |
|
387 |
Copy::zero_to_words(obj, new_tlab_size); |
|
388 |
} else { |
|
10501 | 389 |
// ...and zap just allocated object. |
390 |
#ifdef ASSERT |
|
391 |
// Skip mangling the space corresponding to the object header to |
|
392 |
// ensure that the returned space is not considered parsable by |
|
393 |
// any concurrent GC thread. |
|
394 |
size_t hdr_size = oopDesc::header_size(); |
|
395 |
Copy::fill_to_words(obj + hdr_size, new_tlab_size - hdr_size, badHeapWordVal); |
|
396 |
#endif // ASSERT |
|
1 | 397 |
} |
398 |
thread->tlab().fill(obj, obj + size, new_tlab_size); |
|
399 |
return obj; |
|
400 |
} |
|
401 |
||
22552 | 402 |
size_t CollectedHeap::max_tlab_size() const { |
403 |
// TLABs can't be bigger than we can fill with a int[Integer.MAX_VALUE]. |
|
404 |
// This restriction could be removed by enabling filling with multiple arrays. |
|
405 |
// If we compute that the reasonable way as |
|
406 |
// header_size + ((sizeof(jint) * max_jint) / HeapWordSize) |
|
407 |
// we'll overflow on the multiply, so we do the divide first. |
|
408 |
// We actually lose a little by dividing first, |
|
409 |
// but that just makes the TLAB somewhat smaller than the biggest array, |
|
410 |
// which is fine, since we'll be able to fill that. |
|
411 |
size_t max_int_size = typeArrayOopDesc::header_size(T_INT) + |
|
412 |
sizeof(jint) * |
|
413 |
((juint) max_jint / (size_t) HeapWordSize); |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
414 |
return align_down(max_int_size, MinObjAlignment); |
22552 | 415 |
} |
416 |
||
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
417 |
size_t CollectedHeap::filler_array_hdr_size() { |
46618
d503911aa948
8178489: Make align functions more type safe and consistent
stefank
parents:
46384
diff
changeset
|
418 |
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
|
419 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
420 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
421 |
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
|
422 |
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
|
423 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
424 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
425 |
#ifdef ASSERT |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
426 |
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
|
427 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
428 |
assert(words >= min_fill_size(), "too small to fill"); |
46683
33808f7eadd5
8184753: Asserts against MinObjectAlignment should avoid integer division
shade
parents:
46625
diff
changeset
|
429 |
assert(is_object_aligned(words), "unaligned size"); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
430 |
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
|
431 |
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
|
432 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
433 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
434 |
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
|
435 |
{ |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
436 |
if (ZapFillerObjects && zap) { |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
437 |
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
|
438 |
words - filler_array_hdr_size(), 0XDEAFBABE); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
439 |
} |
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 |
#endif // ASSERT |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
442 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
443 |
void |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
444 |
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
|
445 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
446 |
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
|
447 |
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
|
448 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
449 |
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
|
450 |
const size_t len = payload_size * HeapWordSize / sizeof(jint); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32623
diff
changeset
|
451 |
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
|
452 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
453 |
// Set the length first for concurrent GC. |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
454 |
((arrayOop)start)->set_length((int)len); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
12229
diff
changeset
|
455 |
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
|
456 |
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
|
457 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
458 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
459 |
void |
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
460 |
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
|
461 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
462 |
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
|
463 |
|
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
464 |
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
|
465 |
fill_with_array(start, words, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
466 |
} else if (words > 0) { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
467 |
assert(words == min_fill_size(), "unaligned size"); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
12229
diff
changeset
|
468 |
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
|
469 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
470 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
471 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
472 |
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
|
473 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
474 |
DEBUG_ONLY(fill_args_check(start, words);) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
475 |
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
|
476 |
fill_with_object_impl(start, words, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
477 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
478 |
|
4636
90e004691873
6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents:
4571
diff
changeset
|
479 |
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
|
480 |
{ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
481 |
DEBUG_ONLY(fill_args_check(start, words);) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
482 |
HandleMark hm; // Free handles before leaving. |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
483 |
|
31603
4bd3b4863e10
8129573: CollectedHeap::fill_with_objects() needs to use multiple arrays in 32 bit mode too
tschatzl
parents:
30870
diff
changeset
|
484 |
// 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
|
485 |
// 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
|
486 |
// remainder is filled with a single object. |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
487 |
const size_t min = min_fill_size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
488 |
const size_t max = filler_array_max_size(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
489 |
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
|
490 |
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
|
491 |
fill_with_array(start, cur, zap); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
492 |
start += cur; |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
493 |
words -= cur; |
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 |
fill_with_object_impl(start, words, 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 |
|
1 | 499 |
HeapWord* CollectedHeap::allocate_new_tlab(size_t size) { |
500 |
guarantee(false, "thread-local allocation buffers not supported"); |
|
501 |
return NULL; |
|
502 |
} |
|
503 |
||
504 |
void CollectedHeap::ensure_parsability(bool retire_tlabs) { |
|
505 |
// The second disjunct in the assertion below makes a concession |
|
506 |
// for the start-up verification done while the VM is being |
|
507 |
// created. Callers be careful that you know that mutators |
|
508 |
// aren't going to interfere -- for instance, this is permissible |
|
509 |
// if we are still single-threaded and have either not yet |
|
510 |
// started allocating (nothing much to verify) or we have |
|
511 |
// started allocating but are now a full-fledged JavaThread |
|
512 |
// (and have thus made our TLAB's) available for filling. |
|
513 |
assert(SafepointSynchronize::is_at_safepoint() || |
|
514 |
!is_init_completed(), |
|
515 |
"Should only be called at a safepoint or at start-up" |
|
516 |
" otherwise concurrent mutator activity may make heap " |
|
517 |
" unparsable again"); |
|
4637 | 518 |
const bool use_tlab = UseTLAB; |
519 |
// The main thread starts allocating via a TLAB even before it |
|
520 |
// 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
|
521 |
JavaThreadIteratorWithHandle jtiwh; |
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
522 |
assert(!use_tlab || jtiwh.length() > 0, |
4637 | 523 |
"Attempt to fill tlabs before main thread has been added" |
524 |
" to threads list is doomed to failure!"); |
|
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48168
diff
changeset
|
525 |
BarrierSet *bs = barrier_set(); |
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
526 |
for (; JavaThread *thread = jtiwh.next(); ) { |
4637 | 527 |
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
|
528 |
bs->make_parsable(thread); |
1 | 529 |
} |
530 |
} |
|
531 |
||
532 |
void CollectedHeap::accumulate_statistics_all_tlabs() { |
|
533 |
if (UseTLAB) { |
|
534 |
assert(SafepointSynchronize::is_at_safepoint() || |
|
535 |
!is_init_completed(), |
|
536 |
"should only accumulate statistics on tlabs at safepoint"); |
|
537 |
||
538 |
ThreadLocalAllocBuffer::accumulate_statistics_before_gc(); |
|
539 |
} |
|
540 |
} |
|
541 |
||
542 |
void CollectedHeap::resize_all_tlabs() { |
|
543 |
if (UseTLAB) { |
|
544 |
assert(SafepointSynchronize::is_at_safepoint() || |
|
545 |
!is_init_completed(), |
|
546 |
"should only resize tlabs at safepoint"); |
|
547 |
||
548 |
ThreadLocalAllocBuffer::resize_all_tlabs(); |
|
549 |
} |
|
550 |
} |
|
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
551 |
|
35915
5808cd93abfc
8148755: -XX:+HeapDumpAfterFullGC creates heap dump both before and after Full GC
redestad
parents:
35529
diff
changeset
|
552 |
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
|
553 |
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
|
554 |
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
|
555 |
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
|
556 |
HeapDumper::dump_heap(); |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
557 |
} |
35939
05df7e64ecfc
8149035: Make the full_gc_dump() calls be recorded as part of the GC
brutisso
parents:
35915
diff
changeset
|
558 |
|
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
559 |
LogTarget(Trace, gc, classhisto) lt; |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
560 |
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
|
561 |
GCTraceTime(Trace, gc, classhisto) tm(before ? "Class Histogram (before full gc)" : "Class Histogram (after full gc)", timer); |
35061 | 562 |
ResourceMark rm; |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
563 |
LogStream ls(lt); |
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46683
diff
changeset
|
564 |
VM_GC_HeapInspection inspector(&ls, false /* ! full gc */); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
565 |
inspector.doit(); |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
566 |
} |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
567 |
} |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
568 |
|
35061 | 569 |
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
|
570 |
full_gc_dump(timer, true); |
35061 | 571 |
} |
572 |
||
18025 | 573 |
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
|
574 |
full_gc_dump(timer, false); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
1681
diff
changeset
|
575 |
} |
10742 | 576 |
|
26829
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
577 |
void CollectedHeap::initialize_reserved_region(HeapWord *start, HeapWord *end) { |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
578 |
// 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
|
579 |
// 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
|
580 |
_reserved.set_word_size(0); |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
581 |
_reserved.set_start(start); |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
582 |
_reserved.set_end(end); |
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
25350
diff
changeset
|
583 |
} |
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
584 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
585 |
void CollectedHeap::post_initialize() { |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
586 |
initialize_serviceability(); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48105
diff
changeset
|
587 |
} |
49466 | 588 |
|
49593
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
589 |
#ifndef PRODUCT |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
590 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
591 |
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
|
592 |
// 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
|
593 |
if (PromotionFailureALot) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
594 |
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
|
595 |
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
|
596 |
if (elapsed_gcs >= PromotionFailureALotInterval) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
597 |
// Test for unsigned arithmetic wrap-around. |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
598 |
if (++*count >= PromotionFailureALotCount) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
599 |
*count = 0; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
600 |
return true; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
601 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
602 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
603 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
604 |
return false; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
605 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
606 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
607 |
bool CollectedHeap::promotion_should_fail() { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
608 |
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
|
609 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
610 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
611 |
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
|
612 |
if (PromotionFailureALot) { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
613 |
_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
|
614 |
*count = 0; |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
615 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
616 |
} |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
617 |
|
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
618 |
void CollectedHeap::reset_promotion_should_fail() { |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
619 |
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
|
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 |
#endif // #ifndef PRODUCT |
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49484
diff
changeset
|
623 |
|
49669
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
624 |
bool CollectedHeap::supports_object_pinning() const { |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
625 |
return false; |
49466 | 626 |
} |
627 |
||
49669
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
628 |
oop CollectedHeap::pin_object(JavaThread* thread, oop obj) { |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
629 |
ShouldNotReachHere(); |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
630 |
return NULL; |
49466 | 631 |
} |
49669
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
632 |
|
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
633 |
void CollectedHeap::unpin_object(JavaThread* thread, oop obj) { |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
634 |
ShouldNotReachHere(); |
3569b528972e
8200429: Adjust object pinning interface on CollectedHeap
pliden
parents:
49593
diff
changeset
|
635 |
} |