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