hotspot/src/share/vm/gc_interface/collectedHeap.inline.hpp
author never
Sun, 25 Sep 2011 16:03:29 -0700
changeset 10565 dc90c239f4ec
parent 10501 5bce84af0883
child 10566 630c177ec580
permissions -rw-r--r--
7089790: integrate bsd-port changes Reviewed-by: kvn, twisti, jrose Contributed-by: Kurt Miller <kurt@intricatesoftware.com>, Greg Lewis <glewis@eyesbeyond.com>, Jung-uk Kim <jkim@freebsd.org>, Christos Zoulas <christos@zoulas.com>, Landon Fuller <landonf@plausible.coop>, The FreeBSD Foundation <board@freebsdfoundation.org>, Michael Franz <mvfranz@gmail.com>, Roger Hoover <rhoover@apple.com>, Alexander Strange <astrange@apple.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7724
a92d706dbdd5 7003271: Hotspot should track cumulative Java heap bytes allocated on a per-thread basis
phh
parents: 7397
diff changeset
     2
 * Copyright (c) 2001, 2011, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_interface/collectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/threadLocalAllocBuffer.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/arrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/thread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "services/lowMemoryDetector.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
# include "thread_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
# include "thread_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
# include "thread_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10501
diff changeset
    46
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10501
diff changeset
    47
