src/hotspot/share/gc/shared/memAllocator.cpp
author eosterlund
Thu, 28 Jun 2018 14:22:28 +0200
changeset 50882 80abf702eed8
child 51817 46eac084082d
permissions -rw-r--r--
8205683: Refactor heap allocation to separate concerns Reviewed-by: pliden, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50882
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     1
/*
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     4
 *
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     7
 * published by the Free Software Foundation.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     8
 *
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    13
 * accompanied this code).
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    14
 *
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    18
 *
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    21
 * questions.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    22
 *
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    23
 */
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    24
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    25
#include "precompiled.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    26
#include "classfile/javaClasses.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    27
#include "gc/shared/allocTracer.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    28
#include "gc/shared/collectedHeap.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    29
#include "gc/shared/memAllocator.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    30
#include "gc/shared/threadLocalAllocBuffer.inline.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    31
#include "memory/universe.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    32
#include "oops/arrayOop.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    33
#include "oops/oop.inline.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    34
#include "prims/jvmtiExport.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    35
#include "runtime/sharedRuntime.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    36
#include "runtime/handles.inline.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    37
#include "runtime/thread.inline.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    38
#include "services/lowMemoryDetector.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    39
#include "utilities/align.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    40
#include "utilities/copy.hpp"
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    41
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    42
class MemAllocator::Allocation: StackObj {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    43
  friend class MemAllocator;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    44
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    45
  const MemAllocator& _allocator;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    46
  Thread*             _thread;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    47
  oop*                _obj_ptr;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    48
  bool                _overhead_limit_exceeded;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    49
  bool                _allocated_outside_tlab;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    50
  size_t              _allocated_tlab_size;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    51
  bool                _tlab_end_reset_for_sample;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    52
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    53
  bool check_out_of_memory();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    54
  void verify_before();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    55
  void verify_after();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    56
  void notify_allocation();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    57
  void notify_allocation_jvmti_allocation_event();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    58
  void notify_allocation_jvmti_sampler();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    59
  void notify_allocation_low_memory_detector();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    60
  void notify_allocation_jfr_sampler();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    61
  void notify_allocation_dtrace_sampler();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    62
  void check_for_bad_heap_word_value() const;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    63
#ifdef ASSERT
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    64
  void check_for_valid_allocation_state() const;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    65
#endif
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    66
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    67
  class PreserveObj;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    68
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    69
public:
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    70
  Allocation(const MemAllocator& allocator, oop* obj_ptr)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    71
    : _allocator(allocator),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    72
      _thread(Thread::current()),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    73
      _obj_ptr(obj_ptr),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    74
      _overhead_limit_exceeded(false),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    75
      _allocated_outside_tlab(false),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    76
      _allocated_tlab_size(0),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    77
      _tlab_end_reset_for_sample(false)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    78
  {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    79
    verify_before();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    80
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    81
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    82
  ~Allocation() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    83
    if (!check_out_of_memory()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    84
      verify_after();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    85
      notify_allocation();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    86
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    87
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    88
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    89
  oop obj() const { return *_obj_ptr; }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    90
};
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    91
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    92
class MemAllocator::Allocation::PreserveObj: StackObj {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    93
  HandleMark _handle_mark;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    94
  Handle     _handle;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    95
  oop* const _obj_ptr;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    96
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    97
public:
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    98
  PreserveObj(Thread* thread, oop* obj_ptr)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
    99
    : _handle_mark(thread),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   100
      _handle(thread, *obj_ptr),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   101
      _obj_ptr(obj_ptr)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   102
  {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   103
    *obj_ptr = NULL;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   104
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   105
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   106
  ~PreserveObj() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   107
    *_obj_ptr = _handle();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   108
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   109
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   110
  oop operator()() const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   111
    return _handle();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   112
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   113
};
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   114
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   115
bool MemAllocator::Allocation::check_out_of_memory() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   116
  Thread* THREAD = _thread;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   117
  assert(!HAS_PENDING_EXCEPTION, "Unexpected exception, will result in uninitialized storage");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   118
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   119
  if (obj() != NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   120
    return false;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   121
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   122
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   123
  if (!_overhead_limit_exceeded) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   124
    // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   125
    report_java_out_of_memory("Java heap space");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   126
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   127
    if (JvmtiExport::should_post_resource_exhausted()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   128
      JvmtiExport::post_resource_exhausted(
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   129
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   130
        "Java heap space");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   131
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   132
    THROW_OOP_(Universe::out_of_memory_error_java_heap(), true);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   133
  } else {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   134
    // -XX:+HeapDumpOnOutOfMemoryError and -XX:OnOutOfMemoryError support
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   135
    report_java_out_of_memory("GC overhead limit exceeded");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   136
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   137
    if (JvmtiExport::should_post_resource_exhausted()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   138
      JvmtiExport::post_resource_exhausted(
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   139
        JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR | JVMTI_RESOURCE_EXHAUSTED_JAVA_HEAP,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   140
        "GC overhead limit exceeded");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   141
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   142
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   143
    THROW_OOP_(Universe::out_of_memory_error_gc_overhead_limit(), true);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   144
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   145
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   146
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   147
void MemAllocator::Allocation::verify_before() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   148
  // Clear unhandled oops for memory allocation.  Memory allocation might
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   149
  // not take out a lock if from tlab, so clear here.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   150
  Thread* THREAD = _thread;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   151
  CHECK_UNHANDLED_OOPS_ONLY(THREAD->clear_unhandled_oops();)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   152
  assert(!HAS_PENDING_EXCEPTION, "Should not allocate with exception pending");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   153
  debug_only(check_for_valid_allocation_state());
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   154
  assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   155
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   156
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   157
void MemAllocator::Allocation::verify_after() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   158
  NOT_PRODUCT(check_for_bad_heap_word_value();)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   159
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   160
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   161
void MemAllocator::Allocation::check_for_bad_heap_word_value() const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   162
  MemRegion obj_range = _allocator.obj_memory_range(obj());
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   163
  HeapWord* addr = obj_range.start();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   164
  size_t size = obj_range.word_size();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   165
  if (CheckMemoryInitialization && ZapUnusedHeapArea) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   166
    for (size_t slot = 0; slot < size; slot += 1) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   167
      assert((*(intptr_t*) (addr + slot)) != ((intptr_t) badHeapWordVal),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   168
             "Found badHeapWordValue in post-allocation check");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   169
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   170
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   171
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   172
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   173
#ifdef ASSERT
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   174
void MemAllocator::Allocation::check_for_valid_allocation_state() const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   175
  // How to choose between a pending exception and a potential
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   176
  // OutOfMemoryError?  Don't allow pending exceptions.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   177
  // This is a VM policy failure, so how do we exhaustively test it?
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   178
  assert(!_thread->has_pending_exception(),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   179
         "shouldn't be allocating with pending exception");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   180
  if (StrictSafepointChecks) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   181
    assert(_thread->allow_allocation(),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   182
           "Allocation done by thread for which allocation is blocked "
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   183
           "by No_Allocation_Verifier!");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   184
    // Allocation of an oop can always invoke a safepoint,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   185
    // hence, the true argument
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   186
    _thread->check_for_valid_safepoint_state(true);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   187
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   188
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   189
#endif
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   190
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   191
void MemAllocator::Allocation::notify_allocation_jvmti_sampler() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   192
  // support for JVMTI VMObjectAlloc event (no-op if not enabled)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   193
  JvmtiExport::vm_object_alloc_event_collector(obj());
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   194
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   195
  if (!ThreadHeapSampler::enabled()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   196
    // Sampling disabled
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   197
    return;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   198
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   199
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   200
  if (!_allocated_outside_tlab && _allocated_tlab_size == 0 && !_tlab_end_reset_for_sample) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   201
    // Sample if it's a non-TLAB allocation, or a TLAB allocation that either refills the TLAB
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   202
    // or expands it due to taking a sampler induced slow path.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   203
    return;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   204
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   205
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   206
  assert(JavaThread::current()->heap_sampler().add_sampling_collector(),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   207
         "Should never return false.");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   208
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   209
  // Only check if the sampler could actually sample something in this path.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   210
  assert(!JvmtiExport::should_post_sampled_object_alloc() ||
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   211
         !JvmtiSampledObjectAllocEventCollector::object_alloc_is_safe_to_sample() ||
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   212
         _thread->heap_sampler().sampling_collector_present(),
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   213
         "Sampling collector not present.");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   214
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   215
  if (JvmtiExport::should_post_sampled_object_alloc()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   216
    // If we want to be sampling, protect the allocated object with a Handle
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   217
    // before doing the callback. The callback is done in the destructor of
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   218
    // the JvmtiSampledObjectAllocEventCollector.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   219
    PreserveObj obj_h(_thread, _obj_ptr);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   220
    JvmtiSampledObjectAllocEventCollector collector;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   221
    size_t size_in_bytes = _allocator._word_size * HeapWordSize;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   222
    ThreadLocalAllocBuffer& tlab = _thread->tlab();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   223
    size_t bytes_since_last = _allocated_outside_tlab ? 0 : tlab.bytes_since_last_sample_point();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   224
    _thread->heap_sampler().check_for_sampling(obj_h(), size_in_bytes, bytes_since_last);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   225
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   226
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   227
  assert(JavaThread::current()->heap_sampler().remove_sampling_collector(), "Should never return false.");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   228
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   229
  if (_tlab_end_reset_for_sample || _allocated_tlab_size != 0) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   230
    _thread->tlab().set_sample_end();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   231
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   232
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   233
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   234
void MemAllocator::Allocation::notify_allocation_low_memory_detector() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   235
  // support low memory notifications (no-op if not enabled)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   236
  LowMemoryDetector::detect_low_memory_for_collected_pools();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   237
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   238
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   239
void MemAllocator::Allocation::notify_allocation_jfr_sampler() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   240
  HeapWord* mem = (HeapWord*)obj();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   241
  size_t size_in_bytes = _allocator._word_size * HeapWordSize;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   242
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   243
  if (_allocated_outside_tlab) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   244
    AllocTracer::send_allocation_outside_tlab(_allocator._klass, mem, size_in_bytes, _thread);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   245
  } else if (_allocated_tlab_size != 0) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   246
    // TLAB was refilled
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   247
    AllocTracer::send_allocation_in_new_tlab(_allocator._klass, mem, _allocated_tlab_size * HeapWordSize,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   248
                                             size_in_bytes, _thread);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   249
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   250
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   251
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   252
void MemAllocator::Allocation::notify_allocation_dtrace_sampler() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   253
  if (DTraceAllocProbes) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   254
    // support for Dtrace object alloc event (no-op most of the time)
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   255
    Klass* klass = _allocator._klass;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   256
    size_t word_size = _allocator._word_size;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   257
    if (klass != NULL && klass->name() != NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   258
      SharedRuntime::dtrace_object_alloc(obj(), (int)word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   259
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   260
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   261
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   262
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   263
void MemAllocator::Allocation::notify_allocation() {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   264
  notify_allocation_low_memory_detector();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   265
  notify_allocation_jfr_sampler();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   266
  notify_allocation_dtrace_sampler();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   267
  notify_allocation_jvmti_sampler();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   268
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   269
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   270
HeapWord* MemAllocator::allocate_outside_tlab(Allocation& allocation) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   271
  allocation._allocated_outside_tlab = true;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   272
  HeapWord* mem = _heap->mem_allocate(_word_size, &allocation._overhead_limit_exceeded);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   273
  if (mem == NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   274
    return mem;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   275
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   276
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   277
  NOT_PRODUCT(_heap->check_for_non_bad_heap_word_value(mem, _word_size));
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   278
  size_t size_in_bytes = _word_size * HeapWordSize;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   279
  _thread->incr_allocated_bytes(size_in_bytes);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   280
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   281
  return mem;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   282
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   283
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   284
HeapWord* MemAllocator::allocate_inside_tlab(Allocation& allocation) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   285
  assert(UseTLAB, "should use UseTLAB");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   286
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   287
  // Try allocating from an existing TLAB.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   288
  HeapWord* mem = _thread->tlab().allocate(_word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   289
  if (mem != NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   290
    return mem;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   291
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   292
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   293
  // Try refilling the TLAB and allocating the object in it.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   294
  return allocate_inside_tlab_slow(allocation);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   295
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   296
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   297
HeapWord* MemAllocator::allocate_inside_tlab_slow(Allocation& allocation) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   298
  HeapWord* mem = NULL;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   299
  ThreadLocalAllocBuffer& tlab = _thread->tlab();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   300
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   301
  if (ThreadHeapSampler::enabled()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   302
    // Try to allocate the sampled object from TLAB, it is possible a sample
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   303
    // point was put and the TLAB still has space.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   304
    tlab.set_back_allocation_end();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   305
    mem = tlab.allocate(_word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   306
    if (mem != NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   307
      allocation._tlab_end_reset_for_sample = true;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   308
      return mem;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   309
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   310
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   311
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   312
  // Retain tlab and allocate object in shared space if
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   313
  // the amount free in the tlab is too large to discard.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   314
  if (tlab.free() > tlab.refill_waste_limit()) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   315
    tlab.record_slow_allocation(_word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   316
    return NULL;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   317
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   318
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   319
  // Discard tlab and allocate a new one.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   320
  // To minimize fragmentation, the last TLAB may be smaller than the rest.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   321
  size_t new_tlab_size = tlab.compute_size(_word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   322
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   323
  tlab.clear_before_allocation();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   324
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   325
  if (new_tlab_size == 0) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   326
    return NULL;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   327
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   328
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   329
  // Allocate a new TLAB requesting new_tlab_size. Any size
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   330
  // between minimal and new_tlab_size is accepted.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   331
  size_t min_tlab_size = ThreadLocalAllocBuffer::compute_min_size(_word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   332
  mem = _heap->allocate_new_tlab(min_tlab_size, new_tlab_size, &allocation._allocated_tlab_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   333
  if (mem == NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   334
    assert(allocation._allocated_tlab_size == 0,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   335
           "Allocation failed, but actual size was updated. min: " SIZE_FORMAT
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   336
           ", desired: " SIZE_FORMAT ", actual: " SIZE_FORMAT,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   337
           min_tlab_size, new_tlab_size, allocation._allocated_tlab_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   338
    return NULL;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   339
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   340
  assert(allocation._allocated_tlab_size != 0, "Allocation succeeded but actual size not updated. mem at: "
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   341
         PTR_FORMAT " min: " SIZE_FORMAT ", desired: " SIZE_FORMAT,
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   342
         p2i(mem), min_tlab_size, new_tlab_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   343
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   344
  if (ZeroTLAB) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   345
    // ..and clear it.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   346
    Copy::zero_to_words(mem, allocation._allocated_tlab_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   347
  } else {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   348
    // ...and zap just allocated object.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   349
#ifdef ASSERT
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   350
    // Skip mangling the space corresponding to the object header to
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   351
    // ensure that the returned space is not considered parsable by
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   352
    // any concurrent GC thread.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   353
    size_t hdr_size = oopDesc::header_size();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   354
    Copy::fill_to_words(mem + hdr_size, allocation._allocated_tlab_size - hdr_size, badHeapWordVal);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   355
#endif // ASSERT
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   356
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   357
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   358
  tlab.fill(mem, mem + _word_size, allocation._allocated_tlab_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   359
  return mem;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   360
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   361
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   362
HeapWord* MemAllocator::mem_allocate(Allocation& allocation) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   363
  if (UseTLAB) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   364
    HeapWord* result = allocate_inside_tlab(allocation);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   365
    if (result != NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   366
      return result;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   367
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   368
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   369
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   370
  return allocate_outside_tlab(allocation);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   371
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   372
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   373
oop MemAllocator::allocate() const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   374
  oop obj = NULL;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   375
  {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   376
    Allocation allocation(*this, &obj);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   377
    HeapWord* mem = mem_allocate(allocation);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   378
    if (mem != NULL) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   379
      obj = initialize(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   380
    }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   381
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   382
  return obj;
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   383
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   384
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   385
void MemAllocator::mem_clear(HeapWord* mem) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   386
  assert(mem != NULL, "cannot initialize NULL object");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   387
  const size_t hs = oopDesc::header_size();
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   388
  assert(_word_size >= hs, "unexpected object size");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   389
  oopDesc::set_klass_gap(mem, 0);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   390
  Copy::fill_to_aligned_words(mem + hs, _word_size - hs);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   391
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   392
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   393
oop MemAllocator::finish(HeapWord* mem) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   394
  assert(mem != NULL, "NULL object pointer");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   395
  if (UseBiasedLocking) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   396
    oopDesc::set_mark_raw(mem, _klass->prototype_header());
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   397
  } else {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   398
    // May be bootstrapping
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   399
    oopDesc::set_mark_raw(mem, markOopDesc::prototype());
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   400
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   401
  // Need a release store to ensure array/class length, mark word, and
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   402
  // object zeroing are visible before setting the klass non-NULL, for
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   403
  // concurrent collectors.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   404
  oopDesc::release_set_klass(mem, _klass);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   405
  return oop(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   406
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   407
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   408
oop ObjAllocator::initialize(HeapWord* mem) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   409
  mem_clear(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   410
  return finish(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   411
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   412
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   413
MemRegion ObjArrayAllocator::obj_memory_range(oop obj) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   414
  if (_do_zero) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   415
    return MemAllocator::obj_memory_range(obj);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   416
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   417
  ArrayKlass* array_klass = ArrayKlass::cast(_klass);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   418
  const size_t hs = arrayOopDesc::header_size(array_klass->element_type());
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   419
  return MemRegion(((HeapWord*)obj) + hs, _word_size - hs);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   420
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   421
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   422
oop ObjArrayAllocator::initialize(HeapWord* mem) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   423
  // Set array length before setting the _klass field because a
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   424
  // non-NULL klass field indicates that the object is parsable by
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   425
  // concurrent GC.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   426
  assert(_length >= 0, "length should be non-negative");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   427
  if (_do_zero) {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   428
    mem_clear(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   429
  }
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   430
  arrayOopDesc::set_length(mem, _length);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   431
  return finish(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   432
}
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   433
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   434
oop ClassAllocator::initialize(HeapWord* mem) const {
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   435
  // Set oop_size field before setting the _klass field because a
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   436
  // non-NULL _klass field indicates that the object is parsable by
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   437
  // concurrent GC.
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   438
  assert(_word_size > 0, "oop_size must be positive.");
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   439
  mem_clear(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   440
  java_lang_Class::set_oop_size(mem, (int)_word_size);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   441
  return finish(mem);
80abf702eed8 8205683: Refactor heap allocation to separate concerns
eosterlund
parents:
diff changeset
   442
}