annotate src/share/vm/gc_interface/collectedHeap.inline.hpp @ 17524:89152779163c

Merge with jdk8-b132
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 11:59:32 +0200
parents 4ca6dc0799b6
children 52b4284cb496
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17524
89152779163c Merge with jdk8-b132
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
2 * Copyright (c) 2001, 2013, 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
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
73 inline void post_allocation_notify(KlassHandle klass, oop obj) {
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) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
83 SharedRuntime::dtrace_object_alloc(obj);
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,
5972
9a9bb0010c91 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 3961
diff changeset
89 HeapWord* obj) {
9a9bb0010c91 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 3961
diff changeset
90 post_allocation_setup_common(klass, obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
91 assert(Universe::is_bootstrapping() ||
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5972
diff changeset
92 !((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
93 // notify jvmti and dtrace
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
94 post_allocation_notify(klass, (oop)obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 void CollectedHeap::post_allocation_setup_array(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
98 HeapWord* obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
99 int length) {
167
feeb96a45707 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 113
diff changeset
100 // 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
101 // 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
102 // indicates that the object is parsable by concurrent GC.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 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
104 ((arrayOop)obj)->set_length(length);
5972
9a9bb0010c91 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 3961
diff changeset
105 post_allocation_setup_common(klass, obj);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5972
diff changeset
106 assert(((oop)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
107 // notify jvmti and dtrace (must be after length is set for dtrace)
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
108 post_allocation_notify(klass, (oop)obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
111 HeapWord* CollectedHeap::common_mem_allocate_noinit(KlassHandle klass, size_t size, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Clear unhandled oops for memory allocation. Memory allocation might
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // not take out a lock if from tlab, so clear here.
a61af66fc99e Initial load
duke
parents:
diff changeset
115 CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();)
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
a61af66fc99e Initial load
duke
parents:
diff changeset
119 return NULL; // caller does a CHECK_0 too
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 HeapWord* result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (UseTLAB) {
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
124 result = allocate_from_tlab(klass, THREAD, size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (result != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 assert(!HAS_PENDING_EXCEPTION,
a61af66fc99e Initial load
duke
parents:
diff changeset
127 "Unexpected exception, will result in uninitialized storage");
a61af66fc99e Initial load
duke
parents:
diff changeset
128 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 113
diff changeset
131 bool gc_overhead_limit_was_exceeded = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 result = Universe::heap()->mem_allocate(size,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 &gc_overhead_limit_was_exceeded);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 if (result != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 NOT_PRODUCT(Universe::heap()->
a61af66fc99e Initial load
duke
parents:
diff changeset
136 check_for_non_bad_heap_word_value(result, size));
a61af66fc99e Initial load
duke
parents:
diff changeset
137 assert(!HAS_PENDING_EXCEPTION,
a61af66fc99e Initial load
duke
parents:
diff changeset
138 "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
139 THREAD->incr_allocated_bytes(size * HeapWordSize);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
140
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
141 AllocTracer::send_allocation_outside_tlab_event(klass, size * HeapWordSize);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
142
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 if (!gc_overhead_limit_was_exceeded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
a61af66fc99e Initial load
duke
parents:
diff changeset
149 report_java_out_of_memory("Java heap space");
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 if (JvmtiExport::should_post_resource_exhausted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 JvmtiExport::post_resource_exhausted(
a61af66fc99e Initial load
duke
parents:
diff changeset
153 JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
a61af66fc99e Initial load
duke
parents:
diff changeset
154 "Java heap space");
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 THROW_OOP_0(Universe::out_of_memory_error_java_heap());
a61af66fc99e Initial load
duke
parents:
diff changeset
158 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
a61af66fc99e Initial load
duke
parents:
diff changeset
160 report_java_out_of_memory("GC overhead limit exceeded");
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 if (JvmtiExport::should_post_resource_exhausted()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 JvmtiExport::post_resource_exhausted(
a61af66fc99e Initial load
duke
parents:
diff changeset
164 JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
a61af66fc99e Initial load
duke
parents:
diff changeset
165 "GC overhead limit exceeded");
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 THROW_OOP_0(Universe::out_of_memory_error_gc_overhead_limit());
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
172 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
173 HeapWord* obj = common_mem_allocate_noinit(klass, size, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174 init_obj(obj, size);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
178 HeapWord* CollectedHeap::allocate_from_tlab(KlassHandle klass, Thread* thread, size_t size) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 assert(UseTLAB, "should use UseTLAB");
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 HeapWord* obj = thread->tlab().allocate(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // Otherwise...
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
186 return allocate_from_tlab_slow(klass, thread, size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 void CollectedHeap::init_obj(HeapWord* obj, size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 assert(obj != NULL, "cannot initialize NULL object");
a61af66fc99e Initial load
duke
parents:
diff changeset
191 const size_t hs = oopDesc::header_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 assert(size >= hs, "unexpected object size");
167
feeb96a45707 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 113
diff changeset
193 ((oop)obj)->set_klass_gap(0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194 Copy::fill_to_aligned_words(obj + hs, size - hs);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 oop CollectedHeap::obj_allocate(KlassHandle klass, int size, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 debug_only(check_for_valid_allocation_state());
a61af66fc99e Initial load
duke
parents:
diff changeset
199 assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
a61af66fc99e Initial load
duke
parents:
diff changeset
200 assert(size >= 0, "int won't convert to size_t");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
201 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
202 post_allocation_setup_obj(klass, obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203 NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
a61af66fc99e Initial load
duke
parents:
diff changeset
204 return (oop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 oop CollectedHeap::array_allocate(KlassHandle klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
208 int size,
a61af66fc99e Initial load
duke
parents:
diff changeset
209 int length,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 debug_only(check_for_valid_allocation_state());
a61af66fc99e Initial load
duke
parents:
diff changeset
212 assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
a61af66fc99e Initial load
duke
parents:
diff changeset
213 assert(size >= 0, "int won't convert to size_t");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
214 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
215 post_allocation_setup_array(klass, obj, length);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
a61af66fc99e Initial load
duke
parents:
diff changeset
217 return (oop)obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
3961
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
220 oop CollectedHeap::array_allocate_nozero(KlassHandle klass,
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
221 int size,
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
222 int length,
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
223 TRAPS) {
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
224 debug_only(check_for_valid_allocation_state());
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
225 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
226 assert(size >= 0, "int won't convert to size_t");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7182
diff changeset
227 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
228 ((oop)obj)->set_klass_gap(0);
5972
9a9bb0010c91 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 3961
diff changeset
229 post_allocation_setup_array(klass, obj, length);
3961
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
230 #ifndef PRODUCT
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
231 const size_t hs = oopDesc::header_size()+1;
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
232 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
233 #endif
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
234 return (oop)obj;
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
235 }
a92cdbac8b9e 7081933: Use zeroing elimination optimization for large array
kvn
parents: 3960
diff changeset
236
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5972
diff changeset
237 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
238 NoHeaderExtendedOopClosure no_header_cl(cl);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5972
diff changeset
239 oop_iterate(&no_header_cl);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 5972
diff changeset
240 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 inline bool
a61af66fc99e Initial load
duke
parents:
diff changeset
245 CollectedHeap::promotion_should_fail(volatile size_t* count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Access to count is not atomic; the value does not have to be exact.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 if (PromotionFailureALot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 const size_t gc_num = total_collections();
a61af66fc99e Initial load
duke
parents:
diff changeset
249 const size_t elapsed_gcs = gc_num - _promotion_failure_alot_gc_number;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 if (elapsed_gcs >= PromotionFailureALotInterval) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // Test for unsigned arithmetic wrap-around.
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if (++*count >= PromotionFailureALotCount) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 *count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 inline bool CollectedHeap::promotion_should_fail() {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 return promotion_should_fail(&_promotion_failure_alot_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 inline void CollectedHeap::reset_promotion_should_fail(volatile size_t* count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if (PromotionFailureALot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 _promotion_failure_alot_gc_number = total_collections();
a61af66fc99e Initial load
duke
parents:
diff changeset
268 *count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 inline void CollectedHeap::reset_promotion_should_fail() {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 reset_promotion_should_fail(&_promotion_failure_alot_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275 #endif // #ifndef PRODUCT
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
276
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
277 #endif // SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP