src/hotspot/share/gc/shared/space.cpp
author pliden
Wed, 20 Nov 2019 10:37:46 +0100
changeset 59153 1152339c298a
parent 58980 47c20fc6a517
child 59154 0c2e1808f800
permissions -rw-r--r--
8234437: Remove CollectedHeap::safe_object_iterate() Reviewed-by: kbarrett, sjohanss
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
     2
 * Copyright (c) 1997, 2018, 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"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    28
#include "gc/shared/blockOffsetTable.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    29
#include "gc/shared/collectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    30
#include "gc/shared/genCollectedHeap.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    31
#include "gc/shared/genOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    32
#include "gc/shared/space.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    33
#include "gc/shared/space.inline.hpp"
58980
47c20fc6a517 8189737: Make HeapRegion not derive from Space
tschatzl
parents: 57777
diff changeset
    34
#include "gc/shared/spaceDecorator.inline.hpp"
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50429
diff changeset
    35
#include "memory/iterator.inline.hpp"
49359
59f6547e151f 8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents: 49164
diff changeset
    36
#include "memory/universe.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    37
#include "oops/oop.inline.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 37495
diff changeset
    38
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    39
#include "runtime/java.hpp"
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 50035
diff changeset
    40
#include "runtime/orderAccess.hpp"
24487
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents: 24424
diff changeset
    41
#include "runtime/prefetch.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    42
#include "runtime/safepoint.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    43
#include "utilities/align.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    44
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    45
#include "utilities/globalDefinitions.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
    46
#include "utilities/macros.hpp"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
    47
#if INCLUDE_SERIALGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
    48
