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