annotate src/share/vm/gc_interface/collectedHeap.inline.hpp @ 20804:7848fc12602b

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