author | goetz |
Mon, 18 Jan 2016 10:25:41 +0100 | |
changeset 35862 | 411842d0c882 |
parent 33105 | 294e48b4f704 |
child 35898 | ddc274f0052f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33105
diff
changeset
|
2 |
* Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
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:
2105
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP |
26 |
#define SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/allocTracer.hpp" |
29 |
#include "gc/shared/collectedHeap.hpp" |
|
30 |
#include "gc/shared/threadLocalAllocBuffer.inline.hpp" |
|
7397 | 31 |
#include "memory/universe.hpp" |
32 |
#include "oops/arrayOop.hpp" |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33105
diff
changeset
|
33 |
#include "oops/oop.inline.hpp" |
7397 | 34 |
#include "prims/jvmtiExport.hpp" |
35 |
#include "runtime/sharedRuntime.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13728
diff
changeset
|
36 |
#include "runtime/thread.inline.hpp" |
7397 | 37 |
#include "services/lowMemoryDetector.hpp" |
38 |
#include "utilities/copy.hpp" |
|
39 |
||
1 | 40 |
// Inline allocation implementations. |
41 |
||
42 |
void CollectedHeap::post_allocation_setup_common(KlassHandle klass, |
|
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
43 |
HeapWord* obj) { |
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
44 |
post_allocation_setup_no_klass_install(klass, obj); |
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
45 |
post_allocation_install_obj_klass(klass, oop(obj)); |
1 | 46 |
} |
47 |
||
48 |
void CollectedHeap::post_allocation_setup_no_klass_install(KlassHandle klass, |
|
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
49 |
HeapWord* objPtr) { |
1 | 50 |
oop obj = (oop)objPtr; |
51 |
||
52 |
assert(obj != NULL, "NULL object pointer"); |
|
53 |
if (UseBiasedLocking && (klass() != NULL)) { |
|
54 |
obj->set_mark(klass->prototype_header()); |
|
55 |
} else { |
|
56 |
// May be bootstrapping |
|
57 |
obj->set_mark(markOopDesc::prototype()); |
|
58 |
} |
|
59 |
} |
|
60 |
||
61 |
void CollectedHeap::post_allocation_install_obj_klass(KlassHandle klass, |
|
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
62 |
oop obj) { |
1 | 63 |
// These asserts are kind of complicated because of klassKlass |
64 |
// and the beginning of the world. |
|
65 |
assert(klass() != NULL || !Universe::is_fully_initialized(), "NULL klass"); |
|
66 |
assert(klass() == NULL || klass()->is_klass(), "not a klass"); |
|
67 |
assert(obj != NULL, "NULL object pointer"); |
|
68 |
obj->set_klass(klass()); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
69 |
assert(!Universe::is_fully_initialized() || obj->klass() != NULL, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
70 |
"missing klass"); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
71 |
} |
1 | 72 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
73 |
// Support for jvmti and dtrace |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
74 |
inline void post_allocation_notify(KlassHandle klass, oop obj, int size) { |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
75 |
// support low memory notifications (no-op if not enabled) |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
76 |
LowMemoryDetector::detect_low_memory_for_collected_pools(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
77 |
|
1 | 78 |
// support for JVMTI VMObjectAlloc event (no-op if not enabled) |
79 |
JvmtiExport::vm_object_alloc_event_collector(obj); |
|
80 |
||
81 |
if (DTraceAllocProbes) { |
|
82 |
// support for Dtrace object alloc event (no-op most of the time) |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
83 |
if (klass() != NULL && klass()->name() != NULL) { |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
84 |
SharedRuntime::dtrace_object_alloc(obj, size); |
1 | 85 |
} |
86 |
} |
|
87 |
} |
|
88 |
||
89 |
void CollectedHeap::post_allocation_setup_obj(KlassHandle klass, |
|
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
90 |
HeapWord* obj, |
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
91 |
int size) { |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
92 |
post_allocation_setup_common(klass, obj); |
1 | 93 |
assert(Universe::is_bootstrapping() || |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12236
diff
changeset
|
94 |
!((oop)obj)->is_array(), "must not be an array"); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
95 |
// notify jvmti and dtrace |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
96 |
post_allocation_notify(klass, (oop)obj, size); |
1 | 97 |
} |
98 |
||
99 |
void CollectedHeap::post_allocation_setup_array(KlassHandle klass, |
|
100 |
HeapWord* obj, |
|
101 |
int length) { |
|
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
360
diff
changeset
|
102 |
// Set array length before setting the _klass field |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
360
diff
changeset
|
103 |
// in post_allocation_setup_common() because the klass field |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
360
diff
changeset
|
104 |
// indicates that the object is parsable by concurrent GC. |
1 | 105 |
assert(length >= 0, "length should be non-negative"); |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
360
diff
changeset
|
106 |
((arrayOop)obj)->set_length(length); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
107 |
post_allocation_setup_common(klass, obj); |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
108 |
oop new_obj = (oop)obj; |
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
109 |
assert(new_obj->is_array(), "must be an array"); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
110 |
// notify jvmti and dtrace (must be after length is set for dtrace) |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
111 |
post_allocation_notify(klass, new_obj, new_obj->size()); |
1 | 112 |
} |
113 |
||
18025 | 114 |
HeapWord* CollectedHeap::common_mem_allocate_noinit(KlassHandle klass, size_t size, TRAPS) { |
1 | 115 |
|
116 |
// Clear unhandled oops for memory allocation. Memory allocation might |
|
117 |
// not take out a lock if from tlab, so clear here. |
|
118 |
CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();) |
|
119 |
||
120 |
if (HAS_PENDING_EXCEPTION) { |
|
121 |
NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending")); |
|
122 |
return NULL; // caller does a CHECK_0 too |
|
123 |
} |
|
124 |
||
125 |
HeapWord* result = NULL; |
|
126 |
if (UseTLAB) { |
|
18025 | 127 |
result = allocate_from_tlab(klass, THREAD, size); |
1 | 128 |
if (result != NULL) { |
129 |
assert(!HAS_PENDING_EXCEPTION, |
|
130 |
"Unexpected exception, will result in uninitialized storage"); |
|
131 |
return result; |
|
132 |
} |
|
133 |
} |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
134 |
bool gc_overhead_limit_was_exceeded = false; |
1 | 135 |
result = Universe::heap()->mem_allocate(size, |
136 |
&gc_overhead_limit_was_exceeded); |
|
137 |
if (result != NULL) { |
|
138 |
NOT_PRODUCT(Universe::heap()-> |
|
139 |
check_for_non_bad_heap_word_value(result, size)); |
|
140 |
assert(!HAS_PENDING_EXCEPTION, |
|
141 |
"Unexpected exception, will result in uninitialized storage"); |
|
7724
a92d706dbdd5
7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents:
7397
diff
changeset
|
142 |
THREAD->incr_allocated_bytes(size * HeapWordSize); |
18025 | 143 |
|
144 |
AllocTracer::send_allocation_outside_tlab_event(klass, size * HeapWordSize); |
|
145 |
||
1 | 146 |
return result; |
147 |
} |
|
148 |
||
149 |
||
150 |
if (!gc_overhead_limit_was_exceeded) { |
|
151 |
// -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support |
|
152 |
report_java_out_of_memory("Java heap space"); |
|
153 |
||
154 |
if (JvmtiExport::should_post_resource_exhausted()) { |
|
155 |
JvmtiExport::post_resource_exhausted( |
|
156 |
JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP, |
|
157 |
"Java heap space"); |
|
158 |
} |
|
159 |
||
160 |
THROW_OOP_0(Universe::out_of_memory_error_java_heap()); |
|
161 |
} else { |
|
162 |
// -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support |
|
163 |
report_java_out_of_memory("GC overhead limit exceeded"); |
|
164 |
||
165 |
if (JvmtiExport::should_post_resource_exhausted()) { |
|
166 |
JvmtiExport::post_resource_exhausted( |
|
167 |
JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP, |
|
168 |
"GC overhead limit exceeded"); |
|
169 |
} |
|
170 |
||
171 |
THROW_OOP_0(Universe::out_of_memory_error_gc_overhead_limit()); |
|
172 |
} |
|
173 |
} |
|
174 |
||
18025 | 175 |
HeapWord* CollectedHeap::common_mem_allocate_init(KlassHandle klass, size_t size, TRAPS) { |
176 |
HeapWord* obj = common_mem_allocate_noinit(klass, size, CHECK_NULL); |
|
1 | 177 |
init_obj(obj, size); |
178 |
return obj; |
|
179 |
} |
|
180 |
||
18025 | 181 |
HeapWord* CollectedHeap::allocate_from_tlab(KlassHandle klass, Thread* thread, size_t size) { |
1 | 182 |
assert(UseTLAB, "should use UseTLAB"); |
183 |
||
184 |
HeapWord* obj = thread->tlab().allocate(size); |
|
185 |
if (obj != NULL) { |
|
186 |
return obj; |
|
187 |
} |
|
188 |
// Otherwise... |
|
18025 | 189 |
return allocate_from_tlab_slow(klass, thread, size); |
1 | 190 |
} |
191 |
||
192 |
void CollectedHeap::init_obj(HeapWord* obj, size_t size) { |
|
193 |
assert(obj != NULL, "cannot initialize NULL object"); |
|
194 |
const size_t hs = oopDesc::header_size(); |
|
195 |
assert(size >= hs, "unexpected object size"); |
|
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
360
diff
changeset
|
196 |
((oop)obj)->set_klass_gap(0); |
1 | 197 |
Copy::fill_to_aligned_words(obj + hs, size - hs); |
198 |
} |
|
199 |
||
200 |
oop CollectedHeap::obj_allocate(KlassHandle klass, int size, TRAPS) { |
|
201 |
debug_only(check_for_valid_allocation_state()); |
|
202 |
assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed"); |
|
203 |
assert(size >= 0, "int won't convert to size_t"); |
|
18025 | 204 |
HeapWord* obj = common_mem_allocate_init(klass, size, CHECK_NULL); |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
205 |
post_allocation_setup_obj(klass, obj, size); |
1 | 206 |
NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size)); |
207 |
return (oop)obj; |
|
208 |
} |
|
209 |
||
210 |
oop CollectedHeap::array_allocate(KlassHandle klass, |
|
211 |
int size, |
|
212 |
int length, |
|
213 |
TRAPS) { |
|
214 |
debug_only(check_for_valid_allocation_state()); |
|
215 |
assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed"); |
|
216 |
assert(size >= 0, "int won't convert to size_t"); |
|
18025 | 217 |
HeapWord* obj = common_mem_allocate_init(klass, size, CHECK_NULL); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
218 |
post_allocation_setup_array(klass, obj, length); |
1 | 219 |
NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size)); |
220 |
return (oop)obj; |
|
221 |
} |
|
222 |
||
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
223 |
oop CollectedHeap::array_allocate_nozero(KlassHandle klass, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
224 |
int size, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
225 |
int length, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
226 |
TRAPS) { |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
227 |
debug_only(check_for_valid_allocation_state()); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
228 |
assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed"); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
229 |
assert(size >= 0, "int won't convert to size_t"); |
18025 | 230 |
HeapWord* obj = common_mem_allocate_noinit(klass, size, CHECK_NULL); |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
231 |
((oop)obj)->set_klass_gap(0); |
12236
51d6463cfd9d
7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents:
10566
diff
changeset
|
232 |
post_allocation_setup_array(klass, obj, length); |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
233 |
#ifndef PRODUCT |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
234 |
const size_t hs = oopDesc::header_size()+1; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
235 |
Universe::heap()->check_for_non_bad_heap_word_value(obj+hs, size-hs); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
236 |
#endif |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
237 |
return (oop)obj; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
238 |
} |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
239 |
|
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
240 |
inline HeapWord* CollectedHeap::align_allocation_or_fail(HeapWord* addr, |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
241 |
HeapWord* end, |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
242 |
unsigned short alignment_in_bytes) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
243 |
if (alignment_in_bytes <= ObjectAlignmentInBytes) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
244 |
return addr; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
245 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
246 |
|
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
247 |
assert(is_ptr_aligned(addr, HeapWordSize), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
248 |
"Address " PTR_FORMAT " is not properly aligned.", p2i(addr)); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
249 |
assert(is_size_aligned(alignment_in_bytes, HeapWordSize), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
250 |
"Alignment size %u is incorrect.", alignment_in_bytes); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
251 |
|
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
252 |
HeapWord* new_addr = (HeapWord*) align_pointer_up(addr, alignment_in_bytes); |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
253 |
size_t padding = pointer_delta(new_addr, addr); |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
254 |
|
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
255 |
if (padding == 0) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
256 |
return addr; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
257 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
258 |
|
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
259 |
if (padding < CollectedHeap::min_fill_size()) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
260 |
padding += alignment_in_bytes / HeapWordSize; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
261 |
assert(padding >= CollectedHeap::min_fill_size(), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
262 |
"alignment_in_bytes %u is expect to be larger " |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
263 |
"than the minimum object size", alignment_in_bytes); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
264 |
new_addr = addr + padding; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
265 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
266 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
267 |
assert(new_addr > addr, "Unexpected arithmetic overflow " |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
268 |
PTR_FORMAT " not greater than " PTR_FORMAT, p2i(new_addr), p2i(addr)); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
269 |
if(new_addr < end) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
270 |
CollectedHeap::fill_with_object(addr, padding); |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
271 |
return new_addr; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
272 |
} else { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
273 |
return NULL; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
274 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
275 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
276 |
|
1 | 277 |
#ifndef PRODUCT |
278 |
||
279 |
inline bool |
|
280 |
CollectedHeap::promotion_should_fail(volatile size_t* count) { |
|
281 |
// Access to count is not atomic; the value does not have to be exact. |
|
282 |
if (PromotionFailureALot) { |
|
283 |
const size_t gc_num = total_collections(); |
|
284 |
const size_t elapsed_gcs = gc_num - _promotion_failure_alot_gc_number; |
|
285 |
if (elapsed_gcs >= PromotionFailureALotInterval) { |
|
286 |
// Test for unsigned arithmetic wrap-around. |
|
287 |
if (++*count >= PromotionFailureALotCount) { |
|
288 |
*count = 0; |
|
289 |
return true; |
|
290 |
} |
|
291 |
} |
|
292 |
} |
|
293 |
return false; |
|
294 |
} |
|
295 |
||
296 |
inline bool CollectedHeap::promotion_should_fail() { |
|
297 |
return promotion_should_fail(&_promotion_failure_alot_count); |
|
298 |
} |
|
299 |
||
300 |
inline void CollectedHeap::reset_promotion_should_fail(volatile size_t* count) { |
|
301 |
if (PromotionFailureALot) { |
|
302 |
_promotion_failure_alot_gc_number = total_collections(); |
|
303 |
*count = 0; |
|
304 |
} |
|
305 |
} |
|
306 |
||
307 |
inline void CollectedHeap::reset_promotion_should_fail() { |
|
308 |
reset_promotion_should_fail(&_promotion_failure_alot_count); |
|
309 |
} |
|
310 |
#endif // #ifndef PRODUCT |
|
7397 | 311 |
|
30764 | 312 |
#endif // SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP |