hotspot/src/share/vm/gc_interface/collectedHeap.inline.hpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 593 803947e176bd
child 1374 4c24294029a9
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2001-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Inline allocation implementations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
void CollectedHeap::post_allocation_setup_common(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
                                                 HeapWord* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
                                                 size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  post_allocation_setup_no_klass_install(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  post_allocation_install_obj_klass(klass, oop(obj), (int) size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
void CollectedHeap::post_allocation_setup_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
                                                           HeapWord* objPtr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
                                                           size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  oop obj = (oop)objPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  assert(obj != NULL, "NULL object pointer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  if (UseBiasedLocking && (klass() != NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    obj->set_mark(klass->prototype_header());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    // May be bootstrapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    obj->set_mark(markOopDesc::prototype());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // support low memory notifications (no-op if not enabled)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  LowMemoryDetector::detect_low_memory_for_collected_pools();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void CollectedHeap::post_allocation_install_obj_klass(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                                                   oop obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                                                   int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // These asserts are kind of complicated because of klassKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // and the beginning of the world.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  assert(klass() != NULL || !Universe::is_fully_initialized(), "NULL klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  assert(klass() == NULL || klass()->is_klass(), "not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  assert(klass() == NULL || klass()->klass_part() != NULL, "not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  assert(obj != NULL, "NULL object pointer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  obj->set_klass(klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  assert(!Universe::is_fully_initialized() || obj->blueprint() != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
         "missing blueprint");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    64
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    66
// Support for jvmti and dtrace
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    67
inline void post_allocation_notify(KlassHandle klass, oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // support for JVMTI VMObjectAlloc event (no-op if not enabled)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  JvmtiExport::vm_object_alloc_event_collector(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (DTraceAllocProbes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    // support for Dtrace object alloc event (no-op most of the time)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    if (klass() != NULL && klass()->klass_part()->name() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      SharedRuntime::dtrace_object_alloc(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void CollectedHeap::post_allocation_setup_obj(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                              HeapWord* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                              size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  post_allocation_setup_common(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(Universe::is_bootstrapping() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
         !((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
    85
  // notify jvmti and dtrace
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    86
  post_allocation_notify(klass, (oop)obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
void CollectedHeap::post_allocation_setup_array(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                                                HeapWord* obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                                                size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                                                int length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  assert(length >= 0, "length should be non-negative");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    94
  post_allocation_setup_common(klass, obj, size);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    95
  // Must set length after installing klass as set_klass zeros the length
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    96
  // field in UseCompressedOops
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  ((arrayOop)obj)->set_length(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  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
    99
  // 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
   100
  post_allocation_notify(klass, (oop)obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
HeapWord* CollectedHeap::common_mem_allocate_noinit(size_t size, bool is_noref, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Clear unhandled oops for memory allocation.  Memory allocation might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // not take out a lock if from tlab, so clear here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    return NULL;  // caller does a CHECK_0 too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // We may want to update this, is_noref objects might not be allocated in TLABs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  HeapWord* result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  if (UseTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    result = CollectedHeap::allocate_from_tlab(THREAD, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      assert(!HAS_PENDING_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
             "Unexpected exception, will result in uninitialized storage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  bool gc_overhead_limit_was_exceeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  result = Universe::heap()->mem_allocate(size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                                          is_noref,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
                                          false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                                          &gc_overhead_limit_was_exceeded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    NOT_PRODUCT(Universe::heap()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      check_for_non_bad_heap_word_value(result, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    assert(!HAS_PENDING_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
           "Unexpected exception, will result in uninitialized storage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  if (!gc_overhead_limit_was_exceeded) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    report_java_out_of_memory("Java heap space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    if (JvmtiExport::should_post_resource_exhausted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      JvmtiExport::post_resource_exhausted(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
        "Java heap space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    THROW_OOP_0(Universe::out_of_memory_error_java_heap());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    report_java_out_of_memory("GC overhead limit exceeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    if (JvmtiExport::should_post_resource_exhausted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      JvmtiExport::post_resource_exhausted(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
        "GC overhead limit exceeded");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    THROW_OOP_0(Universe::out_of_memory_error_gc_overhead_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
HeapWord* CollectedHeap::common_mem_allocate_init(size_t size, bool is_noref, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  HeapWord* obj = common_mem_allocate_noinit(size, is_noref, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  init_obj(obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// Need to investigate, do we really want to throw OOM exception here?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
HeapWord* CollectedHeap::common_permanent_mem_allocate_noinit(size_t size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  if (HAS_PENDING_EXCEPTION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    return NULL;  // caller does a CHECK_NULL too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  if (CIFireOOMAt > 0 && THREAD->is_Compiler_thread() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      ++_fire_out_of_memory_count >= CIFireOOMAt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    // For testing of OOM handling in the CI throw an OOM and see how
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    // it does.  Historically improper handling of these has resulted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    // in crashes which we really don't want to have in the CI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    THROW_OOP_0(Universe::out_of_memory_error_perm_gen());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  HeapWord* result = Universe::heap()->permanent_mem_allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  if (result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    NOT_PRODUCT(Universe::heap()->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      check_for_non_bad_heap_word_value(result, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    assert(!HAS_PENDING_EXCEPTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
           "Unexpected exception, will result in uninitialized storage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  report_java_out_of_memory("PermGen space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  if (JvmtiExport::should_post_resource_exhausted()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    JvmtiExport::post_resource_exhausted(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        "PermGen space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  THROW_OOP_0(Universe::out_of_memory_error_perm_gen());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
HeapWord* CollectedHeap::common_permanent_mem_allocate_init(size_t size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  HeapWord* obj = common_permanent_mem_allocate_noinit(size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  init_obj(obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
HeapWord* CollectedHeap::allocate_from_tlab(Thread* thread, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  assert(UseTLAB, "should use UseTLAB");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  HeapWord* obj = thread->tlab().allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Otherwise...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  return allocate_from_tlab_slow(thread, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
void CollectedHeap::init_obj(HeapWord* obj, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  assert(obj != NULL, "cannot initialize NULL object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  const size_t hs = oopDesc::header_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  assert(size >= hs, "unexpected object size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  Copy::fill_to_aligned_words(obj + hs, size - hs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
oop CollectedHeap::obj_allocate(KlassHandle klass, int size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  HeapWord* obj = common_mem_allocate_init(size, false, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  post_allocation_setup_obj(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
oop CollectedHeap::array_allocate(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
                                  int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
                                  int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
                                  TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  HeapWord* obj = common_mem_allocate_init(size, false, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  post_allocation_setup_array(klass, obj, size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
oop CollectedHeap::large_typearray_allocate(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
                                            int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                                            int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                                            TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  HeapWord* obj = common_mem_allocate_init(size, true, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  post_allocation_setup_array(klass, obj, size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
oop CollectedHeap::permanent_obj_allocate(KlassHandle klass, int size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  oop obj = permanent_obj_allocate_no_klass_install(klass, size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  post_allocation_install_obj_klass(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value((HeapWord*) obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
                                                              size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
oop CollectedHeap::permanent_obj_allocate_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                                                           int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                                                           TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  HeapWord* obj = common_permanent_mem_allocate_init(size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  post_allocation_setup_no_klass_install(klass, obj, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
oop CollectedHeap::permanent_array_allocate(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                                            int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                                            int length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                                            TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  debug_only(check_for_valid_allocation_state());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  assert(size >= 0, "int won't convert to size_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  HeapWord* obj = common_permanent_mem_allocate_init(size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  post_allocation_setup_array(klass, obj, size, length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  NOT_PRODUCT(Universe::heap()->check_for_bad_heap_word_value(obj, size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  return (oop)obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// Returns "TRUE" if "p" is a method oop in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// current heap with high probability. NOTE: The main
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// current consumers of this interface are Forte::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// and ThreadProfiler::. In these cases, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// interpreter frame from which "p" came, may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// under construction when sampled asynchronously, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// the clients want to check that it represents a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// valid method before using it. Nonetheless since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
// the clients do not typically lock out GC, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
// predicate is_valid_method() is not stable, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
// it is possible that by the time "p" is used, it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// is no longer valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
inline bool CollectedHeap::is_valid_method(oop p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    p != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    // Check whether it is aligned at a HeapWord boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    Space::is_aligned(p) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    // Check whether "method" is in the allocated part of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    // permanent generation -- this needs to be checked before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    // p->klass() below to avoid a SEGV (but see below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    // for a potential window of vulnerability).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    is_permanent((void*)p) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    // See if GC is active; however, there is still an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    // apparently unavoidable window after this call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    // and before the client of this interface uses "p".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    // If the client chooses not to lock out GC, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    // it's a risk the client must accept.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    !is_gc_active() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    // Check that p is a methodOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    p->klass() == Universe::methodKlassObj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
inline bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
CollectedHeap::promotion_should_fail(volatile size_t* count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // Access to count is not atomic; the value does not have to be exact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  if (PromotionFailureALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    const size_t gc_num = total_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    const size_t elapsed_gcs = gc_num - _promotion_failure_alot_gc_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    if (elapsed_gcs >= PromotionFailureALotInterval) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
      // Test for unsigned arithmetic wrap-around.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
      if (++*count >= PromotionFailureALotCount) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
        *count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
inline bool CollectedHeap::promotion_should_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  return promotion_should_fail(&_promotion_failure_alot_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
inline void CollectedHeap::reset_promotion_should_fail(volatile size_t* count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  if (PromotionFailureALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    _promotion_failure_alot_gc_number = total_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    *count = 0;
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
inline void CollectedHeap::reset_promotion_should_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  reset_promotion_should_fail(&_promotion_failure_alot_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
#endif  // #ifndef PRODUCT