hotspot/src/share/vm/gc_implementation/parNew/parGCAllocBuffer.hpp
author xdono
Tue, 28 Jul 2009 12:12:40 -0700
changeset 3261 c7d5aae8d3f7
parent 2246 3c71d9b4b8e6
child 5547 f4b087cbb361
permissions -rw-r--r--
6862919: Update copyright year Summary: Update copyright for files that have been modified in 2009, up to 07/09 Reviewed-by: tbell, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2246
diff changeset
     2
 * Copyright 2001-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Forward decl.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class PLABStats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// A per-thread allocation buffer used during GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class ParGCAllocBuffer: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  char head[32];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  size_t _word_sz;          // in HeapWord units
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  HeapWord* _bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  HeapWord* _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  HeapWord* _end;       // last allocatable address + 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  HeapWord* _hard_end;  // _end + AlignmentReserve
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  bool      _retained;  // whether we hold a _retained_filler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  MemRegion _retained_filler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // In support of ergonomic sizing of PLAB's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  size_t    _allocated;     // in HeapWord units
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  size_t    _wasted;        // in HeapWord units
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  char tail[32];
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    44
  static size_t FillerHeaderSize;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    45
  static size_t AlignmentReserve;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Initializes the buffer to be empty, but with the given "word_sz".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Must get initialized with "set_buf" for an allocation to succeed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  ParGCAllocBuffer(size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static const size_t min_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    return ThreadLocalAllocBuffer::min_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static const size_t max_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    return ThreadLocalAllocBuffer::max_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // If an allocation of the given "word_sz" can be satisfied within the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // buffer, do the allocation, returning a pointer to the start of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // allocated block.  If the allocation request cannot be satisfied,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  HeapWord* allocate(size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    HeapWord* res = _top;
2246
3c71d9b4b8e6 6808322: ParNew, CMS, G1: ParGCAllocBuffer overflow
ysr
parents: 670
diff changeset
    66
    if (pointer_delta(_end, _top) >= word_sz) {
3c71d9b4b8e6 6808322: ParNew, CMS, G1: ParGCAllocBuffer overflow
ysr
parents: 670
diff changeset
    67
      _top = _top + word_sz;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Undo the last allocation in the buffer, which is required to be of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // "obj" of the given "word_sz".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void undo_allocation(HeapWord* obj, size_t word_sz) {
2246
3c71d9b4b8e6 6808322: ParNew, CMS, G1: ParGCAllocBuffer overflow
ysr
parents: 670
diff changeset
    77
    assert(pointer_delta(_top, _bottom) >= word_sz, "Bad undo");
3c71d9b4b8e6 6808322: ParNew, CMS, G1: ParGCAllocBuffer overflow
ysr
parents: 670
diff changeset
    78
    assert(pointer_delta(_top, obj)     == word_sz, "Bad undo");
3c71d9b4b8e6 6808322: ParNew, CMS, G1: ParGCAllocBuffer overflow
ysr
parents: 670
diff changeset
    79
    _top = obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // The total (word) size of the buffer, including both allocated and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // unallocted space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  size_t word_sz() { return _word_sz; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Should only be done if we are about to reset with a new buffer of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // given size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  void set_word_size(size_t new_word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    assert(new_word_sz > AlignmentReserve, "Too small");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _word_sz = new_word_sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // The number of words of unallocated space remaining in the buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  size_t words_remaining() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    assert(_end >= _top, "Negative buffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    return pointer_delta(_end, _top, HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool contains(void* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    return (void*)_bottom <= addr && addr < (void*)_hard_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Sets the space of the buffer to be [buf, space+word_sz()).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void set_buf(HeapWord* buf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    _bottom   = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _top      = _bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    _hard_end = _bottom + word_sz();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _end      = _hard_end - AlignmentReserve;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    assert(_end >= _top, "Negative buffer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // In support of ergonomic sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _allocated += word_sz();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Flush the stats supporting ergonomic sizing of PLAB's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  void flush_stats(PLABStats* stats);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void flush_stats_and_retire(PLABStats* stats, bool retain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    // We flush the stats first in order to get a reading of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    // unused space in the last buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    if (ResizePLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      flush_stats(stats);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // Retire the last allocation buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    retire(true, retain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Force future allocations to fail and queries for contains()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // to return false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  void invalidate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    assert(!_retained, "Shouldn't retain an invalidated buffer.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _end    = _hard_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    _wasted += pointer_delta(_end, _top);  // unused  space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _top    = _end;      // force future allocations to fail
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _bottom = _end;      // force future contains() queries to return false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Fills in the unallocated portion of the buffer with a garbage object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // If "end_of_gc" is TRUE, is after the last use in the GC.  IF "retain"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // is true, attempt to re-use the unused portion in the next GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  void retire(bool end_of_gc, bool retain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  void print() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// PLAB stats book-keeping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
class PLABStats VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  size_t _allocated;      // total allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  size_t _wasted;         // of which wasted (internal fragmentation)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  size_t _unused;         // Unused in last buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  size_t _used;           // derived = allocated - wasted - unused
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  size_t _desired_plab_sz;// output of filter (below), suitably trimmed and quantized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  AdaptiveWeightedAverage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
         _filter;         // integrator with decay
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  PLABStats(size_t desired_plab_sz_, unsigned wt) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    _allocated(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    _wasted(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    _unused(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _used(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    _desired_plab_sz(desired_plab_sz_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    _filter(wt)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    size_t min_sz = min_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    size_t max_sz = max_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    size_t aligned_min_sz = align_object_size(min_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    size_t aligned_max_sz = align_object_size(max_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    assert(min_sz <= aligned_min_sz && max_sz >= aligned_max_sz &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
           min_sz <= max_sz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
           "PLAB clipping computation in adjust_desired_plab_sz()"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
           " may be incorrect");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static const size_t min_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    return ParGCAllocBuffer::min_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  static const size_t max_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    return ParGCAllocBuffer::max_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  size_t desired_plab_sz() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    return _desired_plab_sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void adjust_desired_plab_sz(); // filter computation, latches output to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                                 // _desired_plab_sz, clears sensor accumulators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void add_allocated(size_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    Atomic::add_ptr(v, &_allocated);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void add_unused(size_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    Atomic::add_ptr(v, &_unused);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void add_wasted(size_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    Atomic::add_ptr(v, &_wasted);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
class ParGCAllocBufferWithBOT: public ParGCAllocBuffer {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  BlockOffsetArrayContigSpace _bt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  BlockOffsetSharedArray*     _bsa;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  HeapWord*                   _true_end;  // end of the whole ParGCAllocBuffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  static const size_t ChunkSizeInWords;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  static const size_t ChunkSizeInBytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  HeapWord* allocate_slow(size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void fill_region_with_block(MemRegion mr, bool contig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  ParGCAllocBufferWithBOT(size_t word_sz, BlockOffsetSharedArray* bsa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  HeapWord* allocate(size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    HeapWord* res = ParGCAllocBuffer::allocate(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    if (res != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      _bt.alloc_block(res, word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      res = allocate_slow(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void undo_allocation(HeapWord* obj, size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void set_buf(HeapWord* buf_start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    ParGCAllocBuffer::set_buf(buf_start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    _true_end = _hard_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    _bt.set_region(MemRegion(buf_start, word_sz()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    _bt.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  void retire(bool end_of_gc, bool retain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  MemRegion range() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    return MemRegion(_top, _true_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
};