hotspot/src/share/vm/memory/space.cpp
author stefank
Fri, 13 Feb 2015 14:37:35 +0100
changeset 29081 c61eb4914428
parent 27625 07829380b8cd
child 29681 e96b344b2c42
permissions -rw-r--r--
8072911: Remove includes of oop.inline.hpp from .hpp files Reviewed-by: brutisso, coleenp, jwilhelm, simonis, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 27625
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    27
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    28
#include "gc_implementation/shared/liveRange.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    29
#include "gc_implementation/shared/markSweep.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    30
#include "gc_implementation/shared/spaceDecorator.hpp"
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
    31
#include "gc_interface/collectedHeap.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    32
#include "memory/blockOffsetTable.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    33
#include "memory/defNewGeneration.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    34
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    35
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    36
#include "memory/space.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    37
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    38
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    39
#include "runtime/java.hpp"
25351
7c198a690050 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents: 24487
diff changeset
    40
#include "runtime/atomic.inline.hpp"
24487
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents: 24424
diff changeset
    41
#include "runtime/prefetch.inline.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 23537
diff changeset
    42
#include "runtime/orderAccess.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    43
#include "runtime/safepoint.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    44
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    45
#include "utilities/globalDefinitions.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
    46
#include "utilities/macros.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
    48
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24351
diff changeset
    49
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
HeapWord* DirtyCardToOopClosure::get_actual_top(HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                                                HeapWord* top_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  if (top_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    if (_sp->block_is_obj(top_obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      if (_precision == CardTableModRefBS::ObjHeadPreciseArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
        if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
          // An arrayOop is starting on the dirty card - since we do exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
          // store checks for objArrays we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
          // Otherwise, it is possible that the object starting on the dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
          // card spans the entire card, and that the store happened on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
          // later card.  Figure out where the object ends.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
          // Use the block_size() method of the space over which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
          // the iteration is being done.  That space (e.g. CMS) may have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
          // specific requirements on object sizes which will
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
          // be reflected in the block_size() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
          top = top_obj + oop(top_obj)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      top = top_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    assert(top == _sp->end(), "only case where top_obj == NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
void DirtyCardToOopClosure::walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                            HeapWord* bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                            HeapWord* top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // 1. Blocks may or may not be objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // 2. Even when a block_is_obj(), it may not entirely
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  //    occupy the block if the block quantum is larger than
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //    the object size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // We can and should try to optimize by calling the non-MemRegion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // version of oop_iterate() for all but the extremal objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // (for which we need to call the MemRegion version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // oop_iterate()) To be done post-beta XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  for (; bottom < top; bottom += _sp->block_size(bottom)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // As in the case of contiguous space above, we'd like to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // just use the value returned by oop_iterate to increment the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // current pointer; unfortunately, that won't work in CMS because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // we'd need an interface change (it seems) to have the space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // "adjust the object size" (for instance pad it up to its
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // block alignment or minimum block size restrictions. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if (_sp->block_is_obj(bottom) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
        !_sp->obj_allocated_since_save_marks(oop(bottom))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      oop(bottom)->oop_iterate(_cl, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   103
// We get called with "mr" representing the dirty region
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   104
// that we want to process. Because of imprecise marking,
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   105
// we may need to extend the incoming "mr" to the right,
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   106
// and scan more. However, because we may already have
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   107
// scanned some of that extended region, we may need to
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   108
// trim its right-end back some so we do not scan what
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   109
// we (or another worker thread) may already have scanned
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   110
// or planning to scan.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void DirtyCardToOopClosure::do_MemRegion(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Some collectors need to do special things whenever their dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // cards are processed. For instance, CMS must remember mutator updates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // (i.e. dirty cards) so as to re-scan mutated objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Such work can be piggy-backed here on dirty card scanning, so as to make
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   117
  // it slightly more efficient than doing a complete non-destructive pre-scan
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // of the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  MemRegionClosure* pCl = _sp->preconsumptionDirtyCardClosure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  if (pCl != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    pCl->do_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  HeapWord* bottom = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  HeapWord* last = mr.last();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  HeapWord* top = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  HeapWord* bottom_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  HeapWord* top_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  assert(_precision == CardTableModRefBS::ObjHeadPreciseArray ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
         _precision == CardTableModRefBS::Precise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
         "Only ones we deal with for now.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  assert(_precision != CardTableModRefBS::ObjHeadPreciseArray ||
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   135
         _cl->idempotent() || _last_bottom == NULL ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
         top <= _last_bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
         "Not decreasing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  NOT_PRODUCT(_last_bottom = mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bottom_obj = _sp->block_start(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  top_obj    = _sp->block_start(last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  assert(bottom_obj <= bottom, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  assert(top_obj    <= top,    "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Given what we think is the top of the memory region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // the start of the object at the top, get the actual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // value of the top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  top = get_actual_top(top, top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // If the previous call did some part of this region, don't redo.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (_precision == CardTableModRefBS::ObjHeadPreciseArray &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      _min_done != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      _min_done < top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    top = _min_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Top may have been reset, and in fact may be below bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // e.g. the dirty card region is entirely in a now free object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // -- something that could happen with a concurrent sweeper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bottom = MIN2(bottom, top);
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   162
  MemRegion extended_mr = MemRegion(bottom, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(bottom <= top &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
         (_precision != CardTableModRefBS::ObjHeadPreciseArray ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
          _min_done == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
          top <= _min_done),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
         "overlap!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Walk the region if it is not empty; otherwise there is nothing to do.
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   170
  if (!extended_mr.is_empty()) {
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   171
    walk_mem_region(extended_mr, bottom_obj, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   174
  // An idempotent closure might be applied in any order, so we don't
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   175
  // record a _min_done for it.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   176
  if (!_cl->idempotent()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   177
    _min_done = bottom;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   178
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   179
    assert(_min_done == _last_explicit_min_done,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   180
           "Don't update _min_done for idempotent cl");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   181
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   184
DirtyCardToOopClosure* Space::new_dcto_cl(ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                                          CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                                          HeapWord* boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  return new DirtyCardToOopClosure(this, cl, precision, boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
HeapWord* ContiguousSpaceDCTOC::get_actual_top(HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                                               HeapWord* top_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (top_obj != NULL && top_obj < (_sp->toContiguousSpace())->top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    if (_precision == CardTableModRefBS::ObjHeadPreciseArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
      if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        // An arrayOop is starting on the dirty card - since we do exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
        // store checks for objArrays we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
        // Otherwise, it is possible that the object starting on the dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        // card spans the entire card, and that the store happened on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        // later card.  Figure out where the object ends.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
        assert(_sp->block_size(top_obj) == (size_t) oop(top_obj)->size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
          "Block size and object size mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        top = top_obj + oop(top_obj)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    top = (_sp->toContiguousSpace())->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  return top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
void Filtering_DCTOC::walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                                      HeapWord* bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
                                      HeapWord* top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Note that this assumption won't hold if we have a concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // collector in this space, which may have freed up objects after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // they were dirtied and before the stop-the-world GC that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // examining cards here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(bottom < top, "ought to be at least one obj on a dirty card.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  if (_boundary != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    // We have a boundary outside of which we don't want to look
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    // at objects, so create a filtering closure around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    // oop closure before walking the region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    FilteringClosure filter(_boundary, _cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    walk_mem_region_with_cl(mr, bottom, top, &filter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // No boundary, simply walk the heap with the oop closure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    walk_mem_region_with_cl(mr, bottom, top, _cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// We must replicate this so that the static type of "FilteringClosure"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// (see above) is apparent at the oop_iterate calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
#define ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(ClosureType) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
void ContiguousSpaceDCTOC::walk_mem_region_with_cl(MemRegion mr,        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                                                   HeapWord* bottom,    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                                                   HeapWord* top,       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                                                   ClosureType* cl) {   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  bottom += oop(bottom)->oop_iterate(cl, mr);                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  if (bottom < top) {                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    HeapWord* next_obj = bottom + oop(bottom)->size();                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    while (next_obj < top) {                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      /* Bottom lies entirely below top, so we can call the */          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      /* non-memRegion version of oop_iterate below. */                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      oop(bottom)->oop_iterate(cl);                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      bottom = next_obj;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      next_obj = bottom + oop(bottom)->size();                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    }                                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    /* Last object. */                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    oop(bottom)->oop_iterate(cl, mr);                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// (There are only two of these, rather than N, because the split is due
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// only to the introduction of the FilteringClosure, a local part of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
// impl of this abstraction.)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   259
ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(ExtendedOopClosure)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(FilteringClosure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
DirtyCardToOopClosure*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   263
ContiguousSpace::new_dcto_cl(ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
                             CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                             HeapWord* boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   269
void Space::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   270
                       bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   271
                       bool mangle_space) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  HeapWord* bottom = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  HeapWord* end    = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
         "invalid space boundaries");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  set_bottom(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  set_end(end);
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   278
  if (clear_space) clear(mangle_space);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   279
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   280
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   281
void Space::clear(bool mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   282
  if (ZapUnusedHeapArea && mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   283
    mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   284
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
1388
tonyp
parents: 1379 977
diff changeset
   287
ContiguousSpace::ContiguousSpace(): CompactibleSpace(), _top(NULL),
tonyp
parents: 1379 977
diff changeset
   288
    _concurrent_iteration_safe_limit(NULL) {
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   289
  _mangler = new GenSpaceMangler(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   292
ContiguousSpace::~ContiguousSpace() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   293
  delete _mangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   294
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   295
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   296
void ContiguousSpace::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   297
                                 bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   298
                                 bool mangle_space)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
{
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   300
  CompactibleSpace::initialize(mr, clear_space, mangle_space);
1379
ccfaefa561cd 6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents: 1376
diff changeset
   301
  set_concurrent_iteration_safe_limit(top());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   304
void ContiguousSpace::clear(bool mangle_space) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  set_top(bottom());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  set_saved_mark();
1388
tonyp
parents: 1379 977
diff changeset
   307
  CompactibleSpace::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
bool ContiguousSpace::is_free_block(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  return p >= _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   314
void OffsetTableContigSpace::clear(bool mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   315
  ContiguousSpace::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  _offsets.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
void OffsetTableContigSpace::set_bottom(HeapWord* new_bottom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  Space::set_bottom(new_bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  _offsets.set_bottom(new_bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
void OffsetTableContigSpace::set_end(HeapWord* new_end) {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   325
  // Space should not advertise an increase in size
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   326
  // until after the underlying offset table has been enlarged.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  _offsets.resize(pointer_delta(new_end, bottom()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  Space::set_end(new_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   331
#ifndef PRODUCT
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   332
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   333
void ContiguousSpace::set_top_for_allocations(HeapWord* v) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   334
  mangler()->set_top_for_allocations(v);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   335
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   336
void ContiguousSpace::set_top_for_allocations() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   337
  mangler()->set_top_for_allocations(top());
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   338
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   339
void ContiguousSpace::check_mangled_unused_area(HeapWord* limit) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   340
  mangler()->check_mangled_unused_area(limit);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   341
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   342
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   343
void ContiguousSpace::check_mangled_unused_area_complete() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   344
  mangler()->check_mangled_unused_area_complete();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   347
// Mangled only the unused space that has not previously
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   348
// been mangled and that has not been allocated since being
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   349
// mangled.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   350
void ContiguousSpace::mangle_unused_area() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   351
  mangler()->mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   352
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   353
void ContiguousSpace::mangle_unused_area_complete() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   354
  mangler()->mangle_unused_area_complete();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   356
void ContiguousSpace::mangle_region(MemRegion mr) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   357
  // Although this method uses SpaceMangler::mangle_region() which
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   358
  // is not specific to a space, the when the ContiguousSpace version
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   359
  // is called, it is always with regard to a space and this
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   360
  // bounds checking is appropriate.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   361
  MemRegion space_mr(bottom(), end());
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   362
  assert(space_mr.contains(mr), "Mangling outside space");
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   363
  SpaceMangler::mangle_region(mr);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   364
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   365
#endif  // NOT_PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   367
void CompactibleSpace::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   368
                                  bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   369
                                  bool mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   370
  Space::initialize(mr, clear_space, mangle_space);
1388
tonyp
parents: 1379 977
diff changeset
   371
  set_compaction_top(bottom());
tonyp
parents: 1379 977
diff changeset
   372
  _next_compaction_space = NULL;
tonyp
parents: 1379 977
diff changeset
   373
}
tonyp
parents: 1379 977
diff changeset
   374
tonyp
parents: 1379 977
diff changeset
   375
void CompactibleSpace::clear(bool mangle_space) {
tonyp
parents: 1379 977
diff changeset
   376
  Space::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  _compaction_top = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
HeapWord* CompactibleSpace::forward(oop q, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
                                    CompactPoint* cp, HeapWord* compact_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // q is alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // First check if we should switch compaction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  assert(this == cp->space, "'this' should be current compaction space.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  size_t compaction_max_size = pointer_delta(end(), compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  while (size > compaction_max_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    // switch to next compaction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    cp->space->set_compaction_top(compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    cp->space = cp->space->next_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    if (cp->space == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
      cp->gen = GenCollectedHeap::heap()->prev_gen(cp->gen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
      assert(cp->gen != NULL, "compaction must succeed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      cp->space = cp->gen->first_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
      assert(cp->space != NULL, "generation must have a first compaction space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    compact_top = cp->space->bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    cp->space->set_compaction_top(compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    cp->threshold = cp->space->initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    compaction_max_size = pointer_delta(cp->space->end(), compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // store the forwarding pointer into the mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  if ((HeapWord*)q != compact_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
    q->forward_to(oop(compact_top));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    assert(q->is_gc_marked(), "encoding the pointer should preserve the mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    // if the object isn't moving we can just set the mark to the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    // mark and handle it specially later on.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    q->init_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    assert(q->forwardee() == NULL, "should be forwarded to NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  compact_top += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // we need to update the offset table so that the beginnings of objects can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // found during scavenge.  Note that we are updating the offset table based on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // where the object will be once the compaction phase finishes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  if (compact_top > cp->threshold)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    cp->threshold =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
      cp->space->cross_threshold(compact_top - size, compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  return compact_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
bool CompactibleSpace::insert_deadspace(size_t& allowed_deadspace_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
                                        HeapWord* q, size_t deadlength) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  if (allowed_deadspace_words >= deadlength) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    allowed_deadspace_words -= deadlength;
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1557
diff changeset
   429
    CollectedHeap::fill_with_object(q, deadlength);
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1557
diff changeset
   430
    oop(q)->set_mark(oop(q)->mark()->set_marked());
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1557
diff changeset
   431
    assert((int) deadlength == oop(q)->size(), "bad filler object size");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    // Recall that we required "q == compaction_top".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    allowed_deadspace_words = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
void ContiguousSpace::prepare_for_compaction(CompactPoint* cp) {
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 25905
diff changeset
   441
  scan_and_forward(this, cp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
void CompactibleSpace::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // Check first is there is any work to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  if (used() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    return;   // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 25905
diff changeset
   450
  scan_and_adjust_pointers(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
void CompactibleSpace::compact() {
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 25905
diff changeset
   454
  scan_and_compact(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
void Space::print_short() const { print_short_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
void Space::print_short_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  st->print(" space " SIZE_FORMAT "K, %3d%% used", capacity() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
              (int) ((double) used() * 100 / capacity()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
void Space::print() const { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
void Space::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
                bottom(), end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
void ContiguousSpace::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
                bottom(), top(), end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
void OffsetTableContigSpace::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
                INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
              bottom(), top(), _offsets.threshold(), end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   485
void ContiguousSpace::verify() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  HeapWord* p = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  while (p < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    oop(p)->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    p += oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  if (top() != end()) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   496
    guarantee(top() == block_start_const(end()-1) &&
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   497
              top() == block_start_const(top()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
              "top should be start of unallocated block, if it exists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   502
void Space::oop_iterate(ExtendedOopClosure* blk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  ObjectToOopClosure blk2(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  object_iterate(&blk2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
bool Space::obj_is_alive(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  assert (block_is_obj(p), "The address should point to an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
   512
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
#define ContigSpace_PAR_OOP_ITERATE_DEFN(OopClosureType, nv_suffix)         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  void ContiguousSpace::par_oop_iterate(MemRegion mr, OopClosureType* blk) {\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    HeapWord* obj_addr = mr.start();                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    HeapWord* t = mr.end();                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    while (obj_addr < t) {                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      assert(oop(obj_addr)->is_oop(), "Should be an oop");                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      obj_addr += oop(obj_addr)->oop_iterate(blk);                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    }                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DEFN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
#undef ContigSpace_PAR_OOP_ITERATE_DEFN
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
   527
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   529
void ContiguousSpace::oop_iterate(ExtendedOopClosure* blk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  if (is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  HeapWord* obj_addr = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // Could call objects iterate, but this is easier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  while (obj_addr < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    obj_addr += oop(obj_addr)->oop_iterate(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
void ContiguousSpace::object_iterate(ObjectClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  if (is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  WaterMark bm = bottom_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  object_iterate_from(bm, blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   545
// For a ContiguousSpace object_iterate() and safe_object_iterate()
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   546
// are the same.
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   547
void ContiguousSpace::safe_object_iterate(ObjectClosure* blk) {
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   548
  object_iterate(blk);
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   549
}
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   550
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
void ContiguousSpace::object_iterate_from(WaterMark mark, ObjectClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  assert(mark.space() == this, "Mark does not match space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  HeapWord* p = mark.point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  while (p < top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    blk->do_object(oop(p));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    p += oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
ContiguousSpace::object_iterate_careful(ObjectClosureCareful* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  HeapWord * limit = concurrent_iteration_safe_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  assert(limit <= top(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  for (HeapWord* p = bottom(); p < limit;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    size_t size = blk->do_object_careful(oop(p));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    if (size == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      return p;  // failed at p
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      p += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  return NULL; // all done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
#define ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN(OopClosureType, nv_suffix)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
void ContiguousSpace::                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk) {            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  HeapWord* t;                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  HeapWord* p = saved_mark_word();                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  assert(p != NULL, "expected saved mark");                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  const intx interval = PrefetchScanIntervalInBytes;                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  do {                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    t = top();                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    while (p < t) {                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
      Prefetch::write(p, interval);                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
      debug_only(HeapWord* prev = p);                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
      oop m = oop(p);                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
      p += m->oop_iterate(blk);                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    }                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  } while (t < top());                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  set_saved_mark_word(p);                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
#undef ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
// Very general, slow implementation.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   602
HeapWord* ContiguousSpace::block_start_const(const void* p) const {
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   603
  assert(MemRegion(bottom(), end()).contains(p),
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   604
         err_msg("p (" PTR_FORMAT ") not in space [" PTR_FORMAT ", " PTR_FORMAT ")",
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   605
                  p, bottom(), end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  if (p >= top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    return top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    HeapWord* last = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    HeapWord* cur = last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    while (cur <= p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
      last = cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
      cur += oop(cur)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    }
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   615
    assert(oop(last)->is_oop(),
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   616
           err_msg(PTR_FORMAT " should be an object start", last));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    return last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
size_t ContiguousSpace::block_size(const HeapWord* p) const {
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   622
  assert(MemRegion(bottom(), end()).contains(p),
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   623
         err_msg("p (" PTR_FORMAT ") not in space [" PTR_FORMAT ", " PTR_FORMAT ")",
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   624
                  p, bottom(), end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  HeapWord* current_top = top();
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   626
  assert(p <= current_top,
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   627
         err_msg("p > current top - p: " PTR_FORMAT ", current top: " PTR_FORMAT,
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   628
                  p, current_top));
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   629
  assert(p == current_top || oop(p)->is_oop(),
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   630
         err_msg("p (" PTR_FORMAT ") is not a block start - "
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   631
                 "current_top: " PTR_FORMAT ", is_oop: %s",
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   632
                 p, current_top, BOOL_TO_STR(oop(p)->is_oop())));
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   633
  if (p < current_top) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    return oop(p)->size();
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   635
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    assert(p == current_top, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    return pointer_delta(end(), (HeapWord*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
// This version requires locking.
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   642
inline HeapWord* ContiguousSpace::allocate_impl(size_t size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  assert(Heap_lock->owned_by_self() ||
25481
1427aa24638c 8047818: G1 HeapRegions can no longer be ContiguousSpaces
mgerdin
parents: 25351
diff changeset
   644
         (SafepointSynchronize::is_at_safepoint() && Thread::current()->is_VM_thread()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
         "not locked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  HeapWord* obj = top();
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   647
  if (pointer_delta(end(), obj) >= size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    HeapWord* new_top = obj + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    set_top(new_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
// This version is lock-free.
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   658
inline HeapWord* ContiguousSpace::par_allocate_impl(size_t size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    HeapWord* obj = top();
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   661
    if (pointer_delta(end(), obj) >= size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
      HeapWord* new_top = obj + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      HeapWord* result = (HeapWord*)Atomic::cmpxchg_ptr(new_top, top_addr(), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
      // result can be one of two:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      //  the old top value: the exchange succeeded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
      //  otherwise: the new value of the top is returned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      if (result == obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
        assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
        return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  } while (true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   677
HeapWord* ContiguousSpace::allocate_aligned(size_t size) {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   678
  assert(Heap_lock->owned_by_self() || (SafepointSynchronize::is_at_safepoint() && Thread::current()->is_VM_thread()), "not locked");
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   679
  HeapWord* end_value = end();
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   680
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   681
  HeapWord* obj = CollectedHeap::align_allocation_or_fail(top(), end_value, SurvivorAlignmentInBytes);
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   682
  if (obj == NULL) {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   683
    return NULL;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   684
  }
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   685
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   686
  if (pointer_delta(end_value, obj) >= size) {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   687
    HeapWord* new_top = obj + size;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   688
    set_top(new_top);
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   689
    assert(is_ptr_aligned(obj, SurvivorAlignmentInBytes) && is_aligned(new_top),
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   690
      "checking alignment");
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   691
    return obj;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   692
  } else {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   693
    set_top(obj);
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   694
    return NULL;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   695
  }
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   696
}
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   697
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
// Requires locking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
HeapWord* ContiguousSpace::allocate(size_t size) {
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   700
  return allocate_impl(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
// Lock-free.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
HeapWord* ContiguousSpace::par_allocate(size_t size) {
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   705
  return par_allocate_impl(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
void ContiguousSpace::allocate_temporary_filler(int factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  // allocate temporary type array decreasing free size with factor 'factor'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  assert(factor >= 0, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  size_t size = pointer_delta(end(), top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  // if space is full, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  if (size == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  if (factor > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    size -= size/factor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  size = align_object_size(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   721
  const size_t array_header_size = typeArrayOopDesc::header_size(T_INT);
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   722
  if (size >= (size_t)align_object_size(array_header_size)) {
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   723
    size_t length = (size - array_header_size) * (HeapWordSize / sizeof(jint));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    // allocate uninitialized int array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    typeArrayOop t = (typeArrayOop) allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    assert(t != NULL, "allocation should succeed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    t->set_mark(markOopDesc::prototype());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    t->set_klass(Universe::intArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    t->set_length((int)length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  } else {
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   731
    assert(size == CollectedHeap::min_fill_size(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
           "size for smallest fake object doesn't match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    instanceOop obj = (instanceOop) allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    obj->set_mark(markOopDesc::prototype());
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 360
diff changeset
   735
    obj->set_klass_gap(0);
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 2105
diff changeset
   736
    obj->set_klass(SystemDictionary::Object_klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
HeapWord* OffsetTableContigSpace::initialize_threshold() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  return _offsets.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
HeapWord* OffsetTableContigSpace::cross_threshold(HeapWord* start, HeapWord* end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  _offsets.alloc_block(start, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  return _offsets.threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
OffsetTableContigSpace::OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
                                               MemRegion mr) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  _offsets(sharedOffsetArray, mr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  _par_alloc_lock(Mutex::leaf, "OffsetTableContigSpace par alloc lock", true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  _offsets.set_contig_space(this);
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   755
  initialize(mr, SpaceDecorator::Clear, SpaceDecorator::Mangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
#define OBJ_SAMPLE_INTERVAL 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
#define BLOCK_SAMPLE_INTERVAL 100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   761
void OffsetTableContigSpace::verify() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  HeapWord* p = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  int objs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  int blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  if (VerifyObjectStartArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    _offsets.verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  while (p < top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    size_t size = oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    // For a sampling of objects in the space, find it using the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
    // block offset table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    if (blocks == BLOCK_SAMPLE_INTERVAL) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   776
      guarantee(p == block_start_const(p + (size/2)),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   777
                "check offset computation");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    if (objs == OBJ_SAMPLE_INTERVAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      oop(p)->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
      objs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      objs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    p += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
1557
13878a2edfef 6765804: GC "dead ratios" should be unsigned
jcoomes
parents: 1388
diff changeset
   796
size_t TenuredSpace::allowed_dead_ratio() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  return MarkSweepDeadRatio;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
}