hotspot/src/share/vm/gc/g1/g1AllocRegion.cpp
author brutisso
Tue, 22 Mar 2016 13:41:52 +0100
changeset 37171 b968bbc6291c
parent 37159 baf5e8b0bd96
child 37242 91e5f98fff6f
permissions -rw-r--r--
8152300: Convert G1_ALLOC_REGION_TRACING to unified logging Reviewed-by: sjohanss, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     1
/*
35469
17ea1b453dd5 8146694: Break out shared constants and static BOT functions.
david
parents: 35461
diff changeset
     2
 * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     4
 *
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     8
 *
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    13
 * accompanied this code).
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    14
 *
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    18
 *
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    21
 * questions.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    22
 *
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    23
 */
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    24
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    25
#include "precompiled.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 28213
diff changeset
    26
#include "gc/g1/g1AllocRegion.inline.hpp"
34230
b9c64b7c06c9 8141570: Fix Zero interpreter build for --disable-precompiled-headers
coleenp
parents: 33105
diff changeset
    27
#include "gc/g1/g1EvacStats.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 28213
diff changeset
    28
#include "gc/g1/g1CollectedHeap.inline.hpp"
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
    29
#include "memory/resourceArea.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 12381
diff changeset
    30
#include "runtime/orderAccess.inline.hpp"
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    31
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    32
G1CollectedHeap* G1AllocRegion::_g1h = NULL;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    33
HeapRegion* G1AllocRegion::_dummy_region = NULL;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    34
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    35
void G1AllocRegion::setup(G1CollectedHeap* g1h, HeapRegion* dummy_region) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    36
  assert(_dummy_region == NULL, "should be set once");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    37
  assert(dummy_region != NULL, "pre-condition");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    38
  assert(dummy_region->free() == 0, "pre-condition");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    39
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    40
  // Make sure that any allocation attempt on this region will fail
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    41
  // and will not trigger any asserts.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    42
  assert(allocate(dummy_region, 1, false) == NULL, "should fail");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    43
  assert(par_allocate(dummy_region, 1, false) == NULL, "should fail");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    44
  assert(allocate(dummy_region, 1, true) == NULL, "should fail");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    45
  assert(par_allocate(dummy_region, 1, true) == NULL, "should fail");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    46
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    47
  _g1h = g1h;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    48
  _dummy_region = dummy_region;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    49
}
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    50
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    51
size_t G1AllocRegion::fill_up_remaining_space(HeapRegion* alloc_region,
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    52
                                              bool bot_updates) {
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    53
  assert(alloc_region != NULL && alloc_region != _dummy_region,
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    54
         "pre-condition");
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    55
  size_t result = 0;
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    56
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    57
  // Other threads might still be trying to allocate using a CAS out
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    58
  // of the region we are trying to retire, as they can do so without
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    59
  // holding the lock. So, we first have to make sure that noone else
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    60
  // can allocate out of it by doing a maximal allocation. Even if our
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    61
  // CAS attempt fails a few times, we'll succeed sooner or later
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    62
  // given that failed CAS attempts mean that the region is getting
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    63
  // closed to being full.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    64
  size_t free_word_size = alloc_region->free() / HeapWordSize;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    65
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    66
  // This is the minimum free chunk we can turn into a dummy
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    67
  // object. If the free space falls below this, then noone can
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    68
  // allocate in this region anyway (all allocation requests will be
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    69
  // of a size larger than this) so we won't have to perform the dummy
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    70
  // allocation.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    71
  size_t min_word_size_to_fill = CollectedHeap::min_fill_size();
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    72
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    73
  while (free_word_size >= min_word_size_to_fill) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    74
    HeapWord* dummy = par_allocate(alloc_region, free_word_size, bot_updates);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    75
    if (dummy != NULL) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    76
      // If the allocation was successful we should fill in the space.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    77
      CollectedHeap::fill_with_object(dummy, free_word_size);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    78
      alloc_region->set_pre_dummy_top(dummy);
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    79
      result += free_word_size * HeapWordSize;
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    80
      break;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    81
    }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    82
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    83
    free_word_size = alloc_region->free() / HeapWordSize;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    84
    // It's also possible that someone else beats us to the
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    85
    // allocation and they fill up the region. In that case, we can
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    86
    // just get out of the loop.
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    87
  }
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    88
  result += alloc_region->free();
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    89
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    90
  assert(alloc_region->free() / HeapWordSize < min_word_size_to_fill,
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    91
         "post-condition");
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    92
  return result;
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    93
}
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    94
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    95
size_t G1AllocRegion::retire(bool fill_up) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
    96
  assert_alloc_region(_alloc_region != NULL, "not initialized properly");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
    97
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    98
  size_t result = 0;
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
    99
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   100
  trace("retiring");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   101
  HeapRegion* alloc_region = _alloc_region;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   102
  if (alloc_region != _dummy_region) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   103
    // We never have to check whether the active region is empty or not,
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   104
    // and potentially free it if it is, given that it's guaranteed that
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   105
    // it will never be empty.
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   106
    assert_alloc_region(!alloc_region->is_empty(),
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   107
                           "the alloc region should never be empty");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   108
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   109
    if (fill_up) {
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   110
      result = fill_up_remaining_space(alloc_region, _bot_updates);
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   111
    }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   112
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   113
    assert_alloc_region(alloc_region->used() >= _used_bytes_before, "invariant");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   114
    size_t allocated_bytes = alloc_region->used() - _used_bytes_before;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   115
    retire_region(alloc_region, allocated_bytes);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   116
    _used_bytes_before = 0;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   117
    _alloc_region = _dummy_region;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   118
  }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   119
  trace("retired");
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   120
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   121
  return result;
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   122
}
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   123
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   124
HeapWord* G1AllocRegion::new_alloc_region_and_allocate(size_t word_size,
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   125
                                                       bool force) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   126
  assert_alloc_region(_alloc_region == _dummy_region, "pre-condition");
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   127
  assert_alloc_region(_used_bytes_before == 0, "pre-condition");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   128
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   129
  trace("attempting region allocation");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   130
  HeapRegion* new_alloc_region = allocate_new_region(word_size, force);
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   131
  if (new_alloc_region != NULL) {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   132
    new_alloc_region->reset_pre_dummy_top();
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   133
    // Need to do this before the allocation
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   134
    _used_bytes_before = new_alloc_region->used();
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   135
    HeapWord* result = allocate(new_alloc_region, word_size, _bot_updates);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   136
    assert_alloc_region(result != NULL, "the allocation should succeeded");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   137
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   138
    OrderAccess::storestore();
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   139
    // Note that we first perform the allocation and then we store the
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   140
    // region in _alloc_region. This is the reason why an active region
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   141
    // can never be empty.
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   142
    update_alloc_region(new_alloc_region);
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   143
    trace("region allocation successful");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   144
    return result;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   145
  } else {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   146
    trace("region allocation failed");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   147
    return NULL;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   148
  }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   149
  ShouldNotReachHere();
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   150
}
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   151
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   152
void G1AllocRegion::init() {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   153
  trace("initializing");
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   154
  assert_alloc_region(_alloc_region == NULL && _used_bytes_before == 0, "pre-condition");
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   155
  assert_alloc_region(_dummy_region != NULL, "should have been set");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   156
  _alloc_region = _dummy_region;
10243
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   157
  _count = 0;
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   158
  trace("initialized");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   159
}
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   160
10243
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   161
void G1AllocRegion::set(HeapRegion* alloc_region) {
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   162
  trace("setting");
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   163
  // We explicitly check that the region is not empty to make sure we
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   164
  // maintain the "the alloc region cannot be empty" invariant.
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   165
  assert_alloc_region(alloc_region != NULL && !alloc_region->is_empty(), "pre-condition");
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   166
  assert_alloc_region(_alloc_region == _dummy_region &&
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   167
                         _used_bytes_before == 0 && _count == 0,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   168
                         "pre-condition");
10243
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   169
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   170
  _used_bytes_before = alloc_region->used();
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   171
  _alloc_region = alloc_region;
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   172
  _count += 1;
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   173
  trace("set");
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   174
}
d00a21009f1f 7039627: G1: avoid BOT updates for survivor allocations and dirty survivor regions incrementally
tonyp
parents: 8928
diff changeset
   175
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   176
void G1AllocRegion::update_alloc_region(HeapRegion* alloc_region) {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   177
  trace("update");
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   178
  // We explicitly check that the region is not empty to make sure we
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   179
  // maintain the "the alloc region cannot be empty" invariant.
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   180
  assert_alloc_region(alloc_region != NULL && !alloc_region->is_empty(), "pre-condition");
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   181
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   182
  _alloc_region = alloc_region;
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   183
  _alloc_region->set_allocation_context(allocation_context());
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   184
  _count += 1;
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   185
  trace("updated");
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   186
}
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   187
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   188
HeapRegion* G1AllocRegion::release() {
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   189
  trace("releasing");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   190
  HeapRegion* alloc_region = _alloc_region;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   191
  retire(false /* fill_up */);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32389
diff changeset
   192
  assert_alloc_region(_alloc_region == _dummy_region, "post-condition of retire()");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   193
  _alloc_region = NULL;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   194
  trace("released");
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   195
  return (alloc_region == _dummy_region) ? NULL : alloc_region;
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   196
}
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   197
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   198
#ifndef PRODUCT
32389
626f27450e12 8067336: Allow that PLAB allocations at the end of regions are flexible
tschatzl
parents: 32379
diff changeset
   199
