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