# include "thread_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10501
diff changeset
    48
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    49
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// Inline allocation implementations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void CollectedHeap::post_allocation_setup_common(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                                                 HeapWord* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                                                 size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  post_allocation_setup_no_klass_install(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  post_allocation_install_obj_klass(klass, oop(obj), (int) size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void CollectedHeap::post_allocation_setup_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                                                           HeapWord* objPtr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                                                           size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  oop obj = (oop)objPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  assert(obj != NULL, "NULL object pointer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  if (UseBiasedLocking && (klass() != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    obj->set_mark(klass->prototype_header());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    // May be bootstrapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    obj->set_mark(markOopDesc::prototype());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void CollectedHeap::post_allocation_install_obj_klass(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                                   oop obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                                   int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // These asserts are kind of complicated because of klassKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // and the beginning of the world.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  assert(klass() != NULL || !Universe::is_fully_initialized(), "NULL klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  assert(klass() == NULL || klass()->is_klass(), "not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  assert(klass() == NULL || klass()->klass_part() != NULL, "not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  assert(obj != NULL, "NULL object pointer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  obj->set_klass(klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(!Universe::is_fully_initialized() || obj->blueprint() != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
         "missing blueprint");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    85
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    87
// Support for jvmti and dtrace
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    88
inline void post_allocation_notify(KlassHandle klass, oop obj) {
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    89
  // 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
    90
  LowMemoryDetector::detect_low_memory_for_collected_pools();
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    91
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // support for JVMTI VMObjectAlloc event (no-op if not enabled)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  JvmtiExport::vm_object_alloc_event_collector(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  if (DTraceAllocProbes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    // support for Dtrace object alloc event (no-op most of the time)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    if (klass() != NULL && klass()->klass_part()->name() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      SharedRuntime::dtrace_object_alloc(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
void CollectedHeap::post_allocation_setup_obj(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                              HeapWord* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                              size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  post_allocation_setup_common(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  assert(Universe::is_bootstrapping() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
         !((oop)obj)->blueprint()->oop_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
   109
  // notify jvmti and dtrace
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   110
  post_allocation_notify(klass, (oop)obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
void CollectedHeap::post_allocation_setup_array(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                                                HeapWord* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                                                size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                                                int length) {
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 360
diff changeset
   117
  // 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
   118
  // 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
   119
  // indicates that the object is parsable by concurrent GC.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  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
   121
  ((arrayOop)obj)->set_length(length);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   122
  post_allocation_setup_common(klass, obj, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  assert(((oop)obj)->blueprint()->oop_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
   124
  // notify jvmti and dtrace (must be after length is set for dtrace)
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   125
  post_allocation_notify(klass, (oop)obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 7724
diff changeset
   128
HeapWord* CollectedHeap::common_mem_allocate_noinit(size_t size, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Clear unhandled oops for memory allocation.  Memory allocation might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // not take out a lock if from tlab, so clear here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    return NULL;  // caller does a CHECK_0 too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  HeapWord* result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  if (UseTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    result = CollectedHeap::allocate_from_tlab(THREAD, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      assert(!HAS_PENDING_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
             "Unexpected exception, will result in uninitialized storage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   148
  bool gc_overhead_limit_was_exceeded = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  result = Universe::heap()->mem_allocate(size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                          &gc_overhead_limit_was_exceeded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    NOT_PRODUCT(Universe::heap()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      check_for_non_bad_heap_word_value(result, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    assert(!HAS_PENDING_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
           "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
   156
    THREAD->incr_allocated_bytes(size * HeapWordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  if (!gc_overhead_limit_was_exceeded) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    report_java_out_of_memory("Java heap space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    if (JvmtiExport::should_post_resource_exhausted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
      JvmtiExport::post_resource_exhausted(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
        "Java heap space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    THROW_OOP_0(Universe::out_of_memory_error_java_heap());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    report_java_out_of_memory("GC overhead limit exceeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (JvmtiExport::should_post_resource_exhausted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      JvmtiExport::post_resource_exhausted(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        "GC overhead limit exceeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    THROW_OOP_0(Universe::out_of_memory_error_gc_overhead_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 7724
diff changeset
   186
HeapWord* CollectedHeap::common_mem_allocate_init(size_t size, TRAPS) {
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 7724
diff changeset
   187
  HeapWord* obj = common_mem_allocate_noinit(size, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  init_obj(obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// Need to investigate, do we really want to throw OOM exception here?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
HeapWord* CollectedHeap::common_permanent_mem_allocate_noinit(size_t size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    return NULL;  // caller does a CHECK_NULL too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  if (CIFireOOMAt > 0 && THREAD->is_Compiler_thread() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      ++_fire_out_of_memory_count >= CIFireOOMAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    // For testing of OOM handling in the CI throw an OOM and see how
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    // it does.  Historically improper handling of these has resulted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    // in crashes which we really don't want to have in the CI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    THROW_OOP_0(Universe::out_of_memory_error_perm_gen());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  HeapWord* result = Universe::heap()->permanent_mem_allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    NOT_PRODUCT(Universe::heap()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      check_for_non_bad_heap_word_value(result, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    assert(!HAS_PENDING_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
           "Unexpected exception, will result in uninitialized storage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  report_java_out_of_memory("PermGen space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  if (JvmtiExport::should_post_resource_exhausted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    JvmtiExport::post_resource_exhausted(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
        "PermGen space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  THROW_OOP_0(Universe::out_of_memory_error_perm_gen());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
HeapWord* CollectedHeap::common_permanent_mem_allocate_init(size_t size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  HeapWord* obj = common_permanent_mem_allocate_noinit(size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  init_obj(obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
HeapWord* CollectedHeap::allocate_from_tlab(Thread* thread, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  assert(UseTLAB, "should use UseTLAB");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  HeapWord* obj = thread->tlab().allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  if (obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // Otherwise...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  return allocate_from_tlab_slow(thread, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
void CollectedHeap::init_obj(HeapWord* obj, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  assert(obj != NULL, "cannot initialize NULL object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  const size_t hs = oopDesc::header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  assert(size >= hs, "unexpected object size");
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 360
diff changeset
   250
  ((oop)obj)->set_klass_gap(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  Copy::fill_to_aligned_words(obj + hs, size - hs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
oop CollectedHeap::obj_allocate(KlassHandle klass, int size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  assert(size >= 0, "int won't convert to size_t");
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 7724
diff changeset
   258
  HeapWord* obj = common_mem_allocate_init(size, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  post_allocation_setup_obj(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
oop CollectedHeap::array_allocate(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                                  int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
                                  int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                                  TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  assert(size >= 0, "int won't convert to size_t");
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 7724
diff changeset
   271
  HeapWord* obj = common_mem_allocate_init(size, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  post_allocation_setup_array(klass, obj, size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
oop CollectedHeap::permanent_obj_allocate(KlassHandle klass, int size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  oop obj = permanent_obj_allocate_no_klass_install(klass, size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  post_allocation_install_obj_klass(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value((HeapWord*) obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
                                                              size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
oop CollectedHeap::permanent_obj_allocate_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                                                           int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                                                           TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  HeapWord* obj = common_permanent_mem_allocate_init(size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  post_allocation_setup_no_klass_install(klass, obj, size);
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 9997
diff changeset
   293
#ifndef PRODUCT
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 9997
diff changeset
   294
  const size_t hs = oopDesc::header_size();
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 9997
diff changeset
   295
  Universe::heap()->check_for_bad_heap_word_value(obj+hs, size-hs);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 9997
diff changeset
   296
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
oop CollectedHeap::permanent_array_allocate(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
                                            int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
                                            int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
                                            TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  HeapWord* obj = common_permanent_mem_allocate_init(size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  post_allocation_setup_array(klass, obj, size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// Returns "TRUE" if "p" is a method oop in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// current heap with high probability. NOTE: The main
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// current consumers of this interface are Forte::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
// and ThreadProfiler::. In these cases, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
// interpreter frame from which "p" came, may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// under construction when sampled asynchronously, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// the clients want to check that it represents a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// valid method before using it. Nonetheless since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
// the clients do not typically lock out GC, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
// predicate is_valid_method() is not stable, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// it is possible that by the time "p" is used, it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
// is no longer valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
inline bool CollectedHeap::is_valid_method(oop p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    p != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    // Check whether it is aligned at a HeapWord boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    Space::is_aligned(p) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    // Check whether "method" is in the allocated part of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    // permanent generation -- this needs to be checked before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    // p->klass() below to avoid a SEGV (but see below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    // for a potential window of vulnerability).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    is_permanent((void*)p) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    // See if GC is active; however, there is still an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
    // apparently unavoidable window after this call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    // and before the client of this interface uses "p".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    // If the client chooses not to lock out GC, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    // it's a risk the client must accept.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    !is_gc_active() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    // Check that p is a methodOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    p->klass() == Universe::methodKlassObj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
inline bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
CollectedHeap::promotion_should_fail(volatile size_t* count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Access to count is not atomic; the value does not have to be exact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  if (PromotionFailureALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    const size_t gc_num = total_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    const size_t elapsed_gcs = gc_num - _promotion_failure_alot_gc_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    if (elapsed_gcs >= PromotionFailureALotInterval) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      // Test for unsigned arithmetic wrap-around.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      if (++*count >= PromotionFailureALotCount) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
        *count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
inline bool CollectedHeap::promotion_should_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  return promotion_should_fail(&_promotion_failure_alot_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
inline void CollectedHeap::reset_promotion_should_fail(volatile size_t* count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if (PromotionFailureALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    _promotion_failure_alot_gc_number = total_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    *count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
inline void CollectedHeap::reset_promotion_should_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  reset_promotion_should_fail(&_promotion_failure_alot_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
#endif  // #ifndef PRODUCT
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   384
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   385
#endif // SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_INLINE_HPP