void G1AllocRegion::trace(const char* str, size_t min_word_size, size_t desired_word_size, size_t actual_word_size, HeapWord* result) {
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   200
  // All the calls to trace that set either just the size or the size
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   201
  // and the result are considered part of detailed tracing and are
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   202
  // skipped during other tracing.
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   203
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   204
  LogHandle(gc, alloc, region) log;
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   205
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   206
  if (!log.is_debug()) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   207
    return;
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   208
  }
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   209
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   210
  bool detailed_info = log.is_trace();
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   211
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   212
  if ((actual_word_size == 0 && result == NULL) || detailed_info) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   213
    ResourceMark rm;
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   214
    outputStream* out;
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   215
    if (detailed_info) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   216
      out = log.trace_stream();
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   217
    } else {
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   218
      out = log.debug_stream();
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   219
    }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   220
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   221
    out->print("%s: %u ", _name, _count);
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   222
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   223
    if (_alloc_region == NULL) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   224
      out->print("NULL");
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   225
    } else if (_alloc_region == _dummy_region) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   226
      out->print("DUMMY");
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   227
    } else {
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   228
      out->print(HR_FORMAT, HR_FORMAT_PARAMS(_alloc_region));
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   229
    }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   230
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   231
    out->print(" : %s", str);
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   232
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   233
    if (detailed_info) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   234
      if (result != NULL) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   235
        out->print(" min " SIZE_FORMAT " desired " SIZE_FORMAT " actual " SIZE_FORMAT " " PTR_FORMAT,
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   236
                     min_word_size, desired_word_size, actual_word_size, p2i(result));
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   237
      } else if (min_word_size != 0) {
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   238
        out->print(" min " SIZE_FORMAT " desired " SIZE_FORMAT, min_word_size, desired_word_size);
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   239
      }
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   240
    }
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   241
    out->cr();
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   242
  }
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   243
}
37171
b968bbc6291c 8152300: Convert G1_ALLOC_REGION_TRACING to unified logging
brutisso
parents: 37159
diff changeset
   244
