1 /*
   2  * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
   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  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP
  26 #define SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP
  27 
  28 #include "classfile/javaClasses.hpp"
  29 #include "gc/shared/allocTracer.hpp"
  30 #include "gc/shared/collectedHeap.hpp"
  31 #include "gc/shared/threadLocalAllocBuffer.inline.hpp"
  32 #include "memory/universe.hpp"
  33 #include "oops/arrayOop.hpp"
  34 #include "oops/oop.inline.hpp"
  35 #include "prims/jvmtiExport.hpp"
  36 #include "runtime/sharedRuntime.hpp"
  37 #include "runtime/thread.inline.hpp"
  38 #include "services/lowMemoryDetector.hpp"
  39 #include "utilities/align.hpp"
  40 #include "utilities/copy.hpp"
  41 
  42 // Inline allocation implementations.
  43 
  44 void CollectedHeap::post_allocation_setup_common(Klass* klass,
  45                                                  HeapWord* obj_ptr) {
  46   post_allocation_setup_no_klass_install(klass, obj_ptr);
  47   oop obj = (oop)obj_ptr;
  48 #if ! INCLUDE_ALL_GCS
  49   obj->set_klass(klass);
  50 #else
  51   // Need a release store to ensure array/class length, mark word, and
  52   // object zeroing are visible before setting the klass non-NULL, for
  53   // concurrent collectors.
  54   obj->release_set_klass(klass);
  55 #endif
  56 }
  57 
  58 void CollectedHeap::post_allocation_setup_no_klass_install(Klass* klass,
  59                                                            HeapWord* obj_ptr) {
  60   oop obj = (oop)obj_ptr;
  61 
  62   assert(obj != NULL, "NULL object pointer");
  63   if (UseBiasedLocking && (klass != NULL)) {
  64     obj->set_mark(klass->prototype_header());
  65   } else {
  66     // May be bootstrapping
  67     obj->set_mark(markOopDesc::prototype());
  68   }
  69 }
  70 
  71 // Support for jvmti and dtrace
  72 inline void post_allocation_notify(Klass* klass, oop obj, int size) {
  73   // support low memory notifications (no-op if not enabled)
  74   LowMemoryDetector::detect_low_memory_for_collected_pools();
  75 
  76   // support for JVMTI VMObjectAlloc event (no-op if not enabled)
  77   JvmtiExport::vm_object_alloc_event_collector(obj);
  78 
  79   if (DTraceAllocProbes) {
  80     // support for Dtrace object alloc event (no-op most of the time)
  81     if (klass != NULL && klass->name() != NULL) {
  82       SharedRuntime::dtrace_object_alloc(obj, size);
  83     }
  84   }
  85 }
  86 
  87 void CollectedHeap::post_allocation_setup_obj(Klass* klass,
  88                                               HeapWord* obj_ptr,
  89                                               int size) {
  90   post_allocation_setup_common(klass, obj_ptr);
  91   oop obj = (oop)obj_ptr;
  92   assert(Universe::is_bootstrapping() ||
  93          !obj->is_array(), "must not be an array");
  94   // notify jvmti and dtrace
  95   post_allocation_notify(klass, obj, size);
  96 }
  97 
  98 void CollectedHeap::post_allocation_setup_class(Klass* klass,
  99                                                 HeapWord* obj_ptr,
 100                                                 int size) {
 101   // Set oop_size field before setting the _klass field because a
 102   // non-NULL _klass field indicates that the object is parsable by
 103   // concurrent GC.
 104   oop new_cls = (oop)obj_ptr;
 105   assert(size > 0, "oop_size must be positive.");
 106   java_lang_Class::set_oop_size(new_cls, size);
 107   post_allocation_setup_common(klass, obj_ptr);
 108   assert(Universe::is_bootstrapping() ||
 109          !new_cls->is_array(), "must not be an array");
 110   // notify jvmti and dtrace
 111   post_allocation_notify(klass, new_cls, size);
 112 }
 113 
 114 void CollectedHeap::post_allocation_setup_array(Klass* klass,
 115                                                 HeapWord* obj_ptr,
 116                                                 int length) {
 117   // Set array length before setting the _klass field because a
 118   // non-NULL klass field indicates that the object is parsable by
 119   // concurrent GC.
 120   assert(length >= 0, "length should be non-negative");
 121   ((arrayOop)obj_ptr)->set_length(length);
 122   post_allocation_setup_common(klass, obj_ptr);
 123   oop new_obj = (oop)obj_ptr;
 124   assert(new_obj->is_array(), "must be an array");
 125   // notify jvmti and dtrace (must be after length is set for dtrace)
 126   post_allocation_notify(klass, new_obj, new_obj->size());
 127 }
 128 
 129 HeapWord* CollectedHeap::common_mem_allocate_noinit(Klass* klass, size_t size, TRAPS) {
 130 
 131   // Clear unhandled oops for memory allocation.  Memory allocation might
 132   // not take out a lock if from tlab, so clear here.
 133   CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();)
 134 
 135   if (HAS_PENDING_EXCEPTION) {
 136     NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
 137     return NULL;  // caller does a CHECK_0 too
 138   }
 139 
 140   HeapWord* result = NULL;
 141   if (UseTLAB) {
 142     result = allocate_from_tlab(klass, THREAD, size);
 143     if (result != NULL) {
 144       assert(!HAS_PENDING_EXCEPTION,
 145              "Unexpected exception, will result in uninitialized storage");
 146       return result;
 147     }
 148   }
 149   bool gc_overhead_limit_was_exceeded = false;
 150   result = Universe::heap()->mem_allocate(size,
 151                                           &gc_overhead_limit_was_exceeded);
 152   if (result != NULL) {
 153     NOT_PRODUCT(Universe::heap()->
 154       check_for_non_bad_heap_word_value(result, size));
 155     assert(!HAS_PENDING_EXCEPTION,
 156            "Unexpected exception, will result in uninitialized storage");
 157     int size_in_bytes = size * HeapWordSize;
 158     THREAD->incr_allocated_bytes(size_in_bytes);
 159 
 160     AllocTracer::send_allocation_outside_tlab(klass, result, size_in_bytes, THREAD);
 161 
 162     if (ThreadHeapSampler::enabled()) {
 163       THREAD->heap_sampler().check_for_sampling(result, size_in_bytes);
 164     }
 165     return result;
 166   }
 167 
 168 
 169   if (!gc_overhead_limit_was_exceeded) {
 170     // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
 171     report_java_out_of_memory("Java heap space");
 172 
 173     if (JvmtiExport::should_post_resource_exhausted()) {
 174       JvmtiExport::post_resource_exhausted(
 175         JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
 176         "Java heap space");
 177     }
 178 
 179     THROW_OOP_0(Universe::out_of_memory_error_java_heap());
 180   } else {
 181     // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
 182     report_java_out_of_memory("GC overhead limit exceeded");
 183 
 184     if (JvmtiExport::should_post_resource_exhausted()) {
 185       JvmtiExport::post_resource_exhausted(
 186         JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
 187         "GC overhead limit exceeded");
 188     }
 189 
 190     THROW_OOP_0(Universe::out_of_memory_error_gc_overhead_limit());
 191   }
 192 }
 193 
 194 HeapWord* CollectedHeap::common_mem_allocate_init(Klass* klass, size_t size, TRAPS) {
 195   HeapWord* obj = common_mem_allocate_noinit(klass, size, CHECK_NULL);
 196   init_obj(obj, size);
 197   return obj;
 198 }
 199 
 200 HeapWord* CollectedHeap::allocate_from_tlab(Klass* klass, Thread* thread, size_t size) {
 201   assert(UseTLAB, "should use UseTLAB");
 202 
 203   HeapWord* obj = thread->tlab().allocate(size);
 204   if (obj != NULL) {
 205     return obj;
 206   }
 207   // Otherwise...
 208   return allocate_from_tlab_slow(klass, thread, size);
 209 }
 210 
 211 void CollectedHeap::init_obj(HeapWord* obj, size_t size) {
 212   assert(obj != NULL, "cannot initialize NULL object");
 213   const size_t hs = oopDesc::header_size();
 214   assert(size >= hs, "unexpected object size");
 215   ((oop)obj)->set_klass_gap(0);
 216   Copy::fill_to_aligned_words(obj + hs, size - hs);
 217 }
 218 
 219 oop CollectedHeap::obj_allocate(Klass* klass, int size, TRAPS) {
 220   debug_only(check_for_valid_allocation_state());
 221   assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
 222   assert(size >= 0, "int won't convert to size_t");
 223   HeapWord* obj = common_mem_allocate_init(klass, size, CHECK_NULL);
 224   post_allocation_setup_obj(klass, obj, size);
 225   NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
 226   return (oop)obj;
 227 }
 228 
 229 oop CollectedHeap::class_allocate(Klass* klass, int size, TRAPS) {
 230   debug_only(check_for_valid_allocation_state());
 231   assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
 232   assert(size >= 0, "int won't convert to size_t");
 233   HeapWord* obj = common_mem_allocate_init(klass, size, CHECK_NULL);
 234   post_allocation_setup_class(klass, obj, size); // set oop_size
 235   NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
 236   return (oop)obj;
 237 }
 238 
 239 oop CollectedHeap::array_allocate(Klass* klass,
 240                                   int size,
 241                                   int length,
 242                                   TRAPS) {
 243   debug_only(check_for_valid_allocation_state());
 244   assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
 245   assert(size >= 0, "int won't convert to size_t");
 246   HeapWord* obj = common_mem_allocate_init(klass, size, CHECK_NULL);
 247   post_allocation_setup_array(klass, obj, length);
 248   NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
 249   return (oop)obj;
 250 }
 251 
 252 oop CollectedHeap::array_allocate_nozero(Klass* klass,
 253                                          int size,
 254                                          int length,
 255                                          TRAPS) {
 256   debug_only(check_for_valid_allocation_state());
 257   assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
 258   assert(size >= 0, "int won't convert to size_t");
 259   HeapWord* obj = common_mem_allocate_noinit(klass, size, CHECK_NULL);
 260   ((oop)obj)->set_klass_gap(0);
 261   post_allocation_setup_array(klass, obj, length);
 262 #ifndef PRODUCT
 263   const size_t hs = oopDesc::header_size()+1;
 264   Universe::heap()->check_for_non_bad_heap_word_value(obj+hs, size-hs);
 265 #endif
 266   return (oop)obj;
 267 }
 268 
 269 inline HeapWord* CollectedHeap::align_allocation_or_fail(HeapWord* addr,
 270                                                          HeapWord* end,
 271                                                          unsigned short alignment_in_bytes) {
 272   if (alignment_in_bytes <= ObjectAlignmentInBytes) {
 273     return addr;
 274   }
 275 
 276   assert(is_aligned(addr, HeapWordSize),
 277          "Address " PTR_FORMAT " is not properly aligned.", p2i(addr));
 278   assert(is_aligned(alignment_in_bytes, HeapWordSize),
 279          "Alignment size %u is incorrect.", alignment_in_bytes);
 280 
 281   HeapWord* new_addr = align_up(addr, alignment_in_bytes);
 282   size_t padding = pointer_delta(new_addr, addr);
 283 
 284   if (padding == 0) {
 285     return addr;
 286   }
 287 
 288   if (padding < CollectedHeap::min_fill_size()) {
 289     padding += alignment_in_bytes / HeapWordSize;
 290     assert(padding >= CollectedHeap::min_fill_size(),
 291            "alignment_in_bytes %u is expect to be larger "
 292            "than the minimum object size", alignment_in_bytes);
 293     new_addr = addr + padding;
 294   }
 295 
 296   assert(new_addr > addr, "Unexpected arithmetic overflow "
 297          PTR_FORMAT " not greater than " PTR_FORMAT, p2i(new_addr), p2i(addr));
 298   if(new_addr < end) {
 299     CollectedHeap::fill_with_object(addr, padding);
 300     return new_addr;
 301   } else {
 302     return NULL;
 303   }
 304 }
 305 
 306 #endif // SHARE_VM_GC_SHARED_COLLECTEDHEAP_INLINE_HPP