hotspot/src/share/vm/memory/space.hpp
author jmasa
Wed, 09 Jul 2008 15:08:55 -0700
changeset 971 f0b20be4165d
parent 360 21d113ecbf6a
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-2007 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
// A space is an abstraction for the "storage units" backing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// up the generation abstraction. It includes specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// implementations for keeping track of free and used space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// for iterating over objects and free blocks, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Here's the Space hierarchy:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// - Space               -- an asbtract base class describing a heap area
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//   - CompactibleSpace  -- a space supporting compaction
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//     - CompactibleFreeListSpace -- (used for CMS generation)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//     - ContiguousSpace -- a compactible space in which all free space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//                          is contiguous
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//       - EdenSpace     -- contiguous space used as nursery
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//         - ConcEdenSpace -- contiguous space with a 'soft end safe' allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//       - OffsetTableContigSpace -- contiguous space with a block offset array
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//                          that allows "fast" block_start calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//         - TenuredSpace -- (used for TenuredGeneration)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//         - ContigPermSpace -- an offset table contiguous space for perm gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Forward decls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class Space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class BlockOffsetArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class BlockOffsetArrayContigSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class CompactibleSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class BlockOffsetTable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class GenRemSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class CardTableRS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class DirtyCardToOopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// An oop closure that is circumscribed by a filtering memory region.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    56
class SpaceMemRegionOopsIterClosure: public OopClosure {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    57
 private:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    58
  OopClosure* _cl;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    59
  MemRegion   _mr;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    60
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    61
  template <class T> void do_oop_work(T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    62
    if (_mr.contains(p)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    63
      _cl->do_oop(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    66
 public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    67
  SpaceMemRegionOopsIterClosure(OopClosure* cl, MemRegion mr):
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    68
    _cl(cl), _mr(mr) {}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    69
  virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    70
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// A Space describes a heap area. Class Space is an abstract
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// base class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// Space supports allocation, size computation and GC support is provided.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// Invariant: bottom() and end() are on page_size boundaries and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// bottom() <= top() <= end()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// top() is inclusive and end() is exclusive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
class Space: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  HeapWord* _bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  HeapWord* _end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Used in support of save_marks()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  HeapWord* _saved_mark_word;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  MemRegionClosure* _preconsumptionDirtyCardClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // A sequential tasks done structure. This supports
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // parallel GC, where we have threads dynamically
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // claiming sub-tasks from a larger parallel task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  SequentialSubTasksDone _par_seq_tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  Space():
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _bottom(NULL), _end(NULL), _preconsumptionDirtyCardClosure(NULL) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  HeapWord* bottom() const         { return _bottom; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  HeapWord* end() const            { return _end;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  virtual void set_bottom(HeapWord* value) { _bottom = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  virtual void set_end(HeapWord* value)    { _end = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  HeapWord* saved_mark_word() const  { return _saved_mark_word; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void set_saved_mark_word(HeapWord* p) { _saved_mark_word = p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  MemRegionClosure* preconsumptionDirtyCardClosure() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    return _preconsumptionDirtyCardClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  void setPreconsumptionDirtyCardClosure(MemRegionClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    _preconsumptionDirtyCardClosure = cl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Returns a subregion of the space containing all the objects in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  virtual MemRegion used_region() const { return MemRegion(bottom(), end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Returns a region that is guaranteed to contain (at least) all objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // allocated at the time of the last call to "save_marks".  If the space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // initializes its DirtyCardToOopClosure's specifying the "contig" option
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // (that is, if the space is contiguous), then this region must contain only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // such objects: the memregion will be from the bottom of the region to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // saved mark.  Otherwise, the "obj_allocated_since_save_marks" method of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // the space must distiguish between objects in the region allocated before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // and after the call to save marks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  virtual MemRegion used_region_at_save_marks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    return MemRegion(bottom(), saved_mark_word());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   134
  // Initialization.  These may be run to reset an existing
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   135
  // Space.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   136
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   137
  virtual void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // For detecting GC bugs.  Should only be called at GC boundaries, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // some unused space may be used as scratch space during GC's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Default implementation does nothing. We also call this when expanding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // a space to satisfy an allocation request. See bug #4668531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  virtual void mangle_unused_area() {}
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   144
  virtual void mangle_unused_area_complete() {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  virtual void mangle_region(MemRegion mr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  bool is_empty() const              { return used() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  bool not_empty() const             { return used() > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Returns true iff the given the space contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // given address as part of an allocated object. For
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // ceratin kinds of spaces, this might be a potentially
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // expensive operation. To prevent performance problems
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // on account of its inadvertent use in product jvm's,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // we restrict its use to assertion checks only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  virtual bool is_in(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Returns true iff the given reserved memory of the space contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // given address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bool is_in_reserved(const void* p) const { return _bottom <= p && p < _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Returns true iff the given block is not allocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  virtual bool is_free_block(const HeapWord* p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Test whether p is double-aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  static bool is_aligned(void* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    return ((intptr_t)p & (sizeof(double)-1)) == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Size computations.  Sizes are in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  size_t capacity()     const { return byte_size(bottom(), end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  virtual size_t used() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  virtual size_t free() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Iterate over all the ref-containing fields of all objects in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // space, calling "cl.do_oop" on each.  Fields in objects allocated by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // applications of the closure are not included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  virtual void oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Same as above, restricted to the intersection of a memory region and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // the space.  Fields in objects allocated by applications of the closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // are not included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  virtual void oop_iterate(MemRegion mr, OopClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Iterate over all objects in the space, calling "cl.do_object" on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // each.  Objects allocated by applications of the closure are not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  virtual void object_iterate(ObjectClosure* blk) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // Iterate over all objects that intersect with mr, calling "cl->do_object"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // on each.  There is an exception to this: if this closure has already
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // been invoked on an object, it may skip such objects in some cases.  This is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Most likely to happen in an "upwards" (ascending address) iteration of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // MemRegions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  virtual void object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // Iterate over as many initialized objects in the space as possible,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // calling "cl.do_object_careful" on each. Return NULL if all objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // in the space (at the start of the iteration) were iterated over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Return an address indicating the extent of the iteration in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // event that the iteration had to return because of finding an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // uninitialized object in the space, or if the closure "cl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // signalled early termination.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  virtual HeapWord* object_iterate_careful(ObjectClosureCareful* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  virtual HeapWord* object_iterate_careful_m(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                                             ObjectClosureCareful* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Create and return a new dirty card to oop closure. Can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // overriden to return the appropriate type of closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // depending on the type of space in which the closure will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // operate. ResourceArea allocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  virtual DirtyCardToOopClosure* new_dcto_cl(OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
                                             CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
                                             HeapWord* boundary = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // If "p" is in the space, returns the address of the start of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // "block" that contains "p".  We say "block" instead of "object" since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // some heaps may not pack objects densely; a chunk may either be an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // object or a non-object.  If "p" is not in the space, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  virtual HeapWord* block_start(const void* p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Requires "addr" to be the start of a chunk, and returns its size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // "addr + size" is required to be the start of a new chunk, or the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // of the active area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  virtual size_t block_size(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // the block is an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  virtual bool block_is_obj(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // the block is an object and the object is alive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  virtual bool obj_is_alive(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Allocation (return NULL if full).  Assumes the caller has established
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // mutually exclusive access to the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  virtual HeapWord* allocate(size_t word_size) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Allocation (return NULL if full).  Enforces mutual exclusion internally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  virtual HeapWord* par_allocate(size_t word_size) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // Returns true if this object has been allocated since a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // generation's "save_marks" call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  virtual bool obj_allocated_since_save_marks(const oop obj) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Mark-sweep-compact support: all spaces can update pointers to objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // moving as a part of compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  virtual void adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // PrintHeapAtGC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  virtual void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  virtual void print_short() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  virtual void print_short_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // Accessor for parallel sequential tasks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  SequentialSubTasksDone* par_seq_tasks() { return &_par_seq_tasks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // IF "this" is a ContiguousSpace, return it, else return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  virtual ContiguousSpace* toContiguousSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  virtual void verify(bool allow_dirty) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// A MemRegionClosure (ResourceObj) whose "do_MemRegion" function applies an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// OopClosure to (the addresses of) all the ref-containing fields that could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// be modified by virtue of the given MemRegion being dirty. (Note that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
// because of the imprecise nature of the write barrier, this may iterate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// over oops beyond the region.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// This base type for dirty card to oop closures handles memory regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
// in non-contiguous spaces with no boundaries, and should be sub-classed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// to support other space types. See ContiguousDCTOC for a sub-class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
// that works with ContiguousSpaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
class DirtyCardToOopClosure: public MemRegionClosureRO {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  OopClosure* _cl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  Space* _sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  CardTableModRefBS::PrecisionStyle _precision;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  HeapWord* _boundary;          // If non-NULL, process only non-NULL oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                                // pointing below boundary.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   287
  HeapWord* _min_done;                // ObjHeadPreciseArray precision requires
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
                                // a downwards traversal; this is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
                                // lowest location already done (or,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
                                // alternatively, the lowest address that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                                // shouldn't be done again.  NULL means infinity.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  NOT_PRODUCT(HeapWord* _last_bottom;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Get the actual top of the area on which the closure will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // operate, given where the top is assumed to be (the end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // memory region passed to do_MemRegion) and where the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  // at the top is assumed to start. For example, an object may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // start at the top but actually extend past the assumed top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // in which case the top becomes the end of the object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  virtual HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // Walk the given memory region from bottom to (actual) top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // looking for objects and applying the oop closure (_cl) to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // them. The base implementation of this treats the area as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // blocks, where a block may or may not be an object. Sub-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // classes should override this to provide more accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // or possibly more efficient walking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  virtual void walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  DirtyCardToOopClosure(Space* sp, OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
                        CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
                        HeapWord* boundary) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    _sp(sp), _cl(cl), _precision(precision), _boundary(boundary),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    _min_done(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    NOT_PRODUCT(_last_bottom = NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  void do_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  void set_min_done(HeapWord* min_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    _min_done = min_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  void set_last_bottom(HeapWord* last_bottom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    _last_bottom = last_bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// A structure to represent a point at which objects are being copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// during compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
class CompactPoint : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  Generation* gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  CompactibleSpace* space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  HeapWord* threshold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  CompactPoint(Generation* _gen, CompactibleSpace* _space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
               HeapWord* _threshold) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    gen(_gen), space(_space), threshold(_threshold) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
// A space that supports compaction operations.  This is usually, but not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
// necessarily, a space that is normally contiguous.  But, for example, a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
// free-list-based space whose normal collection is a mark-sweep without
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
// compaction could still support compaction in full GC's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
class CompactibleSpace: public Space {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  friend class CompactibleFreeListSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  friend class CompactingPermGenGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  friend class CMSPermGenGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  HeapWord* _compaction_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  CompactibleSpace* _next_compaction_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
public:
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   359
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // Used temporarily during a compaction phase to hold the value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // top should have when compaction is complete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  HeapWord* compaction_top() const { return _compaction_top;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  void set_compaction_top(HeapWord* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    assert(value == NULL || (value >= bottom() && value <= end()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      "should point inside space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    _compaction_top = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Perform operations on the space needed after a compaction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // has been performed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  virtual void reset_after_compaction() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // Returns the next space (in the current generation) to be compacted in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // the global compaction order.  Also is used to select the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // space into which to compact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  virtual CompactibleSpace* next_compaction_space() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    return _next_compaction_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  void set_next_compaction_space(CompactibleSpace* csp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    _next_compaction_space = csp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // MarkSweep support phase2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // Start the process of compaction of the current space: compute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // post-compaction addresses, and insert forwarding pointers.  The fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // "cp->gen" and "cp->compaction_space" are the generation and space into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // which we are currently compacting.  This call updates "cp" as necessary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // and leaves the "compaction_top" of the final value of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // "cp->compaction_space" up-to-date.  Offset tables may be updated in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // this phase as if the final copy had occurred; if so, "cp->threshold"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // indicates when the next such action should be taken.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  virtual void prepare_for_compaction(CompactPoint* cp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // MarkSweep support phase3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  virtual void adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // MarkSweep support phase4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  virtual void compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // The maximum percentage of objects that can be dead in the compacted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // live part of a compacted space ("deadwood" support.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  virtual int allowed_dead_ratio() const { return 0; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // Some contiguous spaces may maintain some data structures that should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // be updated whenever an allocation crosses a boundary.  This function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // returns the first such boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // (The default implementation returns the end of the space, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // boundary is never crossed.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  virtual HeapWord* initialize_threshold() { return end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // "q" is an object of the given "size" that should be forwarded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // "cp" names the generation ("gen") and containing "this" (which must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // also equal "cp->space").  "compact_top" is where in "this" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // next object should be forwarded to.  If there is room in "this" for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  // the object, insert an appropriate forwarding pointer in "q".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  // If not, go to the next compaction space (there must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // be one, since compaction must succeed -- we go to the first space of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // the previous generation if necessary, updating "cp"), reset compact_top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // and then forward.  In either case, returns the new value of "compact_top".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // If the forwarding crosses "cp->threshold", invokes the "cross_threhold"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // function of the then-current compaction space, and updates "cp->threshold
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // accordingly".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  virtual HeapWord* forward(oop q, size_t size, CompactPoint* cp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
                    HeapWord* compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // Return a size with adjusments as required of the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  virtual size_t adjust_object_size_v(size_t size) const { return size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // Used during compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  HeapWord* _first_dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  HeapWord* _end_of_live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // Minimum size of a free block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  virtual size_t minimum_free_block_size() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // This the function is invoked when an allocation of an object covering
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  // "start" to "end occurs crosses the threshold; returns the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // threshold.  (The default implementation does nothing.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* the_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    return end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // Requires "allowed_deadspace_words > 0", that "q" is the start of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // free block of the given "word_len", and that "q", were it an object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // would not move if forwared.  If the size allows, fill the free
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // block with an object, to prevent excessive compaction.  Returns "true"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // iff the free region was made deadspace, and modifies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // "allowed_deadspace_words" to reflect the number of available deadspace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // words remaining after this operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  bool insert_deadspace(size_t& allowed_deadspace_words, HeapWord* q,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
                        size_t word_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
#define SCAN_AND_FORWARD(cp,scan_limit,block_is_obj,block_size) {            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  /* Compute the new addresses for the live objects and store it in the mark \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
   * Used by universe::mark_sweep_phase2()                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
   */                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  HeapWord* compact_top; /* This is where we are currently compacting to. */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  /* We're sure to be here before any objects are compacted into this        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
   * space, so this is a good time to initialize this:                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
   */                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  set_compaction_top(bottom());                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  if (cp->space == NULL) {                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    assert(cp->gen != NULL, "need a generation");                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    assert(cp->threshold == NULL, "just checking");                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    assert(cp->gen->first_compaction_space() == this, "just checking");      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    cp->space = cp->gen->first_compaction_space();                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    compact_top = cp->space->bottom();                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    cp->space->set_compaction_top(compact_top);                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    cp->threshold = cp->space->initialize_threshold();                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  } else {                                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    compact_top = cp->space->compaction_top();                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  }                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  /* We allow some amount of garbage towards the bottom of the space, so     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
   * we don't start compacting before there is a significant gain to be made.\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
   * Occasionally, we want to ensure a full compaction, which is determined  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
   * by the MarkSweepAlwaysCompactCount parameter.                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
   */                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  int invocations = SharedHeap::heap()->perm_gen()->stat_record()->invocations;\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  bool skip_dead = ((invocations % MarkSweepAlwaysCompactCount) != 0);       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  size_t allowed_deadspace = 0;                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  if (skip_dead) {                                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    int ratio = allowed_dead_ratio();                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    allowed_deadspace = (capacity() * ratio / 100) / HeapWordSize;           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  }                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  HeapWord* q = bottom();                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  HeapWord* t = scan_limit();                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  HeapWord*  end_of_live= q;    /* One byte beyond the last byte of the last \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
                                   live object. */                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  HeapWord*  first_dead = end();/* The first dead object. */                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  LiveRange* liveRange  = NULL; /* The current live range, recorded in the   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
                                   first header of preceding free area. */   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  _first_dead = first_dead;                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  const intx interval = PrefetchScanIntervalInBytes;                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  while (q < t) {                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    assert(!block_is_obj(q) ||                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
           oop(q)->mark()->is_marked() || oop(q)->mark()->is_unlocked() ||   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
           oop(q)->mark()->has_bias_pattern(),                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
           "these are the only valid states during a mark sweep");           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    if (block_is_obj(q) && oop(q)->is_gc_marked()) {                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
      /* prefetch beyond q */                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
      Prefetch::write(q, interval);                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      /* size_t size = oop(q)->size();  changing this for cms for perm gen */\
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   516
      size_t size = block_size(q);                                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
      compact_top = cp->space->forward(oop(q), size, cp, compact_top);       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
      q += size;                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      end_of_live = q;                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    } else {                                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
      /* run over all the contiguous dead objects */                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      HeapWord* end = q;                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
      do {                                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
        /* prefetch beyond end */                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
        Prefetch::write(end, interval);                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
        end += block_size(end);                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      } while (end < t && (!block_is_obj(end) || !oop(end)->is_gc_marked()));\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
      /* see if we might want to pretend this object is alive so that        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
       * we don't have to compact quite as often.                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
       */                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      if (allowed_deadspace > 0 && q == compact_top) {                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
        size_t sz = pointer_delta(end, q);                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
        if (insert_deadspace(allowed_deadspace, q, sz)) {                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
          compact_top = cp->space->forward(oop(q), sz, cp, compact_top);     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
          q = end;                                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
          end_of_live = end;                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
          continue;                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
        }                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      }                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      /* otherwise, it really is a free region. */                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      /* for the previous LiveRange, record the end of the live objects. */  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      if (liveRange) {                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
        liveRange->set_end(q);                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
      }                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      /* record the current LiveRange object.                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
       * liveRange->start() is overlaid on the mark word.                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
       */                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      liveRange = (LiveRange*)q;                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      liveRange->set_start(end);                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      liveRange->set_end(end);                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      /* see if this is the first dead region. */                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
      if (q < first_dead) {                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
        first_dead = q;                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
      }                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
      /* move on to the next object */                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      q = end;                                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    }                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  }                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  assert(q == t, "just checking");                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  if (liveRange != NULL) {                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    liveRange->set_end(q);                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  }                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  _end_of_live = end_of_live;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  if (end_of_live < first_dead) {                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    first_dead = end_of_live;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  _first_dead = first_dead;                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  /* save the compaction_top of the compaction space. */                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  cp->space->set_compaction_top(compact_top);                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   580
#define SCAN_AND_ADJUST_POINTERS(adjust_obj_size) {                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   581
  /* adjust all the interior pointers to point at the new locations of objects        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   582
   * Used by MarkSweep::mark_sweep_phase3() */                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   584
  HeapWord* q = bottom();                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   585
  HeapWord* t = _end_of_live;  /* Established by "prepare_for_compaction". */        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   587
  assert(_first_dead <= _end_of_live, "Stands to reason, no?");                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   589
  if (q < t && _first_dead > q &&                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
      !oop(q)->is_gc_marked()) {                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    /* we have a chunk of the space which hasn't moved and we've                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
     * reinitialized the mark word during the previous pass, so we can't        \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   593
     * use is_gc_marked for the traversal. */                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    HeapWord* end = _first_dead;                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   596
    while (q < end) {                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   597
      /* I originally tried to conjoin "block_start(q) == q" to the                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   598
       * assertion below, but that doesn't work, because you can't                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   599
       * accurately traverse previous objects to get to the current one                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   600
       * after their pointers (including pointers into permGen) have been        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   601
       * updated, until the actual compaction is done.  dld, 4/00 */                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   602
      assert(block_is_obj(q),                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   603
             "should be at block boundaries, and should be looking at objs");        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   605
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::track_interior_pointers(oop(q)));     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   607
      /* point all the oops to the new location */                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   608
      size_t size = oop(q)->adjust_pointers();                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   609
      size = adjust_obj_size(size);                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   611
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::check_interior_pointers());           \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   612
                                                                                      \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   613
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::validate_live_oop(oop(q), size));     \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   614
                                                                                      \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
      q += size;                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   616
    }                                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   618
    if (_first_dead == t) {                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   619
      q = t;                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   620
    } else {                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   621
      /* $$$ This is funky.  Using this to read the previously written                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   622
       * LiveRange.  See also use below. */                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
      q = (HeapWord*)oop(_first_dead)->mark()->decode_pointer();                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   624
    }                                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   625
  }                                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
                                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  const intx interval = PrefetchScanIntervalInBytes;                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   629
  debug_only(HeapWord* prev_q = NULL);                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   630
  while (q < t) {                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   631
    /* prefetch beyond q */                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    Prefetch::write(q, interval);                                               \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   633
    if (oop(q)->is_gc_marked()) {                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   634
      /* q is alive */                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   635
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::track_interior_pointers(oop(q)));     \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   636
      /* point all the oops to the new location */                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   637
      size_t size = oop(q)->adjust_pointers();                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   638
      size = adjust_obj_size(size);                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   639
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::check_interior_pointers());                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   640
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::validate_live_oop(oop(q), size));     \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   641
      debug_only(prev_q = q);                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      q += size;                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   643
    } else {                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   644
      /* q is not a live object, so its mark should point at the next                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   645
       * live object */                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   646
      debug_only(prev_q = q);                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   647
      q = (HeapWord*) oop(q)->mark()->decode_pointer();                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   648
      assert(q > prev_q, "we should be moving forward through memory");                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   649
    }                                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   650
  }                                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   652
  assert(q == t, "just checking");                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   655
#define SCAN_AND_COMPACT(obj_size) {                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  /* Copy all live objects to their new location                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   657
   * Used by MarkSweep::mark_sweep_phase4() */                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   659
  HeapWord*       q = bottom();                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   660
  HeapWord* const t = _end_of_live;                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   661
  debug_only(HeapWord* prev_q = NULL);                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   663
  if (q < t && _first_dead > q &&                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
      !oop(q)->is_gc_marked()) {                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   665
    debug_only(                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   666
    /* we have a chunk of the space which hasn't moved and we've reinitialized  \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   667
     * the mark word during the previous pass, so we can't use is_gc_marked for \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   668
     * the traversal. */                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   669
    HeapWord* const end = _first_dead;                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   670
                                                                                      \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   671
    while (q < end) {                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
      size_t size = obj_size(q);                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   673
      assert(!oop(q)->is_gc_marked(),                                           \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   674
             "should be unmarked (special dense prefix handling)");             \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   675
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::live_oop_moved_to(q, size, q));        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   676
      debug_only(prev_q = q);                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      q += size;                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   678
    }                                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   679
    )  /* debug_only */                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   680
                                                                                      \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   681
    if (_first_dead == t) {                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   682
      q = t;                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   683
    } else {                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   684
      /* $$$ Funky */                                                                 \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   685
      q = (HeapWord*) oop(_first_dead)->mark()->decode_pointer();                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   686
    }                                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   687
  }                                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   689
  const intx scan_interval = PrefetchScanIntervalInBytes;                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   690
  const intx copy_interval = PrefetchCopyIntervalInBytes;                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   691
  while (q < t) {                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   692
    if (!oop(q)->is_gc_marked()) {                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   693
      /* mark is pointer to next marked oop */                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   694
      debug_only(prev_q = q);                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   695
      q = (HeapWord*) oop(q)->mark()->decode_pointer();                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   696
      assert(q > prev_q, "we should be moving forward through memory");                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   697
    } else {                                                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   698
      /* prefetch beyond q */                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      Prefetch::read(q, scan_interval);                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
                                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      /* size and destination */                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
      size_t size = obj_size(q);                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      HeapWord* compaction_top = (HeapWord*)oop(q)->forwardee();                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   705
      /* prefetch beyond compaction_top */                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      Prefetch::write(compaction_top, copy_interval);                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   708
      /* copy object and reinit its mark */                                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   709
      VALIDATE_MARK_SWEEP_ONLY(MarkSweep::live_oop_moved_to(q, size,            \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   710
                                                            compaction_top));   \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   711
      assert(q != compaction_top, "everything in this pass should be moving");        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   712
      Copy::aligned_conjoint_words(q, compaction_top, size);                        \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   713
      oop(compaction_top)->init_mark();                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   714
      assert(oop(compaction_top)->klass() != NULL, "should have a class");        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
                                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   716
      debug_only(prev_q = q);                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      q += size;                                                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   718
    }                                                                                \
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   719
  }                                                                                \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
                                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  /* Reset space after compaction is complete */                                \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   722
  reset_after_compaction();                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  /* We do this clear, below, since it has overloaded meanings for some */      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  /* space subtypes.  For example, OffsetTableContigSpace's that were   */      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  /* compacted into will have had their offset table thresholds updated */      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  /* continuously, but those that weren't need to have their thresholds */      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  /* re-initialized.  Also mangles unused area for debugging.           */      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  if (is_empty()) {                                                             \
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   729
    clear(SpaceDecorator::Mangle);                                              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  } else {                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    if (ZapUnusedHeapArea) mangle_unused_area();                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  }                                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   735
class GenSpaceMangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   736
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
// A space in which the free area is contiguous.  It therefore supports
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
// faster allocation, and compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
class ContiguousSpace: public CompactibleSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  friend class OneContigSpaceCardGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  HeapWord* _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  HeapWord* _concurrent_iteration_safe_limit;
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   745
  // A helper for mangling the unused area of the space in debug builds.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   746
  GenSpaceMangler* _mangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   747
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   748
  GenSpaceMangler* mangler() { return _mangler; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  // Allocation helpers (return NULL if full).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  inline HeapWord* allocate_impl(size_t word_size, HeapWord* end_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  inline HeapWord* par_allocate_impl(size_t word_size, HeapWord* end_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
 public:
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   755
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   756
  ContiguousSpace();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   757
  ~ContiguousSpace();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   758
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   759
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  HeapWord* top() const            { return _top;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  void set_top(HeapWord* value)    { _top = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  void set_saved_mark()       { _saved_mark_word = top();    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  void reset_saved_mark()     { _saved_mark_word = bottom(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   768
  virtual void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  WaterMark bottom_mark()     { return WaterMark(this, bottom()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  WaterMark top_mark()        { return WaterMark(this, top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  WaterMark saved_mark()      { return WaterMark(this, saved_mark_word()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  bool saved_mark_at_top() const { return saved_mark_word() == top(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   775
  // In debug mode mangle (write it with a particular bit
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   776
  // pattern) the unused part of a space.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   777
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   778
  // Used to save the an address in a space for later use during mangling.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   779
  void set_top_for_allocations(HeapWord* v) PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   780
  // Used to save the space's current top for later use during mangling.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   781
  void set_top_for_allocations() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   782
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   783
  // Mangle regions in the space from the current top up to the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   784
  // previously mangled part of the space.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   785
  void mangle_unused_area() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   786
  // Mangle [top, end)
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   787
  void mangle_unused_area_complete() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   788
  // Mangle the given MemRegion.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   789
  void mangle_region(MemRegion mr) PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   790
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   791
  // Do some sparse checking on the area that should have been mangled.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   792
  void check_mangled_unused_area(HeapWord* limit) PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   793
  // Check the complete area that should have been mangled.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   794
  // This code may be NULL depending on the macro DEBUG_MANGLING.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   795
  void check_mangled_unused_area_complete() PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  // Size computations: sizes in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  size_t capacity() const        { return byte_size(bottom(), end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  size_t used() const            { return byte_size(bottom(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  size_t free() const            { return byte_size(top(),    end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  // Override from space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  bool is_in(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  virtual bool is_free_block(const HeapWord* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  // In a contiguous space we have a more obvious bound on what parts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  // contain objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  MemRegion used_region() const { return MemRegion(bottom(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  MemRegion used_region_at_save_marks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    return MemRegion(bottom(), saved_mark_word());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // Allocation (return NULL if full)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  virtual HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  virtual HeapWord* par_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  virtual bool obj_allocated_since_save_marks(const oop obj) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    return (HeapWord*)obj >= saved_mark_word();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  void oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  void oop_iterate(MemRegion mr, OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  void object_iterate(ObjectClosure* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  void object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  // iterates on objects up to the safe limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  HeapWord* object_iterate_careful(ObjectClosureCareful* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  inline HeapWord* concurrent_iteration_safe_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  // changes the safe limit, all objects from bottom() to the new
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  // limit should be properly initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  inline void set_concurrent_iteration_safe_limit(HeapWord* new_limit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  // In support of parallel oop_iterate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  #define ContigSpace_PAR_OOP_ITERATE_DECL(OopClosureType, nv_suffix)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    void par_oop_iterate(MemRegion mr, OopClosureType* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DECL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  #undef ContigSpace_PAR_OOP_ITERATE_DECL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  // Compaction support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  virtual void reset_after_compaction() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    assert(compaction_top() >= bottom() && compaction_top() <= end(), "should point inside space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    set_top(compaction_top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    // set new iteration safe limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
    set_concurrent_iteration_safe_limit(compaction_top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  virtual size_t minimum_free_block_size() const { return 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  DirtyCardToOopClosure* new_dcto_cl(OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
                                     CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
                                     HeapWord* boundary = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  // Apply "blk->do_oop" to the addresses of all reference fields in objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  // starting with the _saved_mark_word, which was noted during a generation's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  // save_marks and is required to denote the head of an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  // Fields in objects allocated by applications of the closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  // *are* included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  // Updates _saved_mark_word to point to just after the last object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  // iterated over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
#define ContigSpace_OOP_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  void oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DECL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
#undef ContigSpace_OOP_SINCE_SAVE_MARKS_DECL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  // Same as object_iterate, but starting from "mark", which is required
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // to denote the start of an object.  Objects allocated by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  // applications of the closure *are* included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  virtual void object_iterate_from(WaterMark mark, ObjectClosure* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  // Very inefficient implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  virtual HeapWord* block_start(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  size_t block_size(const HeapWord* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  // If a block is in the allocated area, it is an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  bool block_is_obj(const HeapWord* p) const { return p < top(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  // Addresses for inlined allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  HeapWord** top_addr() { return &_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  HeapWord** end_addr() { return &_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  // Overrides for more efficient compaction support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  void prepare_for_compaction(CompactPoint* cp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  // PrintHeapAtGC support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  // Checked dynamic downcasts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  virtual ContiguousSpace* toContiguousSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    return this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  virtual void verify(bool allow_dirty) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  // Used to increase collection frequency.  "factor" of 0 means entire
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  // space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  void allocate_temporary_filler(int factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
// A dirty card to oop closure that does filtering.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
// It knows how to filter out objects that are outside of the _boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
class Filtering_DCTOC : public DirtyCardToOopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  void walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
                       HeapWord* bottom, HeapWord* top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  // Walk the given memory region, from bottom to top, applying
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  // the given oop closure to (possibly) all objects found. The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  // given oop closure may or may not be the same as the oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  // closure with which this closure was created, as it may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  // be a filtering closure which makes use of the _boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  // We offer two signatures, so the FilteringClosure static type is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  // apparent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
                                       HeapWord* bottom, HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
                                       OopClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
                                       HeapWord* bottom, HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
                                       FilteringClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  Filtering_DCTOC(Space* sp, OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
                  CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
                  HeapWord* boundary) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    DirtyCardToOopClosure(sp, cl, precision, boundary) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
// A dirty card to oop closure for contiguous spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
// (ContiguousSpace and sub-classes).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
// It is a FilteringClosure, as defined above, and it knows:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
// 1. That the actual top of any area in a memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
//    contained by the space is bounded by the end of the contiguous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
//    region of the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
// 2. That the space is really made up of objects and not just
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
//    blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
class ContiguousSpaceDCTOC : public Filtering_DCTOC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  // Overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
                                       HeapWord* bottom, HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
                                       OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
                                       HeapWord* bottom, HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
                                       FilteringClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  ContiguousSpaceDCTOC(ContiguousSpace* sp, OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
                       CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
                       HeapWord* boundary) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    Filtering_DCTOC(sp, cl, precision, boundary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
// Class EdenSpace describes eden-space in new generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
class DefNewGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
class EdenSpace : public ContiguousSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  DefNewGeneration* _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  // _soft_end is used as a soft limit on allocation.  As soft limits are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  // reached, the slow-path allocation code can invoke other actions and then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  // adjust _soft_end up to a new soft limit or to end().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  HeapWord* _soft_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  EdenSpace(DefNewGeneration* gen) : _gen(gen) { _soft_end = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  // Get/set just the 'soft' limit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  HeapWord* soft_end()               { return _soft_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  HeapWord** soft_end_addr()         { return &_soft_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  void set_soft_end(HeapWord* value) { _soft_end = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  // Override.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   990
  void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  // Set both the 'hard' and 'soft' limits (_end and _soft_end).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  void set_end(HeapWord* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    set_soft_end(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    ContiguousSpace::set_end(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  // Allocation (return NULL if full)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  HeapWord* par_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
// Class ConcEdenSpace extends EdenSpace for the sake of safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
// allocation while soft-end is being modified concurrently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
class ConcEdenSpace : public EdenSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  ConcEdenSpace(DefNewGeneration* gen) : EdenSpace(gen) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  // Allocation (return NULL if full)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  HeapWord* par_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
// A ContigSpace that Supports an efficient "block_start" operation via
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
// a BlockOffsetArray (whose BlockOffsetSharedArray may be shared with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
// other spaces.)  This is the abstract base class for old generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
// (tenured, perm) spaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
class OffsetTableContigSpace: public ContiguousSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  BlockOffsetArrayContigSpace _offsets;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  Mutex _par_alloc_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
                         MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  void set_bottom(HeapWord* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  void set_end(HeapWord* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
  1034
  void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  inline HeapWord* block_start(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  // Add offset table update.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  virtual inline HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  inline HeapWord* par_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  // MarkSweep support phase3
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  virtual HeapWord* initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  void verify(bool allow_dirty) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  // Shared space support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  void serialize_block_offset_array_offsets(SerializeOopClosure* soc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// Class TenuredSpace is used by TenuredGeneration
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
class TenuredSpace: public OffsetTableContigSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  // Mark sweep support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  int allowed_dead_ratio() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  TenuredSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
               MemRegion mr) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    OffsetTableContigSpace(sharedOffsetArray, mr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
// Class ContigPermSpace is used by CompactingPermGen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
class ContigPermSpace: public OffsetTableContigSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  // Mark sweep support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  int allowed_dead_ratio() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  ContigPermSpace(BlockOffsetSharedArray* sharedOffsetArray, MemRegion mr) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    OffsetTableContigSpace(sharedOffsetArray, mr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
};