#include "gc/serial/defNewGeneration.hpp"
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
    49
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
HeapWord* DirtyCardToOopClosure::get_actual_top(HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
                                                HeapWord* top_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  if (top_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    if (_sp->block_is_obj(top_obj)) {
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
    55
      if (_precision == CardTable::ObjHeadPreciseArray) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
        if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
          // An arrayOop is starting on the dirty card - since we do exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
          // store checks for objArrays we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
          // Otherwise, it is possible that the object starting on the dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
          // card spans the entire card, and that the store happened on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
          // later card.  Figure out where the object ends.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
          // Use the block_size() method of the space over which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
          // the iteration is being done.  That space (e.g. CMS) may have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
          // specific requirements on object sizes which will
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
          // be reflected in the block_size() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
          top = top_obj + oop(top_obj)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
        }
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
      top = top_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    assert(top == _sp->end(), "only case where top_obj == NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  return top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void DirtyCardToOopClosure::walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                            HeapWord* bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                            HeapWord* top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // 1. Blocks may or may not be objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // 2. Even when a block_is_obj(), it may not entirely
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //    occupy the block if the block quantum is larger than
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  //    the object size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // We can and should try to optimize by calling the non-MemRegion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // version of oop_iterate() for all but the extremal objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // (for which we need to call the MemRegion version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // oop_iterate()) To be done post-beta XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  for (; bottom < top; bottom += _sp->block_size(bottom)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // As in the case of contiguous space above, we'd like to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // just use the value returned by oop_iterate to increment the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // current pointer; unfortunately, that won't work in CMS because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    // we'd need an interface change (it seems) to have the space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // "adjust the object size" (for instance pad it up to its
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    // block alignment or minimum block size restrictions. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    if (_sp->block_is_obj(bottom) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
        !_sp->obj_allocated_since_save_marks(oop(bottom))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      oop(bottom)->oop_iterate(_cl, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   104
// 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
   105
// 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
   106
// 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
   107
// 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
   108
// 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
   109
// 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
   110
// 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
   111
// or planning to scan.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void DirtyCardToOopClosure::do_MemRegion(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Some collectors need to do special things whenever their dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // cards are processed. For instance, CMS must remember mutator updates
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // (i.e. dirty cards) so as to re-scan mutated objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // 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
   118
  // it slightly more efficient than doing a complete non-destructive pre-scan
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // of the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  MemRegionClosure* pCl = _sp->preconsumptionDirtyCardClosure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  if (pCl != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    pCl->do_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  HeapWord* bottom = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  HeapWord* last = mr.last();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  HeapWord* top = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  HeapWord* bottom_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  HeapWord* top_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   131
  assert(_precision == CardTable::ObjHeadPreciseArray ||
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   132
         _precision == CardTable::Precise,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
         "Only ones we deal with for now.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   135
  assert(_precision != CardTable::ObjHeadPreciseArray ||
50801
94b56c8594ef 8144992: Remove OopIterateClosure::idempotent
stefank
parents: 50752
diff changeset
   136
         _last_bottom == NULL || top <= _last_bottom,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
         "Not decreasing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  NOT_PRODUCT(_last_bottom = mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bottom_obj = _sp->block_start(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  top_obj    = _sp->block_start(last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  assert(bottom_obj <= bottom, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  assert(top_obj    <= top,    "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Given what we think is the top of the memory region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // the start of the object at the top, get the actual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // value of the top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  top = get_actual_top(top, top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // If the previous call did some part of this region, don't redo.
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   152
  if (_precision == CardTable::ObjHeadPreciseArray &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      _min_done != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      _min_done < top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    top = _min_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Top may have been reset, and in fact may be below bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // e.g. the dirty card region is entirely in a now free object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // -- something that could happen with a concurrent sweeper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bottom = MIN2(bottom, top);
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   162
  MemRegion extended_mr = MemRegion(bottom, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  assert(bottom <= top &&
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   164
         (_precision != CardTable::ObjHeadPreciseArray ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
          _min_done == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
          top <= _min_done),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
         "overlap!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Walk the region if it is not empty; otherwise there is nothing to do.
9624
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   170
  if (!extended_mr.is_empty()) {
c3657c3324ee 6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents: 8928
diff changeset
   171
    walk_mem_region(extended_mr, bottom_obj, top);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
50801
94b56c8594ef 8144992: Remove OopIterateClosure::idempotent
stefank
parents: 50752
diff changeset
   174
  _min_done = bottom;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50429
diff changeset
   177
DirtyCardToOopClosure* Space::new_dcto_cl(OopIterateClosure* cl,
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   178
                                          CardTable::PrecisionStyle precision,
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   179
                                          HeapWord* boundary,
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   180
                                          bool parallel) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  return new DirtyCardToOopClosure(this, cl, precision, boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
HeapWord* ContiguousSpaceDCTOC::get_actual_top(HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                                               HeapWord* top_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  if (top_obj != NULL && top_obj < (_sp->toContiguousSpace())->top()) {
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   187
    if (_precision == CardTable::ObjHeadPreciseArray) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
        // An arrayOop is starting on the dirty card - since we do exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        // store checks for objArrays we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
        // Otherwise, it is possible that the object starting on the dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
        // card spans the entire card, and that the store happened on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        // later card.  Figure out where the object ends.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
        assert(_sp->block_size(top_obj) == (size_t) oop(top_obj)->size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
          "Block size and object size mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        top = top_obj + oop(top_obj)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    top = (_sp->toContiguousSpace())->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 33205
diff changeset
   206
void FilteringDCTOC::walk_mem_region(MemRegion mr,
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 33205
diff changeset
   207
                                     HeapWord* bottom,
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 33205
diff changeset
   208
                                     HeapWord* top) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Note that this assumption won't hold if we have a concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // collector in this space, which may have freed up objects after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // they were dirtied and before the stop-the-world GC that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // examining cards here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  assert(bottom < top, "ought to be at least one obj on a dirty card.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  if (_boundary != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    // We have a boundary outside of which we don't want to look
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    // at objects, so create a filtering closure around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    // oop closure before walking the region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    FilteringClosure filter(_boundary, _cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    walk_mem_region_with_cl(mr, bottom, top, &filter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    // No boundary, simply walk the heap with the oop closure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    walk_mem_region_with_cl(mr, bottom, top, _cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// We must replicate this so that the static type of "FilteringClosure"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
// (see above) is apparent at the oop_iterate calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
#define ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(ClosureType) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
void ContiguousSpaceDCTOC::walk_mem_region_with_cl(MemRegion mr,        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                                                   HeapWord* bottom,    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                                                   HeapWord* top,       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                                                   ClosureType* cl) {   \
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 30870
diff changeset
   235
  bottom += oop(bottom)->oop_iterate_size(cl, mr);                      \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  if (bottom < top) {                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    HeapWord* next_obj = bottom + oop(bottom)->size();                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    while (next_obj < top) {                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      /* Bottom lies entirely below top, so we can call the */          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      /* non-memRegion version of oop_iterate below. */                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      oop(bottom)->oop_iterate(cl);                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      bottom = next_obj;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      next_obj = bottom + oop(bottom)->size();                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    }                                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    /* Last object. */                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    oop(bottom)->oop_iterate(cl, mr);                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  }                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
// (There are only two of these, rather than N, because the split is due
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// only to the introduction of the FilteringClosure, a local part of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// impl of this abstraction.)
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50429
diff changeset
   253
ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(OopIterateClosure)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(FilteringClosure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
DirtyCardToOopClosure*
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50429
diff changeset
   257
ContiguousSpace::new_dcto_cl(OopIterateClosure* cl,
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 47634
diff changeset
   258
                             CardTable::PrecisionStyle precision,
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   259
                             HeapWord* boundary,
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   260
                             bool parallel) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   264
void Space::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   265
                       bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   266
                       bool mangle_space) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  HeapWord* bottom = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  HeapWord* end    = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
         "invalid space boundaries");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  set_bottom(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  set_end(end);
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   273
  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
   274
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   275
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   276
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
   277
  if (ZapUnusedHeapArea && mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   278
    mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   279
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
1388
tonyp
parents: 1379 977
diff changeset
   282
ContiguousSpace::ContiguousSpace(): CompactibleSpace(), _top(NULL),
tonyp
parents: 1379 977
diff changeset
   283
    _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
   284
  _mangler = new GenSpaceMangler(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   287
ContiguousSpace::~ContiguousSpace() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   288
  delete _mangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   289
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   290
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   291
void ContiguousSpace::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   292
                                 bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   293
                                 bool mangle_space)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
{
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   295
  CompactibleSpace::initialize(mr, clear_space, mangle_space);
1379
ccfaefa561cd 6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents: 1376
diff changeset
   296
  set_concurrent_iteration_safe_limit(top());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   299
void ContiguousSpace::clear(bool mangle_space) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  set_top(bottom());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  set_saved_mark();
1388
tonyp
parents: 1379 977
diff changeset
   302
  CompactibleSpace::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
bool ContiguousSpace::is_free_block(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  return p >= _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   309
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
   310
  ContiguousSpace::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  _offsets.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
void OffsetTableContigSpace::set_bottom(HeapWord* new_bottom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  Space::set_bottom(new_bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  _offsets.set_bottom(new_bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
void OffsetTableContigSpace::set_end(HeapWord* new_end) {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   320
  // Space should not advertise an increase in size
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   321
  // until after the underlying offset table has been enlarged.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  _offsets.resize(pointer_delta(new_end, bottom()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  Space::set_end(new_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   326
#ifndef PRODUCT
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   327
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   328
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
   329
  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
   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() {
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(top());
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::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
   335
  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
   336
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   337
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   338
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
   339
  mangler()->check_mangled_unused_area_complete();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   342
// 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
   343
// 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
   344
// mangled.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   345
void ContiguousSpace::mangle_unused_area() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   346
  mangler()->mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   347
}
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_complete() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   349
  mangler()->mangle_unused_area_complete();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
}
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   351
#endif  // NOT_PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   353
void CompactibleSpace::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   354
                                  bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   355
                                  bool mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   356
  Space::initialize(mr, clear_space, mangle_space);
1388
tonyp
parents: 1379 977
diff changeset
   357
  set_compaction_top(bottom());
tonyp
parents: 1379 977
diff changeset
   358
  _next_compaction_space = NULL;
tonyp
parents: 1379 977
diff changeset
   359
}
tonyp
parents: 1379 977
diff changeset
   360
tonyp
parents: 1379 977
diff changeset
   361
void CompactibleSpace::clear(bool mangle_space) {
tonyp
parents: 1379 977
diff changeset
   362
  Space::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  _compaction_top = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
HeapWord* CompactibleSpace::forward(oop q, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
                                    CompactPoint* cp, HeapWord* compact_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // q is alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // First check if we should switch compaction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  assert(this == cp->space, "'this' should be current compaction space.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  size_t compaction_max_size = pointer_delta(end(), compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  while (size > compaction_max_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    // switch to next compaction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    cp->space->set_compaction_top(compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    cp->space = cp->space->next_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    if (cp->space == NULL) {
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29681
diff changeset
   377
      cp->gen = GenCollectedHeap::heap()->young_gen();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      assert(cp->gen != NULL, "compaction must succeed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
      cp->space = cp->gen->first_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      assert(cp->space != NULL, "generation must have a first compaction space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    compact_top = cp->space->bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    cp->space->set_compaction_top(compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    cp->threshold = cp->space->initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    compaction_max_size = pointer_delta(cp->space->end(), compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // store the forwarding pointer into the mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  if ((HeapWord*)q != compact_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    q->forward_to(oop(compact_top));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    assert(q->is_gc_marked(), "encoding the pointer should preserve the mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    // if the object isn't moving we can just set the mark to the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    // mark and handle it specially later on.
49722
a47d1e21b3f1 8199735: Mark word updates need to use Access API
rkennke
parents: 49359
diff changeset
   395
    q->init_mark_raw();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    assert(q->forwardee() == NULL, "should be forwarded to NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  compact_top += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // we need to update the offset table so that the beginnings of objects can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // found during scavenge.  Note that we are updating the offset table based on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // where the object will be once the compaction phase finishes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  if (compact_top > cp->threshold)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    cp->threshold =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      cp->space->cross_threshold(compact_top - size, compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  return compact_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
   410
#if INCLUDE_SERIALGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
   411
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
void ContiguousSpace::prepare_for_compaction(CompactPoint* cp) {
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 25905
diff changeset
   413
  scan_and_forward(this, cp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
void CompactibleSpace::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // Check first is there is any work to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  if (used() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    return;   // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 25905
diff changeset
   422
  scan_and_adjust_pointers(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
void CompactibleSpace::compact() {
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 25905
diff changeset
   426
  scan_and_compact(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
   429
#endif // INCLUDE_SERIALGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49722
diff changeset
   430
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
void Space::print_short() const { print_short_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
void Space::print_short_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  st->print(" space " SIZE_FORMAT "K, %3d%% used", capacity() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
              (int) ((double) used() * 100 / capacity()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
void Space::print() const { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
void Space::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ")",
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29701
diff changeset
   443
                p2i(bottom()), p2i(end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
void ContiguousSpace::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29701
diff changeset
   449
                p2i(bottom()), p2i(top()), p2i(end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
void OffsetTableContigSpace::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
                INTPTR_FORMAT ", " INTPTR_FORMAT ")",
29800
fa5f7a2bf717 8076073: shared: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29701
diff changeset
   456
              p2i(bottom()), p2i(top()), p2i(_offsets.threshold()), p2i(end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   459
void ContiguousSpace::verify() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  HeapWord* p = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  while (p < t) {
51268
4ac20e5f96ce 8202171: Some oopDesc functions compare this with NULL
hseigel
parents: 50801
diff changeset
   464
    oopDesc::verify(oop(p));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    p += oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  if (top() != end()) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   470
    guarantee(top() == block_start_const(end()-1) &&
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   471
              top() == block_start_const(top()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
              "top should be start of unallocated block, if it exists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50429
diff changeset
   476
void Space::oop_iterate(OopIterateClosure* blk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  ObjectToOopClosure blk2(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  object_iterate(&blk2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
bool Space::obj_is_alive(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  assert (block_is_obj(p), "The address should point to an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50429
diff changeset
   486
void ContiguousSpace::oop_iterate(OopIterateClosure* blk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  if (is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  HeapWord* obj_addr = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  // Could call objects iterate, but this is easier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  while (obj_addr < t) {
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 30870
diff changeset
   492
    obj_addr += oop(obj_addr)->oop_iterate_size(blk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
void ContiguousSpace::object_iterate(ObjectClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  if (is_empty()) return;
33205
bc9fec5e7656 8139506: Remove the WaterMark class
david
parents: 33105
diff changeset
   498
  object_iterate_from(bottom(), blk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
33205
bc9fec5e7656 8139506: Remove the WaterMark class
david
parents: 33105
diff changeset
   501
void ContiguousSpace::object_iterate_from(HeapWord* mark, ObjectClosure* blk) {
bc9fec5e7656 8139506: Remove the WaterMark class
david
parents: 33105
diff changeset
   502
  while (mark < top()) {
bc9fec5e7656 8139506: Remove the WaterMark class
david
parents: 33105
diff changeset
   503
    blk->do_object(oop(mark));
bc9fec5e7656 8139506: Remove the WaterMark class
david
parents: 33105
diff changeset
   504
    mark += oop(mark)->size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
ContiguousSpace::object_iterate_careful(ObjectClosureCareful* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  HeapWord * limit = concurrent_iteration_safe_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  assert(limit <= top(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  for (HeapWord* p = bottom(); p < limit;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    size_t size = blk->do_object_careful(oop(p));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    if (size == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      return p;  // failed at p
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
      p += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  return NULL; // all done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
// Very general, slow implementation.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   524
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
   525
  assert(MemRegion(bottom(), end()).contains(p),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   526
         "p (" PTR_FORMAT ") not in space [" PTR_FORMAT ", " PTR_FORMAT ")",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   527
         p2i(p), p2i(bottom()), p2i(end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  if (p >= top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    return top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    HeapWord* last = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    HeapWord* cur = last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    while (cur <= p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
      last = cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
      cur += oop(cur)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    }
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46625
diff changeset
   537
    assert(oopDesc::is_oop(oop(last)), PTR_FORMAT " should be an object start", p2i(last));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    return last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
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
   543
  assert(MemRegion(bottom(), end()).contains(p),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   544
         "p (" PTR_FORMAT ") not in space [" PTR_FORMAT ", " PTR_FORMAT ")",
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   545
         p2i(p), p2i(bottom()), p2i(end()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  HeapWord* current_top = top();
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   547
  assert(p <= current_top,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   548
         "p > current top - p: " PTR_FORMAT ", current top: " PTR_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   549
         p2i(p), p2i(current_top));
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46625
diff changeset
   550
  assert(p == current_top || oopDesc::is_oop(oop(p)),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   551
         "p (" PTR_FORMAT ") is not a block start - "
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32606
diff changeset
   552
         "current_top: " PTR_FORMAT ", is_oop: %s",
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46625
diff changeset
   553
         p2i(p), p2i(current_top), BOOL_TO_STR(oopDesc::is_oop(oop(p))));
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   554
  if (p < current_top) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    return oop(p)->size();
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   556
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    assert(p == current_top, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    return pointer_delta(end(), (HeapWord*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
// This version requires locking.
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   563
inline HeapWord* ContiguousSpace::allocate_impl(size_t size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  assert(Heap_lock->owned_by_self() ||
25481
1427aa24638c 8047818: G1 HeapRegions can no longer be ContiguousSpaces
mgerdin
parents: 25351
diff changeset
   565
         (SafepointSynchronize::is_at_safepoint() && Thread::current()->is_VM_thread()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
         "not locked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  HeapWord* obj = top();
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   568
  if (pointer_delta(end(), obj) >= size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    HeapWord* new_top = obj + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    set_top(new_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
// This version is lock-free.
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   579
inline HeapWord* ContiguousSpace::par_allocate_impl(size_t size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    HeapWord* obj = top();
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   582
    if (pointer_delta(end(), obj) >= size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
      HeapWord* new_top = obj + size;
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   584
      HeapWord* result = Atomic::cmpxchg(new_top, top_addr(), obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
      // result can be one of two:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
      //  the old top value: the exchange succeeded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
      //  otherwise: the new value of the top is returned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
      if (result == obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
        assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
        return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  } while (true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   598
HeapWord* ContiguousSpace::allocate_aligned(size_t size) {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   599
  assert(Heap_lock->owned_by_self() || (SafepointSynchronize::is_at_safepoint() && Thread::current()->is_VM_thread()), "not locked");
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   600
  HeapWord* end_value = end();
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   601
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   602
  HeapWord* obj = CollectedHeap::align_allocation_or_fail(top(), end_value, SurvivorAlignmentInBytes);
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   603
  if (obj == NULL) {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   604
    return NULL;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   605
  }
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   606
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   607
  if (pointer_delta(end_value, obj) >= size) {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   608
    HeapWord* new_top = obj + size;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   609
    set_top(new_top);
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   610
    assert(::is_aligned(obj, SurvivorAlignmentInBytes) && is_aligned(new_top),
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   611
      "checking alignment");
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   612
    return obj;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   613
  } else {
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   614
    set_top(obj);
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   615
    return NULL;
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   616
  }
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   617
}
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25481
diff changeset
   618
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
// Requires locking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
HeapWord* ContiguousSpace::allocate(size_t size) {
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   621
  return allocate_impl(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
// Lock-free.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
HeapWord* ContiguousSpace::par_allocate(size_t size) {
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   626
  return par_allocate_impl(size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
void ContiguousSpace::allocate_temporary_filler(int factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  // allocate temporary type array decreasing free size with factor 'factor'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  assert(factor >= 0, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  size_t size = pointer_delta(end(), top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  // if space is full, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  if (size == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  if (factor > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    size -= size/factor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  size = align_object_size(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   642
  const size_t array_header_size = typeArrayOopDesc::header_size(T_INT);
46618
d503911aa948 8178489: Make align functions more type safe and consistent
stefank
parents: 40655
diff changeset
   643
  if (size >= align_object_size(array_header_size)) {
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   644
    size_t length = (size - array_header_size) * (HeapWordSize / sizeof(jint));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    // allocate uninitialized int array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    typeArrayOop t = (typeArrayOop) allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    assert(t != NULL, "allocation should succeed");
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 51268
diff changeset
   648
    t->set_mark_raw(markWord::prototype());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    t->set_klass(Universe::intArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    t->set_length((int)length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  } else {
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 4571
diff changeset
   652
    assert(size == CollectedHeap::min_fill_size(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
           "size for smallest fake object doesn't match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    instanceOop obj = (instanceOop) allocate(size);
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 51268
diff changeset
   655
    obj->set_mark_raw(markWord::prototype());
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 360
diff changeset
   656
    obj->set_klass_gap(0);
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 2105
diff changeset
   657
    obj->set_klass(SystemDictionary::Object_klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
HeapWord* OffsetTableContigSpace::initialize_threshold() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  return _offsets.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
HeapWord* OffsetTableContigSpace::cross_threshold(HeapWord* start, HeapWord* end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  _offsets.alloc_block(start, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  return _offsets.threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
OffsetTableContigSpace::OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
                                               MemRegion mr) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  _offsets(sharedOffsetArray, mr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  _par_alloc_lock(Mutex::leaf, "OffsetTableContigSpace par alloc lock", true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  _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
   676
  initialize(mr, SpaceDecorator::Clear, SpaceDecorator::Mangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
#define OBJ_SAMPLE_INTERVAL 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
#define BLOCK_SAMPLE_INTERVAL 100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   682
void OffsetTableContigSpace::verify() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  HeapWord* p = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  int objs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  int blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  if (VerifyObjectStartArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    _offsets.verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  while (p < top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    size_t size = oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    // For a sampling of objects in the space, find it using the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    // block offset table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    if (blocks == BLOCK_SAMPLE_INTERVAL) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   697
      guarantee(p == block_start_const(p + (size/2)),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   698
                "check offset computation");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    if (objs == OBJ_SAMPLE_INTERVAL) {
51268
4ac20e5f96ce 8202171: Some oopDesc functions compare this with NULL
hseigel
parents: 50801
diff changeset
   705
      oopDesc::verify(oop(p));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      objs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
      objs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    p += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
1557
13878a2edfef 6765804: GC "dead ratios" should be unsigned
jcoomes
parents: 1388
diff changeset
   717
size_t TenuredSpace::allowed_dead_ratio() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  return MarkSweepDeadRatio;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
}