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