hotspot/src/share/vm/memory/space.cpp
author jmasa
Wed, 09 Jul 2008 15:08:55 -0700
changeset 971 f0b20be4165d
parent 593 803947e176bd
child 977 b90650e2a9f7
permissions -rw-r--r--
6672698: mangle_unused_area() should not remangle the entire heap at each collection. Summary: Maintain a high water mark for the allocations in a space and mangle only up to that high water mark. Reviewed-by: ysr, apetrusenko
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_space.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    28
void SpaceMemRegionOopsIterClosure::do_oop(oop* p)       { SpaceMemRegionOopsIterClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    29
void SpaceMemRegionOopsIterClosure::do_oop(narrowOop* p) { SpaceMemRegionOopsIterClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
HeapWord* DirtyCardToOopClosure::get_actual_top(HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
                                                HeapWord* top_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  if (top_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    if (_sp->block_is_obj(top_obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
      if (_precision == CardTableModRefBS::ObjHeadPreciseArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
        if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
          // An arrayOop is starting on the dirty card - since we do exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
          // store checks for objArrays we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
          // Otherwise, it is possible that the object starting on the dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
          // card spans the entire card, and that the store happened on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
          // later card.  Figure out where the object ends.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
          // Use the block_size() method of the space over which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
          // the iteration is being done.  That space (e.g. CMS) may have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
          // specific requirements on object sizes which will
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
          // be reflected in the block_size() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
          top = top_obj + oop(top_obj)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      top = top_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    assert(top == _sp->end(), "only case where top_obj == NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  return top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void DirtyCardToOopClosure::walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                                            HeapWord* bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                                            HeapWord* top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // 1. Blocks may or may not be objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // 2. Even when a block_is_obj(), it may not entirely
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  //    occupy the block if the block quantum is larger than
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  //    the object size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // We can and should try to optimize by calling the non-MemRegion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // version of oop_iterate() for all but the extremal objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // (for which we need to call the MemRegion version of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // oop_iterate()) To be done post-beta XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  for (; bottom < top; bottom += _sp->block_size(bottom)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    // As in the case of contiguous space above, we'd like to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    // just use the value returned by oop_iterate to increment the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // current pointer; unfortunately, that won't work in CMS because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    // we'd need an interface change (it seems) to have the space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // "adjust the object size" (for instance pad it up to its
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // block alignment or minimum block size restrictions. XXX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (_sp->block_is_obj(bottom) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
        !_sp->obj_allocated_since_save_marks(oop(bottom))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      oop(bottom)->oop_iterate(_cl, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
void DirtyCardToOopClosure::do_MemRegion(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Some collectors need to do special things whenever their dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // cards are processed. For instance, CMS must remember mutator updates
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // (i.e. dirty cards) so as to re-scan mutated objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Such work can be piggy-backed here on dirty card scanning, so as to make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // it slightly more efficient than doing a complete non-detructive pre-scan
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // of the card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  MemRegionClosure* pCl = _sp->preconsumptionDirtyCardClosure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  if (pCl != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    pCl->do_MemRegion(mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  HeapWord* bottom = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  HeapWord* last = mr.last();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  HeapWord* top = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  HeapWord* bottom_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  HeapWord* top_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  assert(_precision == CardTableModRefBS::ObjHeadPreciseArray ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
         _precision == CardTableModRefBS::Precise,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
         "Only ones we deal with for now.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  assert(_precision != CardTableModRefBS::ObjHeadPreciseArray ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
         _last_bottom == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
         top <= _last_bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
         "Not decreasing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  NOT_PRODUCT(_last_bottom = mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  bottom_obj = _sp->block_start(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  top_obj    = _sp->block_start(last);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  assert(bottom_obj <= bottom, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  assert(top_obj    <= top,    "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Given what we think is the top of the memory region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // the start of the object at the top, get the actual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // value of the top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  top = get_actual_top(top, top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // If the previous call did some part of this region, don't redo.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  if (_precision == CardTableModRefBS::ObjHeadPreciseArray &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      _min_done != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      _min_done < top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    top = _min_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Top may have been reset, and in fact may be below bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // e.g. the dirty card region is entirely in a now free object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // -- something that could happen with a concurrent sweeper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  bottom = MIN2(bottom, top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  mr     = MemRegion(bottom, top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  assert(bottom <= top &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
         (_precision != CardTableModRefBS::ObjHeadPreciseArray ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
          _min_done == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
          top <= _min_done),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
         "overlap!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Walk the region if it is not empty; otherwise there is nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if (!mr.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    walk_mem_region(mr, bottom_obj, top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  _min_done = bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
DirtyCardToOopClosure* Space::new_dcto_cl(OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                                          CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                                          HeapWord* boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  return new DirtyCardToOopClosure(this, cl, precision, boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
HeapWord* ContiguousSpaceDCTOC::get_actual_top(HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                                               HeapWord* top_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (top_obj != NULL && top_obj < (_sp->toContiguousSpace())->top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    if (_precision == CardTableModRefBS::ObjHeadPreciseArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
        // An arrayOop is starting on the dirty card - since we do exact
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
        // store checks for objArrays we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
        // Otherwise, it is possible that the object starting on the dirty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
        // card spans the entire card, and that the store happened on a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
        // later card.  Figure out where the object ends.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
        assert(_sp->block_size(top_obj) == (size_t) oop(top_obj)->size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
          "Block size and object size mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        top = top_obj + oop(top_obj)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    top = (_sp->toContiguousSpace())->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  return top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
void Filtering_DCTOC::walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                                      HeapWord* bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
                                      HeapWord* top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Note that this assumption won't hold if we have a concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // collector in this space, which may have freed up objects after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // they were dirtied and before the stop-the-world GC that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // examining cards here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  assert(bottom < top, "ought to be at least one obj on a dirty card.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  if (_boundary != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    // We have a boundary outside of which we don't want to look
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    // at objects, so create a filtering closure around the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    // oop closure before walking the region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    FilteringClosure filter(_boundary, _cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    walk_mem_region_with_cl(mr, bottom, top, &filter);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    // No boundary, simply walk the heap with the oop closure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    walk_mem_region_with_cl(mr, bottom, top, _cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
// We must replicate this so that the static type of "FilteringClosure"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
// (see above) is apparent at the oop_iterate calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
#define ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(ClosureType) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
void ContiguousSpaceDCTOC::walk_mem_region_with_cl(MemRegion mr,        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
                                                   HeapWord* bottom,    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
                                                   HeapWord* top,       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
                                                   ClosureType* cl) {   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  bottom += oop(bottom)->oop_iterate(cl, mr);                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  if (bottom < top) {                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    HeapWord* next_obj = bottom + oop(bottom)->size();                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    while (next_obj < top) {                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      /* Bottom lies entirely below top, so we can call the */          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      /* non-memRegion version of oop_iterate below. */                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      oop(bottom)->oop_iterate(cl);                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      bottom = next_obj;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
      next_obj = bottom + oop(bottom)->size();                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    }                                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    /* Last object. */                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    oop(bottom)->oop_iterate(cl, mr);                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  }                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// (There are only two of these, rather than N, because the split is due
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// only to the introduction of the FilteringClosure, a local part of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
// impl of this abstraction.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(OopClosure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(FilteringClosure)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
DirtyCardToOopClosure*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
ContiguousSpace::new_dcto_cl(OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
                             CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                             HeapWord* boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   235
void Space::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   236
                       bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   237
                       bool mangle_space) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  HeapWord* bottom = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  HeapWord* end    = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
         "invalid space boundaries");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  set_bottom(bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  set_end(end);
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   244
  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
   245
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   246
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   247
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
   248
  if (ZapUnusedHeapArea && mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   249
    mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   250
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   253
ContiguousSpace::ContiguousSpace(): CompactibleSpace(), _top(NULL) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   254
  _mangler = new GenSpaceMangler(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   257
ContiguousSpace::~ContiguousSpace() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   258
  delete _mangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   259
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   260
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   261
void ContiguousSpace::initialize(MemRegion mr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   262
                                 bool clear_space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   263
                                 bool mangle_space)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
{
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   265
  CompactibleSpace::initialize(mr, clear_space, mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  _concurrent_iteration_safe_limit = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   269
void ContiguousSpace::clear(bool mangle_space) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  set_top(bottom());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  set_saved_mark();
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   272
  Space::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
bool Space::is_in(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  HeapWord* b = block_start(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  return b != NULL && block_is_obj(b);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
bool ContiguousSpace::is_in(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  return _bottom <= p && p < _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
bool ContiguousSpace::is_free_block(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  return p >= _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   288
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
   289
  ContiguousSpace::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  _offsets.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
void OffsetTableContigSpace::set_bottom(HeapWord* new_bottom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  Space::set_bottom(new_bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  _offsets.set_bottom(new_bottom);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
void OffsetTableContigSpace::set_end(HeapWord* new_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // Space should not advertize an increase in size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // until after the underlying offest table has been enlarged.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  _offsets.resize(pointer_delta(new_end, bottom()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  Space::set_end(new_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   305
#ifndef PRODUCT
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   306
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   307
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
   308
  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
   309
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   310
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
   311
  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
   312
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   313
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
   314
  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
   315
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   316
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   317
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
   318
  mangler()->check_mangled_unused_area_complete();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   321
// 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
   322
// 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
   323
// mangled.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   324
void ContiguousSpace::mangle_unused_area() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   325
  mangler()->mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   326
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   327
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
   328
  mangler()->mangle_unused_area_complete();
1
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
void ContiguousSpace::mangle_region(MemRegion mr) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   331
  // Although this method uses SpaceMangler::mangle_region() which
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   332
  // is not specific to a space, the when the ContiguousSpace version
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   333
  // is called, it is always with regard to a space and this
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   334
  // bounds checking is appropriate.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   335
  MemRegion space_mr(bottom(), end());
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   336
  assert(space_mr.contains(mr), "Mangling outside space");
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   337
  SpaceMangler::mangle_region(mr);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   338
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   339
#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);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  _compaction_top = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  _next_compaction_space = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
HeapWord* CompactibleSpace::forward(oop q, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
                                    CompactPoint* cp, HeapWord* compact_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // q is alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // First check if we should switch compaction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  assert(this == cp->space, "'this' should be current compaction space.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  size_t compaction_max_size = pointer_delta(end(), compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  while (size > compaction_max_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    // switch to next compaction space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    cp->space->set_compaction_top(compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    cp->space = cp->space->next_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    if (cp->space == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      cp->gen = GenCollectedHeap::heap()->prev_gen(cp->gen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      assert(cp->gen != NULL, "compaction must succeed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
      cp->space = cp->gen->first_compaction_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
      assert(cp->space != NULL, "generation must have a first compaction space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    compact_top = cp->space->bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    cp->space->set_compaction_top(compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    cp->threshold = cp->space->initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    compaction_max_size = pointer_delta(cp->space->end(), compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // store the forwarding pointer into the mark word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  if ((HeapWord*)q != compact_top) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    q->forward_to(oop(compact_top));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    assert(q->is_gc_marked(), "encoding the pointer should preserve the mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    // if the object isn't moving we can just set the mark to the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    // mark and handle it specially later on.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    q->init_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    assert(q->forwardee() == NULL, "should be forwarded to NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   382
  VALIDATE_MARK_SWEEP_ONLY(MarkSweep::register_live_oop(q, size));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  compact_top += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // we need to update the offset table so that the beginnings of objects can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // found during scavenge.  Note that we are updating the offset table based on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // where the object will be once the compaction phase finishes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  if (compact_top > cp->threshold)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    cp->threshold =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
      cp->space->cross_threshold(compact_top - size, compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  return compact_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
bool CompactibleSpace::insert_deadspace(size_t& allowed_deadspace_words,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
                                        HeapWord* q, size_t deadlength) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  if (allowed_deadspace_words >= deadlength) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    allowed_deadspace_words -= deadlength;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    oop(q)->set_mark(markOopDesc::prototype()->set_marked());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    const size_t min_int_array_size = typeArrayOopDesc::header_size(T_INT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    if (deadlength >= min_int_array_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
      oop(q)->set_klass(Universe::intArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      typeArrayOop(q)->set_length((int)((deadlength - min_int_array_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
                                            * (HeapWordSize/sizeof(jint))));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      assert((int) deadlength == instanceOopDesc::header_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
             "size for smallest fake dead object doesn't match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
      oop(q)->set_klass(SystemDictionary::object_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    assert((int) deadlength == oop(q)->size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
           "make sure size for fake dead object match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    // Recall that we required "q == compaction_top".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    allowed_deadspace_words = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
#define block_is_always_obj(q) true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
#define obj_size(q) oop(q)->size()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
#define adjust_obj_size(s) s
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
void CompactibleSpace::prepare_for_compaction(CompactPoint* cp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  SCAN_AND_FORWARD(cp, end, block_is_obj, block_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
// Faster object search.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
void ContiguousSpace::prepare_for_compaction(CompactPoint* cp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  SCAN_AND_FORWARD(cp, top, block_is_always_obj, obj_size);
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 Space::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // adjust all the interior pointers to point at the new locations of objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // Used by MarkSweep::mark_sweep_phase3()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // First check to see if there is any work to be done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  if (used() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    return;  // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // Otherwise...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  HeapWord* q = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  HeapWord* t = end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  debug_only(HeapWord* prev_q = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  while (q < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    if (oop(q)->is_gc_marked()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      // q is alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   451
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::track_interior_pointers(oop(q)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      // point all the oops to the new location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      size_t size = oop(q)->adjust_pointers();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   454
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::check_interior_pointers());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      debug_only(prev_q = q);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   457
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::validate_live_oop(oop(q), size));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      q += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      // q is not a live object.  But we're not in a compactible space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      // So we don't have live ranges.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      debug_only(prev_q = q);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      q += block_size(q);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      assert(q > prev_q, "we should be moving forward through memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  assert(q == t, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
void CompactibleSpace::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  // Check first is there is any work to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  if (used() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    return;   // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  SCAN_AND_ADJUST_POINTERS(adjust_obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
void CompactibleSpace::compact() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  SCAN_AND_COMPACT(obj_size);
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 Space::print_short() const { print_short_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
void Space::print_short_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  st->print(" space " SIZE_FORMAT "K, %3d%% used", capacity() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
              (int) ((double) used() * 100 / capacity()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
void Space::print() const { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
void Space::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
                bottom(), end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
void ContiguousSpace::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
                bottom(), top(), end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
void OffsetTableContigSpace::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  print_short_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
                INTPTR_FORMAT ", " INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
              bottom(), top(), _offsets.threshold(), end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
void ContiguousSpace::verify(bool allow_dirty) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  HeapWord* p = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  while (p < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    oop(p)->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    p += oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  if (top() != end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    guarantee(top() == block_start(end()-1) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
              top() == block_start(top()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
              "top should be start of unallocated block, if it exists");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
void Space::oop_iterate(OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  ObjectToOopClosure blk2(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  object_iterate(&blk2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
HeapWord* Space::object_iterate_careful(ObjectClosureCareful* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  guarantee(false, "NYI");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  return bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
HeapWord* Space::object_iterate_careful_m(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
                                          ObjectClosureCareful* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  guarantee(false, "NYI");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  return bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
void Space::object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  assert(!mr.is_empty(), "Should be non-empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  // We use MemRegion(bottom(), end()) rather than used_region() below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  // because the two are not necessarily equal for some kinds of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  // spaces, in particular, certain kinds of free list spaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  // We could use the more complicated but more precise:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  // MemRegion(used_region().start(), round_to(used_region().end(), CardSize))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  // but the slight imprecision seems acceptable in the assertion check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  assert(MemRegion(bottom(), end()).contains(mr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
         "Should be within used space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  HeapWord* prev = cl->previous();   // max address from last time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  if (prev >= mr.end()) { // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  // This assert will not work when we go from cms space to perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  // space, and use same closure. Easy fix deferred for later. XXX YSR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // assert(prev == NULL || contains(prev), "Should be within space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  bool last_was_obj_array = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  HeapWord *blk_start_addr, *region_start_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  if (prev > mr.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    region_start_addr = prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    blk_start_addr    = prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    assert(blk_start_addr == block_start(region_start_addr), "invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    region_start_addr = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    blk_start_addr    = block_start(region_start_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  HeapWord* region_end_addr = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  MemRegion derived_mr(region_start_addr, region_end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  while (blk_start_addr < region_end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    const size_t size = block_size(blk_start_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    if (block_is_obj(blk_start_addr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      last_was_obj_array = cl->do_object_bm(oop(blk_start_addr), derived_mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
      last_was_obj_array = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    blk_start_addr += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  if (!last_was_obj_array) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    assert((bottom() <= blk_start_addr) && (blk_start_addr <= end()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
           "Should be within (closed) used space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    assert(blk_start_addr > prev, "Invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    cl->set_previous(blk_start_addr); // min address for next time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
bool Space::obj_is_alive(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  assert (block_is_obj(p), "The address should point to an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
void ContiguousSpace::object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  assert(!mr.is_empty(), "Should be non-empty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  assert(used_region().contains(mr), "Should be within used space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  HeapWord* prev = cl->previous();   // max address from last time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  if (prev >= mr.end()) { // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  // See comment above (in more general method above) in case you
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  // happen to use this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  assert(prev == NULL || is_in_reserved(prev), "Should be within space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  bool last_was_obj_array = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  HeapWord *obj_start_addr, *region_start_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  if (prev > mr.start()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    region_start_addr = prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    obj_start_addr    = prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    assert(obj_start_addr == block_start(region_start_addr), "invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    region_start_addr = mr.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    obj_start_addr    = block_start(region_start_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  HeapWord* region_end_addr = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  MemRegion derived_mr(region_start_addr, region_end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  while (obj_start_addr < region_end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    oop obj = oop(obj_start_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    const size_t size = obj->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    last_was_obj_array = cl->do_object_bm(obj, derived_mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    obj_start_addr += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  if (!last_was_obj_array) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    assert((bottom() <= obj_start_addr)  && (obj_start_addr <= end()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
           "Should be within (closed) used space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    assert(obj_start_addr > prev, "Invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    cl->set_previous(obj_start_addr); // min address for next time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
#define ContigSpace_PAR_OOP_ITERATE_DEFN(OopClosureType, nv_suffix)         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
                                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  void ContiguousSpace::par_oop_iterate(MemRegion mr, OopClosureType* blk) {\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    HeapWord* obj_addr = mr.start();                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    HeapWord* t = mr.end();                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    while (obj_addr < t) {                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      assert(oop(obj_addr)->is_oop(), "Should be an oop");                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
      obj_addr += oop(obj_addr)->oop_iterate(blk);                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    }                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DEFN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
#undef ContigSpace_PAR_OOP_ITERATE_DEFN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
void ContiguousSpace::oop_iterate(OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  if (is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  HeapWord* obj_addr = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  HeapWord* t = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // Could call objects iterate, but this is easier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  while (obj_addr < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    obj_addr += oop(obj_addr)->oop_iterate(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
void ContiguousSpace::oop_iterate(MemRegion mr, OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  if (is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  MemRegion cur = MemRegion(bottom(), top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  mr = mr.intersection(cur);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  if (mr.is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  if (mr.equals(cur)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    oop_iterate(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  assert(mr.end() <= top(), "just took an intersection above");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  HeapWord* obj_addr = block_start(mr.start());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  HeapWord* t = mr.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  // Handle first object specially.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  oop obj = oop(obj_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  SpaceMemRegionOopsIterClosure smr_blk(blk, mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  obj_addr += obj->oop_iterate(&smr_blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  while (obj_addr < t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    oop obj = oop(obj_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    assert(obj->is_oop(), "expected an oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    obj_addr += obj->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    // If "obj_addr" is not greater than top, then the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    // entire object "obj" is within the region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    if (obj_addr <= t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
      obj->oop_iterate(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
      // "obj" extends beyond end of region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
      obj->oop_iterate(&smr_blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
void ContiguousSpace::object_iterate(ObjectClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  if (is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  WaterMark bm = bottom_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  object_iterate_from(bm, blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
void ContiguousSpace::object_iterate_from(WaterMark mark, ObjectClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  assert(mark.space() == this, "Mark does not match space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  HeapWord* p = mark.point();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  while (p < top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    blk->do_object(oop(p));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    p += oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
ContiguousSpace::object_iterate_careful(ObjectClosureCareful* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  HeapWord * limit = concurrent_iteration_safe_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  assert(limit <= top(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  for (HeapWord* p = bottom(); p < limit;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    size_t size = blk->do_object_careful(oop(p));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
    if (size == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      return p;  // failed at p
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
      p += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  return NULL; // all done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
#define ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN(OopClosureType, nv_suffix)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
void ContiguousSpace::                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk) {            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  HeapWord* t;                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  HeapWord* p = saved_mark_word();                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  assert(p != NULL, "expected saved mark");                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  const intx interval = PrefetchScanIntervalInBytes;                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  do {                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    t = top();                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    while (p < t) {                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
      Prefetch::write(p, interval);                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      debug_only(HeapWord* prev = p);                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      oop m = oop(p);                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
      p += m->oop_iterate(blk);                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    }                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  } while (t < top());                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  set_saved_mark_word(p);                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
#undef ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
// Very general, slow implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
HeapWord* ContiguousSpace::block_start(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  assert(MemRegion(bottom(), end()).contains(p), "p not in space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  if (p >= top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    return top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    HeapWord* last = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    HeapWord* cur = last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    while (cur <= p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
      last = cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
      cur += oop(cur)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    assert(oop(last)->is_oop(), "Should be an object start");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    return last;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
size_t ContiguousSpace::block_size(const HeapWord* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  assert(MemRegion(bottom(), end()).contains(p), "p not in space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  HeapWord* current_top = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  assert(p <= current_top, "p is not a block start");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  assert(p == current_top || oop(p)->is_oop(), "p is not a block start");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  if (p < current_top)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    return oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    assert(p == current_top, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    return pointer_delta(end(), (HeapWord*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
// This version requires locking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
inline HeapWord* ContiguousSpace::allocate_impl(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
                                                HeapWord* const end_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  assert(Heap_lock->owned_by_self() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
         (SafepointSynchronize::is_at_safepoint() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
          Thread::current()->is_VM_thread()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
         "not locked");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  HeapWord* obj = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  if (pointer_delta(end_value, obj) >= size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    HeapWord* new_top = obj + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    set_top(new_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
// This version is lock-free.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
inline HeapWord* ContiguousSpace::par_allocate_impl(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
                                                    HeapWord* const end_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    HeapWord* obj = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    if (pointer_delta(end_value, obj) >= size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      HeapWord* new_top = obj + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      HeapWord* result = (HeapWord*)Atomic::cmpxchg_ptr(new_top, top_addr(), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
      // result can be one of two:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
      //  the old top value: the exchange succeeded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      //  otherwise: the new value of the top is returned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      if (result == obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
        return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  } while (true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
// Requires locking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
HeapWord* ContiguousSpace::allocate(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  return allocate_impl(size, end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
// Lock-free.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
HeapWord* ContiguousSpace::par_allocate(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  return par_allocate_impl(size, end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
void ContiguousSpace::allocate_temporary_filler(int factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  // allocate temporary type array decreasing free size with factor 'factor'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  assert(factor >= 0, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  size_t size = pointer_delta(end(), top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  // if space is full, return
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  if (size == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  if (factor > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    size -= size/factor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  size = align_object_size(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  const size_t min_int_array_size = typeArrayOopDesc::header_size(T_INT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  if (size >= min_int_array_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
    size_t length = (size - min_int_array_size) * (HeapWordSize / sizeof(jint));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    // allocate uninitialized int array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    typeArrayOop t = (typeArrayOop) allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    assert(t != NULL, "allocation should succeed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    t->set_mark(markOopDesc::prototype());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    t->set_klass(Universe::intArrayKlassObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    t->set_length((int)length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    assert((int) size == instanceOopDesc::header_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
           "size for smallest fake object doesn't match");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    instanceOop obj = (instanceOop) allocate(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    obj->set_mark(markOopDesc::prototype());
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 360
diff changeset
   861
    obj->set_klass_gap(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    obj->set_klass(SystemDictionary::object_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   866
void EdenSpace::clear(bool mangle_space) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   867
  ContiguousSpace::clear(mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  set_soft_end(end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
// Requires locking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
HeapWord* EdenSpace::allocate(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  return allocate_impl(size, soft_end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
// Lock-free.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
HeapWord* EdenSpace::par_allocate(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  return par_allocate_impl(size, soft_end());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
HeapWord* ConcEdenSpace::par_allocate(size_t size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    // The invariant is top() should be read before end() because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
    // top() can't be greater than end(), so if an update of _soft_end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    // occurs between 'end_val = end();' and 'top_val = top();' top()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    // also can grow up to the new end() and the condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    // 'top_val > end_val' is true. To ensure the loading order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    // OrderAccess::loadload() is required after top() read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    HeapWord* obj = top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    OrderAccess::loadload();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    if (pointer_delta(*soft_end_addr(), obj) >= size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
      HeapWord* new_top = obj + size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      HeapWord* result = (HeapWord*)Atomic::cmpxchg_ptr(new_top, top_addr(), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
      // result can be one of two:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
      //  the old top value: the exchange succeeded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
      //  otherwise: the new value of the top is returned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
      if (result == obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
        assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
        return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  } while (true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
HeapWord* OffsetTableContigSpace::initialize_threshold() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  return _offsets.initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
HeapWord* OffsetTableContigSpace::cross_threshold(HeapWord* start, HeapWord* end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  _offsets.alloc_block(start, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  return _offsets.threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
OffsetTableContigSpace::OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
                                               MemRegion mr) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  _offsets(sharedOffsetArray, mr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  _par_alloc_lock(Mutex::leaf, "OffsetTableContigSpace par alloc lock", true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  _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
   924
  initialize(mr, SpaceDecorator::Clear, SpaceDecorator::Mangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
class VerifyOldOopClosure : public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
 public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   930
  oop  _the_obj;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   931
  bool _allow_dirty;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  void do_oop(oop* p) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   933
    _the_obj->verify_old_oop(p, _allow_dirty);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   934
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   935
  void do_oop(narrowOop* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   936
    _the_obj->verify_old_oop(p, _allow_dirty);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
#define OBJ_SAMPLE_INTERVAL 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
#define BLOCK_SAMPLE_INTERVAL 100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
void OffsetTableContigSpace::verify(bool allow_dirty) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  HeapWord* p = bottom();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  HeapWord* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  VerifyOldOopClosure blk;      // Does this do anything?
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   947
  blk._allow_dirty = allow_dirty;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  int objs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  int blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  if (VerifyObjectStartArray) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    _offsets.verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  while (p < top()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
    size_t size = oop(p)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    // For a sampling of objects in the space, find it using the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    // block offset table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    if (blocks == BLOCK_SAMPLE_INTERVAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
      guarantee(p == block_start(p + (size/2)), "check offset computation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
      blocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
      blocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    if (objs == OBJ_SAMPLE_INTERVAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
      oop(p)->verify();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   968
      blk._the_obj = oop(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      oop(p)->oop_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
      objs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
      objs++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    prev_p = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
    p += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  guarantee(p == top(), "end of last object must match end of space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
void OffsetTableContigSpace::serialize_block_offset_array_offsets(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
                                                      SerializeOopClosure* soc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  _offsets.serialize(soc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
int TenuredSpace::allowed_dead_ratio() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  return MarkSweepDeadRatio;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
int ContigPermSpace::allowed_dead_ratio() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  return PermMarkSweepDeadRatio;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
}