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