#endif // PRODUCT
8928
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   245
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   246
G1AllocRegion::G1AllocRegion(const char* name,
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   247
                             bool bot_updates)
e5c53268bef5 7023069: G1: Introduce symmetric locking in the slow allocation path
tonyp
parents:
diff changeset
   248
  : _name(name), _bot_updates(bot_updates),
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   249
    _alloc_region(NULL), _count(0), _used_bytes_before(0),
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   250
    _allocation_context(AllocationContext::system()) { }
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   251
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   252
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   253
HeapRegion* MutatorAllocRegion::allocate_new_region(size_t word_size,
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   254
                                                    bool force) {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   255
  return _g1h->new_mutator_alloc_region(word_size, force);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   256
}
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   257
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   258
void MutatorAllocRegion::retire_region(HeapRegion* alloc_region,
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   259
                                       size_t allocated_bytes) {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   260
  _g1h->retire_mutator_alloc_region(alloc_region, allocated_bytes);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   261
}
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   262
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   263
HeapRegion* G1GCAllocRegion::allocate_new_region(size_t word_size,
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   264
                                                 bool force) {
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   265
  assert(!force, "not supported for GC alloc regions");
37159
baf5e8b0bd96 8148759: G1AllocRegion::_count inconsistently used if more than one context is active
brutisso
parents: 35469
diff changeset
   266
  return _g1h->new_gc_alloc_region(word_size, _purpose);
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   267
}
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   268
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   269
void G1GCAllocRegion::retire_region(HeapRegion* alloc_region,
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   270
                                    size_t allocated_bytes) {
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   271
  _g1h->retire_gc_alloc_region(alloc_region, allocated_bytes, _purpose);
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   272
}
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   273
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   274
size_t G1GCAllocRegion::retire(bool fill_up) {
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   275
  HeapRegion* retired = get();
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   276
  size_t end_waste = G1AllocRegion::retire(fill_up);
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   277
  // Do not count retirement of the dummy allocation region.
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   278
  if (retired != NULL) {
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   279
    _stats->add_region_end_waste(end_waste / HeapWordSize);
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   280
  }
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents: 32185
diff changeset
   281
  return end_waste;
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   282
}
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   283
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   284
HeapRegion* OldGCAllocRegion::release() {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   285
  HeapRegion* cur = get();
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   286
  if (cur != NULL) {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   287
    // Determine how far we are from the next card boundary. If it is smaller than
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   288
    // the minimum object size we can allocate into, expand into the next card.
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   289
    HeapWord* top = cur->top();
35469
17ea1b453dd5 8146694: Break out shared constants and static BOT functions.
david
parents: 35461
diff changeset
   290
    HeapWord* aligned_top = (HeapWord*)align_ptr_up(top, BOTConstants::N_bytes);
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   291
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   292
    size_t to_allocate_words = pointer_delta(aligned_top, top, HeapWordSize);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   293
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   294
    if (to_allocate_words != 0) {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   295
      // We are not at a card boundary. Fill up, possibly into the next, taking the
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   296
      // end of the region and the minimum object size into account.
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   297
      to_allocate_words = MIN2(pointer_delta(cur->end(), cur->top(), HeapWordSize),
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   298
                               MAX2(to_allocate_words, G1CollectedHeap::min_fill_size()));
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   299
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   300
      // Skip allocation if there is not enough space to allocate even the smallest
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   301
      // possible object. In this case this region will not be retained, so the
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   302
      // original problem cannot occur.
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   303
      if (to_allocate_words >= G1CollectedHeap::min_fill_size()) {
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   304
        HeapWord* dummy = attempt_allocation(to_allocate_words, true /* bot_updates */);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   305
        CollectedHeap::fill_with_object(dummy, to_allocate_words);
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   306
      }
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   307
    }
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   308
  }
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   309
  return G1AllocRegion::release();
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 24424
diff changeset
   310
}