author | jcbeyler |
Fri, 15 Jun 2018 00:49:54 -0700 | |
changeset 50578 | e2a7f431f65c |
parent 50448 | db8036093504 |
child 50882 | 80abf702eed8 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49593
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
47779
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:
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" |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
37 |
#include "runtime/handles.inline.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13728
diff
changeset
|
38 |
#include "runtime/thread.inline.hpp" |
7397 | 39 |
#include "services/lowMemoryDetector.hpp" |
46625 | 40 |
#include "utilities/align.hpp" |
7397 | 41 |
#include "utilities/copy.hpp" |
42 |
||
1 | 43 |
// Inline allocation implementations. |
44 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
45 |
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
|
46 |
HeapWord* obj_ptr) { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
47 |
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
|
48 |
oop obj = (oop)obj_ptr; |
49982 | 49 |
#if (INCLUDE_G1GC || INCLUDE_CMSGC) |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
50 |
// 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
|
51 |
// 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
|
52 |
// concurrent collectors. |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
53 |
obj->release_set_klass(klass); |
49982 | 54 |
#else |
55 |
obj->set_klass(klass); |
|
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
56 |
#endif |
1 | 57 |
} |
58 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
59 |
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
|
60 |
HeapWord* obj_ptr) { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
61 |
oop obj = (oop)obj_ptr; |
1 | 62 |
|
63 |
assert(obj != NULL, "NULL object pointer"); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
64 |
if (UseBiasedLocking && (klass != NULL)) { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
65 |
obj->set_mark_raw(klass->prototype_header()); |
1 | 66 |
} else { |
67 |
// May be bootstrapping |
|
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
68 |
obj->set_mark_raw(markOopDesc::prototype()); |
1 | 69 |
} |
70 |
} |
|
71 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
72 |
// Support for jvmti and dtrace |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
73 |
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
|
74 |
// 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
|
75 |
LowMemoryDetector::detect_low_memory_for_collected_pools(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1388
diff
changeset
|
76 |
|
1 | 77 |
// support for JVMTI VMObjectAlloc event (no-op if not enabled) |
78 |
JvmtiExport::vm_object_alloc_event_collector(obj); |
|
79 |
||
80 |
if (DTraceAllocProbes) { |
|
81 |
// support for Dtrace object alloc event (no-op most of the time) |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
82 |
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
|
83 |
SharedRuntime::dtrace_object_alloc(obj, size); |
1 | 84 |
} |
85 |
} |
|
86 |
} |
|
87 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
88 |
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
|
89 |
HeapWord* obj_ptr, |
23995
fc58ec725daf
8039904: dtrace/hotspot/Monitors/Monitors001 fails with "assert(s > 0) failed: Bad size calculated"
coleenp
parents:
22234
diff
changeset
|
90 |
int size) { |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
91 |
post_allocation_setup_common(klass, obj_ptr); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
92 |
oop obj = (oop)obj_ptr; |
1 | 93 |
assert(Universe::is_bootstrapping() || |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
94 |
!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 |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
96 |
post_allocation_notify(klass, obj, size); |
1 | 97 |
} |
98 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
99 |
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
|
100 |
HeapWord* obj_ptr, |
39695
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
101 |
int size) { |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
102 |
// 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
|
103 |
// 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
|
104 |
// concurrent GC. |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
105 |
oop new_cls = (oop)obj_ptr; |
39695
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
106 |
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
|
107 |
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
|
108 |
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
|
109 |
assert(Universe::is_bootstrapping() || |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
110 |
!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
|
111 |
// notify jvmti and dtrace |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
112 |
post_allocation_notify(klass, new_cls, size); |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
113 |
} |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
114 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
115 |
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
|
116 |
HeapWord* obj_ptr, |
1 | 117 |
int length) { |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
118 |
// 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
|
119 |
// 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
|
120 |
// concurrent GC. |
1 | 121 |
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
|
122 |
((arrayOop)obj_ptr)->set_length(length); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
123 |
post_allocation_setup_common(klass, obj_ptr); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
39695
diff
changeset
|
124 |
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
|
125 |
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
|
126 |
// 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
|
127 |
post_allocation_notify(klass, new_obj, new_obj->size()); |
1 | 128 |
} |
129 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
130 |
HeapWord* CollectedHeap::common_mem_allocate_noinit(Klass* klass, size_t size, TRAPS) { |
1 | 131 |
|
132 |
// Clear unhandled oops for memory allocation. Memory allocation might |
|
133 |
// not take out a lock if from tlab, so clear here. |
|
134 |
CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();) |
|
135 |
||
136 |
if (HAS_PENDING_EXCEPTION) { |
|
137 |
NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending")); |
|
138 |
return NULL; // caller does a CHECK_0 too |
|
139 |
} |
|
140 |
||
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
141 |
bool gc_overhead_limit_was_exceeded = false; |
50414 | 142 |
CollectedHeap* heap = Universe::heap(); |
143 |
HeapWord* result = heap->obj_allocate_raw(klass, size, &gc_overhead_limit_was_exceeded, THREAD); |
|
144 |
||
1 | 145 |
if (result != NULL) { |
146 |
return result; |
|
147 |
} |
|
148 |
||
149 |
if (!gc_overhead_limit_was_exceeded) { |
|
150 |
// -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support |
|
151 |
report_java_out_of_memory("Java heap space"); |
|
152 |
||
153 |
if (JvmtiExport::should_post_resource_exhausted()) { |
|
154 |
JvmtiExport::post_resource_exhausted( |
|
155 |
JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP, |
|
156 |
"Java heap space"); |
|
157 |
} |
|
158 |
||
159 |
THROW_OOP_0(Universe::out_of_memory_error_java_heap()); |
|
160 |
} else { |
|
161 |
// -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support |
|
162 |
report_java_out_of_memory("GC overhead limit exceeded"); |
|
163 |
||
164 |
if (JvmtiExport::should_post_resource_exhausted()) { |
|
165 |
JvmtiExport::post_resource_exhausted( |
|
166 |
JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP, |
|
167 |
"GC overhead limit exceeded"); |
|
168 |
} |
|
169 |
||
170 |
THROW_OOP_0(Universe::out_of_memory_error_gc_overhead_limit()); |
|
171 |
} |
|
172 |
} |
|
173 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
174 |
HeapWord* CollectedHeap::common_mem_allocate_init(Klass* klass, size_t size, TRAPS) { |
18025 | 175 |
HeapWord* obj = common_mem_allocate_noinit(klass, size, CHECK_NULL); |
1 | 176 |
init_obj(obj, size); |
177 |
return obj; |
|
178 |
} |
|
179 |
||
50414 | 180 |
HeapWord* CollectedHeap::allocate_from_tlab(Klass* klass, size_t size, TRAPS) { |
1 | 181 |
assert(UseTLAB, "should use UseTLAB"); |
182 |
||
50414 | 183 |
HeapWord* obj = THREAD->tlab().allocate(size); |
1 | 184 |
if (obj != NULL) { |
185 |
return obj; |
|
186 |
} |
|
187 |
// Otherwise... |
|
50414 | 188 |
obj = allocate_from_tlab_slow(klass, size, THREAD); |
189 |
assert(obj == NULL || !HAS_PENDING_EXCEPTION, |
|
190 |
"Unexpected exception, will result in uninitialized storage"); |
|
191 |
return obj; |
|
1 | 192 |
} |
193 |
||
50448
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
194 |
HeapWord* CollectedHeap::allocate_outside_tlab(Klass* klass, size_t size, |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
195 |
bool* gc_overhead_limit_was_exceeded, TRAPS) { |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
196 |
HeapWord* result = Universe::heap()->mem_allocate(size, gc_overhead_limit_was_exceeded); |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
197 |
if (result == NULL) { |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
198 |
return result; |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
199 |
} |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
200 |
|
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
201 |
NOT_PRODUCT(Universe::heap()->check_for_non_bad_heap_word_value(result, size)); |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
202 |
assert(!HAS_PENDING_EXCEPTION, |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
203 |
"Unexpected exception, will result in uninitialized storage"); |
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
204 |
size_t size_in_bytes = size * HeapWordSize; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
205 |
THREAD->incr_allocated_bytes(size_in_bytes); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
206 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
207 |
AllocTracer::send_allocation_outside_tlab(klass, result, size_in_bytes, THREAD); |
50448
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
208 |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
209 |
if (ThreadHeapSampler::enabled()) { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
210 |
THREAD->heap_sampler().check_for_sampling(result, size_in_bytes); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
211 |
} |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
212 |
|
50448
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
213 |
return result; |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
214 |
} |
db8036093504
8204554: JFR TLAB tracing broken after 8202776
eosterlund
parents:
50414
diff
changeset
|
215 |
|
1 | 216 |
void CollectedHeap::init_obj(HeapWord* obj, size_t size) { |
217 |
assert(obj != NULL, "cannot initialize NULL object"); |
|
218 |
const size_t hs = oopDesc::header_size(); |
|
219 |
assert(size >= hs, "unexpected object size"); |
|
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
360
diff
changeset
|
220 |
((oop)obj)->set_klass_gap(0); |
1 | 221 |
Copy::fill_to_aligned_words(obj + hs, size - hs); |
222 |
} |
|
223 |
||
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
224 |
HeapWord* CollectedHeap::common_allocate_memory(Klass* klass, int size, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
225 |
void (*post_setup)(Klass*, HeapWord*, int), |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
226 |
int size_for_post, bool init_memory, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
227 |
TRAPS) { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
228 |
HeapWord* obj; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
229 |
if (init_memory) { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
230 |
obj = common_mem_allocate_init(klass, size, CHECK_NULL); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
231 |
} else { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
232 |
obj = common_mem_allocate_noinit(klass, size, CHECK_NULL); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
233 |
} |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
234 |
post_setup(klass, obj, size_for_post); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
235 |
return obj; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
236 |
} |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
237 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
238 |
HeapWord* CollectedHeap::allocate_memory(Klass* klass, int size, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
239 |
void (*post_setup)(Klass*, HeapWord*, int), |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
240 |
int size_for_post, bool init_memory, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
241 |
TRAPS) { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
242 |
HeapWord* obj; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
243 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
244 |
assert(JavaThread::current()->heap_sampler().add_sampling_collector(), |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
245 |
"Should never return false."); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
246 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
247 |
if (JvmtiExport::should_post_sampled_object_alloc()) { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
248 |
HandleMark hm(THREAD); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
249 |
Handle obj_h; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
250 |
{ |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
251 |
JvmtiSampledObjectAllocEventCollector collector; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
252 |
obj = common_allocate_memory(klass, size, post_setup, size_for_post, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
253 |
init_memory, CHECK_NULL); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
254 |
// If we want to be sampling, protect the allocated object with a Handle |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
255 |
// before doing the callback. The callback is done in the destructor of |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
256 |
// the JvmtiSampledObjectAllocEventCollector. |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
257 |
obj_h = Handle(THREAD, (oop) obj); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
258 |
} |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
259 |
obj = (HeapWord*) obj_h(); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
260 |
} else { |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
261 |
obj = common_allocate_memory(klass, size, post_setup, size_for_post, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
262 |
init_memory, CHECK_NULL); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
263 |
} |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
264 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
265 |
assert(JavaThread::current()->heap_sampler().remove_sampling_collector(), |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
266 |
"Should never return false."); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
267 |
return obj; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
268 |
} |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
269 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
270 |
oop CollectedHeap::obj_allocate(Klass* klass, int size, TRAPS) { |
1 | 271 |
debug_only(check_for_valid_allocation_state()); |
272 |
assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed"); |
|
273 |
assert(size >= 0, "int won't convert to size_t"); |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
274 |
HeapWord* obj = allocate_memory(klass, size, post_allocation_setup_obj, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
275 |
size, true, CHECK_NULL); |
1 | 276 |
NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size)); |
277 |
return (oop)obj; |
|
278 |
} |
|
279 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
280 |
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
|
281 |
debug_only(check_for_valid_allocation_state()); |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
282 |
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
|
283 |
assert(size >= 0, "int won't convert to size_t"); |
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
284 |
HeapWord* obj = allocate_memory(klass, size, post_allocation_setup_class, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
285 |
size, true, CHECK_NULL); |
39695
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
286 |
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
|
287 |
return (oop)obj; |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
288 |
} |
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
35898
diff
changeset
|
289 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
290 |
oop CollectedHeap::array_allocate(Klass* klass, |
1 | 291 |
int size, |
292 |
int length, |
|
293 |
TRAPS) { |
|
294 |
debug_only(check_for_valid_allocation_state()); |
|
295 |
assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed"); |
|
296 |
assert(size >= 0, "int won't convert to size_t"); |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
297 |
HeapWord* obj = allocate_memory(klass, size, post_allocation_setup_array, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
298 |
length, true, CHECK_NULL); |
1 | 299 |
NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size)); |
300 |
return (oop)obj; |
|
301 |
} |
|
302 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
41177
diff
changeset
|
303 |
oop CollectedHeap::array_allocate_nozero(Klass* klass, |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
304 |
int size, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
305 |
int length, |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
306 |
TRAPS) { |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
307 |
debug_only(check_for_valid_allocation_state()); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
308 |
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
|
309 |
assert(size >= 0, "int won't convert to size_t"); |
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
310 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
311 |
HeapWord* obj = allocate_memory(klass, size, post_allocation_setup_array, |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50448
diff
changeset
|
312 |
length, false, CHECK_NULL); |
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
313 |
#ifndef PRODUCT |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
314 |
const size_t hs = oopDesc::header_size()+1; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
315 |
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
|
316 |
#endif |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
317 |
return (oop)obj; |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
318 |
} |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10565
diff
changeset
|
319 |
|
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
320 |
inline HeapWord* CollectedHeap::align_allocation_or_fail(HeapWord* addr, |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
321 |
HeapWord* end, |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
322 |
unsigned short alignment_in_bytes) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
323 |
if (alignment_in_bytes <= ObjectAlignmentInBytes) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
324 |
return addr; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
325 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
326 |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
327 |
assert(is_aligned(addr, HeapWordSize), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
328 |
"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
|
329 |
assert(is_aligned(alignment_in_bytes, HeapWordSize), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
330 |
"Alignment size %u is incorrect.", alignment_in_bytes); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
331 |
|
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46618
diff
changeset
|
332 |
HeapWord* new_addr = align_up(addr, alignment_in_bytes); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
333 |
size_t padding = pointer_delta(new_addr, addr); |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
334 |
|
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
335 |
if (padding == 0) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
336 |
return addr; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
337 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
338 |
|
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
339 |
if (padding < CollectedHeap::min_fill_size()) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
340 |
padding += alignment_in_bytes / HeapWordSize; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
341 |
assert(padding >= CollectedHeap::min_fill_size(), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
342 |
"alignment_in_bytes %u is expect to be larger " |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
343 |
"than the minimum object size", alignment_in_bytes); |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
344 |
new_addr = addr + padding; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
345 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
346 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
347 |
assert(new_addr > addr, "Unexpected arithmetic overflow " |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
348 |
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
|
349 |
if(new_addr < end) { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
350 |
CollectedHeap::fill_with_object(addr, padding); |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
351 |
return new_addr; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
352 |
} else { |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
353 |
return NULL; |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
354 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
355 |
} |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
23995
diff
changeset
|
356 |
|
30764 | 357 |
#endif // SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP |