hotspot/src/share/vm/memory/space.hpp
author brutisso
Fri, 31 Oct 2014 09:10:51 +0100
changeset 27625 07829380b8cd
parent 27624 fe43edc5046d
child 27888 a52ea0e7671e
permissions -rw-r--r--
8061308: Remove iCMS Reviewed-by: mgerdin, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 17392
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_MEMORY_SPACE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_MEMORY_SPACE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/blockOffsetTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/cardTableModRefBS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/iterator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "memory/memRegion.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "memory/watermark.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/mutexLocker.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
    36
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "utilities/workgroup.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// A space is an abstraction for the "storage units" backing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// up the generation abstraction. It includes specific
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// implementations for keeping track of free and used space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// for iterating over objects and free blocks, etc.
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
// A Space describes a heap area. Class Space is an abstract
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// base class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// Space supports allocation, size computation and GC support is provided.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// Invariant: bottom() and end() are on page_size boundaries and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// bottom() <= top() <= end()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// top() is inclusive and end() is exclusive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12597
diff changeset
    64
class Space: public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  HeapWord* _bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  HeapWord* _end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Used in support of save_marks()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  HeapWord* _saved_mark_word;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  MemRegionClosure* _preconsumptionDirtyCardClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // A sequential tasks done structure. This supports
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // parallel GC, where we have threads dynamically
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // claiming sub-tasks from a larger parallel task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  SequentialSubTasksDone _par_seq_tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  Space():
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    _bottom(NULL), _end(NULL), _preconsumptionDirtyCardClosure(NULL) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  HeapWord* bottom() const         { return _bottom; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  HeapWord* end() const            { return _end;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  virtual void set_bottom(HeapWord* value) { _bottom = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  virtual void set_end(HeapWord* value)    { _end = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    90
  virtual HeapWord* saved_mark_word() const  { return _saved_mark_word; }
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
    91
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  void set_saved_mark_word(HeapWord* p) { _saved_mark_word = p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
    94
  // Returns true if this object has been allocated since a
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
    95
  // generation's "save_marks" call.
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
    96
  virtual bool obj_allocated_since_save_marks(const oop obj) const {
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
    97
    return (HeapWord*)obj >= saved_mark_word();
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
    98
  }
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
    99
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  MemRegionClosure* preconsumptionDirtyCardClosure() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    return _preconsumptionDirtyCardClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void setPreconsumptionDirtyCardClosure(MemRegionClosure* cl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    _preconsumptionDirtyCardClosure = cl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   107
  // Returns a subregion of the space containing only the allocated objects in
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // the space.
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   109
  virtual MemRegion used_region() const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Returns a region that is guaranteed to contain (at least) all objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // allocated at the time of the last call to "save_marks".  If the space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // initializes its DirtyCardToOopClosure's specifying the "contig" option
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // (that is, if the space is contiguous), then this region must contain only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // such objects: the memregion will be from the bottom of the region to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // saved mark.  Otherwise, the "obj_allocated_since_save_marks" method of
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   117
  // the space must distinguish between objects in the region allocated before
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // and after the call to save marks.
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   119
  MemRegion used_region_at_save_marks() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    return MemRegion(bottom(), saved_mark_word());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   123
  // Initialization.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   124
  // "initialize" should be called once on a space, before it is used for
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   125
  // any purpose.  The "mr" arguments gives the bounds of the space, and
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   126
  // the "clear_space" argument should be true unless the memory in "mr" is
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   127
  // known to be zeroed.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   128
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   129
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   130
  // The "clear" method must be called on a region that may have
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   131
  // had allocation performed in it, but is now to be considered empty.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   132
  virtual void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // For detecting GC bugs.  Should only be called at GC boundaries, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // some unused space may be used as scratch space during GC's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Default implementation does nothing. We also call this when expanding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // a space to satisfy an allocation request. See bug #4668531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  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
   139
  virtual void mangle_unused_area_complete() {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  virtual void mangle_region(MemRegion mr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  bool is_empty() const              { return used() == 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  bool not_empty() const             { return used() > 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Returns true iff the given the space contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // given address as part of an allocated object. For
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   148
  // certain kinds of spaces, this might be a potentially
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // expensive operation. To prevent performance problems
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // on account of its inadvertent use in product jvm's,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // we restrict its use to assertion checks only.
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   152
  bool is_in(const void* p) const {
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   153
    return used_region().contains(p);
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   154
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Returns true iff the given reserved memory of the space contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // given address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  bool is_in_reserved(const void* p) const { return _bottom <= p && p < _end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // Returns true iff the given block is not allocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  virtual bool is_free_block(const HeapWord* p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Test whether p is double-aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static bool is_aligned(void* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    return ((intptr_t)p & (sizeof(double)-1)) == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Size computations.  Sizes are in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  size_t capacity()     const { return byte_size(bottom(), end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  virtual size_t used() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  virtual size_t free() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Iterate over all the ref-containing fields of all objects in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // space, calling "cl.do_oop" on each.  Fields in objects allocated by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // applications of the closure are not included in the iteration.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   176
  virtual void oop_iterate(ExtendedOopClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Iterate over all objects in the space, calling "cl.do_object" on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // each.  Objects allocated by applications of the closure are not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual void object_iterate(ObjectClosure* blk) = 0;
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1557
diff changeset
   182
  // Similar to object_iterate() except only iterates over
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1557
diff changeset
   183
  // objects whose internal references point to objects in the space.
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1557
diff changeset
   184
  virtual void safe_object_iterate(ObjectClosure* blk) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Create and return a new dirty card to oop closure. Can be
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   187
  // overridden to return the appropriate type of closure
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // depending on the type of space in which the closure will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // operate. ResourceArea allocated.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   190
  virtual DirtyCardToOopClosure* new_dcto_cl(ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                                             CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                                             HeapWord* boundary = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // If "p" is in the space, returns the address of the start of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // "block" that contains "p".  We say "block" instead of "object" since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // some heaps may not pack objects densely; a chunk may either be an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // object or a non-object.  If "p" is not in the space, return NULL.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   198
  virtual HeapWord* block_start_const(const void* p) const = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   199
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   200
  // The non-const version may have benevolent side effects on the data
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   201
  // structure supporting these calls, possibly speeding up future calls.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   202
  // The default implementation, however, is simply to call the const
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   203
  // version.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   204
  inline virtual HeapWord* block_start(const void* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // Requires "addr" to be the start of a chunk, and returns its size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // "addr + size" is required to be the start of a new chunk, or the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // of the active area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  virtual size_t block_size(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // the block is an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  virtual bool block_is_obj(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // the block is an object and the object is alive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  virtual bool obj_is_alive(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Allocation (return NULL if full).  Assumes the caller has established
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // mutually exclusive access to the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  virtual HeapWord* allocate(size_t word_size) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Allocation (return NULL if full).  Enforces mutual exclusion internally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  virtual HeapWord* par_allocate(size_t word_size) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // Mark-sweep-compact support: all spaces can update pointers to objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // moving as a part of compaction.
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   228
  virtual void adjust_pointers() = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // PrintHeapAtGC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  virtual void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  virtual void print_short() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  virtual void print_short_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // Accessor for parallel sequential tasks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  SequentialSubTasksDone* par_seq_tasks() { return &_par_seq_tasks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // IF "this" is a ContiguousSpace, return it, else return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  virtual ContiguousSpace* toContiguousSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // Debugging
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   246
  virtual void verify() const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
// A MemRegionClosure (ResourceObj) whose "do_MemRegion" function applies an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
// OopClosure to (the addresses of) all the ref-containing fields that could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// be modified by virtue of the given MemRegion being dirty. (Note that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// because of the imprecise nature of the write barrier, this may iterate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
// over oops beyond the region.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// This base type for dirty card to oop closures handles memory regions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// in non-contiguous spaces with no boundaries, and should be sub-classed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// to support other space types. See ContiguousDCTOC for a sub-class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// that works with ContiguousSpaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
class DirtyCardToOopClosure: public MemRegionClosureRO {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
protected:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   261
  ExtendedOopClosure* _cl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  Space* _sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  CardTableModRefBS::PrecisionStyle _precision;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  HeapWord* _boundary;          // If non-NULL, process only non-NULL oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
                                // pointing below boundary.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   266
  HeapWord* _min_done;          // ObjHeadPreciseArray precision requires
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                                // a downwards traversal; this is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                // lowest location already done (or,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
                                // alternatively, the lowest address that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
                                // shouldn't be done again.  NULL means infinity.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  NOT_PRODUCT(HeapWord* _last_bottom;)
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   272
  NOT_PRODUCT(HeapWord* _last_explicit_min_done;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // Get the actual top of the area on which the closure will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // operate, given where the top is assumed to be (the end of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // memory region passed to do_MemRegion) and where the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // at the top is assumed to start. For example, an object may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // start at the top but actually extend past the assumed top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // in which case the top becomes the end of the object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  virtual HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  // Walk the given memory region from bottom to (actual) top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // looking for objects and applying the oop closure (_cl) to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // them. The base implementation of this treats the area as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // blocks, where a block may or may not be an object. Sub-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // classes should override this to provide more accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // or possibly more efficient walking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  virtual void walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   291
  DirtyCardToOopClosure(Space* sp, ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
                        CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                        HeapWord* boundary) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    _sp(sp), _cl(cl), _precision(precision), _boundary(boundary),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    _min_done(NULL) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   296
    NOT_PRODUCT(_last_bottom = NULL);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   297
    NOT_PRODUCT(_last_explicit_min_done = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void do_MemRegion(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  void set_min_done(HeapWord* min_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    _min_done = min_done;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   304
    NOT_PRODUCT(_last_explicit_min_done = _min_done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  void set_last_bottom(HeapWord* last_bottom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    _last_bottom = last_bottom;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// A structure to represent a point at which objects are being copied
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// during compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
class CompactPoint : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  Generation* gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  CompactibleSpace* space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  HeapWord* threshold;
25730
7eb4e685f739 8048112: G1 Full GC needs to support the case when the very first region is not available
tschatzl
parents: 24487
diff changeset
   320
26839
021bfc544c6f 8057658: Enable G1 FullGC extensions
sjohanss
parents: 25905
diff changeset
   321
  CompactPoint(Generation* g = NULL) :
021bfc544c6f 8057658: Enable G1 FullGC extensions
sjohanss
parents: 25905
diff changeset
   322
    gen(g), space(NULL), threshold(0) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// A space that supports compaction operations.  This is usually, but not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// necessarily, a space that is normally contiguous.  But, for example, a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// free-list-based space whose normal collection is a mark-sweep without
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// compaction could still support compaction in full GC's.
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   329
//
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   330
// The compaction operations are implemented by the
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   331
// scan_and_{adjust_pointers,compact,forward} function templates.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   332
// The following are, non-virtual, auxiliary functions used by these function templates:
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   333
// - scan_limit()
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   334
// - scanned_block_is_obj()
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   335
// - scanned_block_size()
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   336
// - adjust_obj_size()
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   337
// - obj_size()
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   338
// These functions are to be used exclusively by the scan_and_* function templates,
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   339
// and must be defined for all (non-abstract) subclasses of CompactibleSpace.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   340
//
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   341
// NOTE: Any subclasses to CompactibleSpace wanting to change/define the behavior
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   342
// in any of the auxiliary functions must also override the corresponding
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   343
// prepare_for_compaction/adjust_pointers/compact functions using them.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   344
// If not, such changes will not be used or have no effect on the compaction operations.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   345
//
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   346
// This translates to the following dependencies:
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   347
// Overrides/definitions of
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   348
//  - scan_limit
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   349
//  - scanned_block_is_obj
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   350
//  - scanned_block_size
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   351
// require override/definition of prepare_for_compaction().
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   352
// Similar dependencies exist between
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   353
//  - adjust_obj_size  and adjust_pointers()
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   354
//  - obj_size         and compact().
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   355
//
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   356
// Additionally, this also means that changes to block_size() or block_is_obj() that
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   357
// should be effective during the compaction operations must provide a corresponding
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   358
// definition of scanned_block_size/scanned_block_is_obj respectively.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
class CompactibleSpace: public Space {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  friend class CompactibleFreeListSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  HeapWord* _compaction_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  CompactibleSpace* _next_compaction_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   366
  // Auxiliary functions for scan_and_{forward,adjust_pointers,compact} support.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   367
  inline size_t adjust_obj_size(size_t size) const {
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   368
    return size;
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   369
  }
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   370
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   371
  inline size_t obj_size(const HeapWord* addr) const {
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   372
    return oop(addr)->size();
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   373
  }
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   374
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
public:
1379
ccfaefa561cd 6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents: 1374
diff changeset
   376
  CompactibleSpace() :
ccfaefa561cd 6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents: 1374
diff changeset
   377
   _compaction_top(NULL), _next_compaction_space(NULL) {}
ccfaefa561cd 6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents: 1374
diff changeset
   378
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   379
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
1388
tonyp
parents: 1379 977
diff changeset
   380
  virtual void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // Used temporarily during a compaction phase to hold the value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // top should have when compaction is complete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  HeapWord* compaction_top() const { return _compaction_top;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  void set_compaction_top(HeapWord* value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    assert(value == NULL || (value >= bottom() && value <= end()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      "should point inside space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    _compaction_top = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // Perform operations on the space needed after a compaction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // has been performed.
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   394
  virtual void reset_after_compaction() = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Returns the next space (in the current generation) to be compacted in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // the global compaction order.  Also is used to select the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // space into which to compact.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  virtual CompactibleSpace* next_compaction_space() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    return _next_compaction_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  void set_next_compaction_space(CompactibleSpace* csp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
    _next_compaction_space = csp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // MarkSweep support phase2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // Start the process of compaction of the current space: compute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // post-compaction addresses, and insert forwarding pointers.  The fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // "cp->gen" and "cp->compaction_space" are the generation and space into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // which we are currently compacting.  This call updates "cp" as necessary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // and leaves the "compaction_top" of the final value of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // "cp->compaction_space" up-to-date.  Offset tables may be updated in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // this phase as if the final copy had occurred; if so, "cp->threshold"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // indicates when the next such action should be taken.
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   418
  virtual void prepare_for_compaction(CompactPoint* cp) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  // MarkSweep support phase3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  virtual void adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // MarkSweep support phase4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  virtual void compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // The maximum percentage of objects that can be dead in the compacted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // live part of a compacted space ("deadwood" support.)
1557
13878a2edfef 6765804: GC "dead ratios" should be unsigned
jcoomes
parents: 1388
diff changeset
   426
  virtual size_t allowed_dead_ratio() const { return 0; };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // Some contiguous spaces may maintain some data structures that should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // be updated whenever an allocation crosses a boundary.  This function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // returns the first such boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // (The default implementation returns the end of the space, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // boundary is never crossed.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  virtual HeapWord* initialize_threshold() { return end(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // "q" is an object of the given "size" that should be forwarded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  // "cp" names the generation ("gen") and containing "this" (which must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // also equal "cp->space").  "compact_top" is where in "this" the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // next object should be forwarded to.  If there is room in "this" for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // the object, insert an appropriate forwarding pointer in "q".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // If not, go to the next compaction space (there must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  // be one, since compaction must succeed -- we go to the first space of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // the previous generation if necessary, updating "cp"), reset compact_top
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // and then forward.  In either case, returns the new value of "compact_top".
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   444
  // If the forwarding crosses "cp->threshold", invokes the "cross_threshold"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // function of the then-current compaction space, and updates "cp->threshold
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // accordingly".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  virtual HeapWord* forward(oop q, size_t size, CompactPoint* cp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
                    HeapWord* compact_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   450
  // Return a size with adjustments as required of the space.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  virtual size_t adjust_object_size_v(size_t size) const { return size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  // Used during compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  HeapWord* _first_dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  HeapWord* _end_of_live;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // Minimum size of a free block.
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   459
  virtual size_t minimum_free_block_size() const { return 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  // This the function is invoked when an allocation of an object covering
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // "start" to "end occurs crosses the threshold; returns the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // threshold.  (The default implementation does nothing.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* the_end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    return end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // Requires "allowed_deadspace_words > 0", that "q" is the start of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // free block of the given "word_len", and that "q", were it an object,
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   470
  // would not move if forwarded.  If the size allows, fill the free
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // block with an object, to prevent excessive compaction.  Returns "true"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  // iff the free region was made deadspace, and modifies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  // "allowed_deadspace_words" to reflect the number of available deadspace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  // words remaining after this operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  bool insert_deadspace(size_t& allowed_deadspace_words, HeapWord* q,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
                        size_t word_len);
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   477
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   478
  // Below are template functions for scan_and_* algorithms (avoiding virtual calls).
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   479
  // The space argument should be a subclass of CompactibleSpace, implementing
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   480
  // scan_limit(), scanned_block_is_obj(), and scanned_block_size(),
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   481
  // and possibly also overriding obj_size(), and adjust_obj_size().
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   482
  // These functions should avoid virtual calls whenever possible.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   483
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   484
  // Frequently calls adjust_obj_size().
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   485
  template <class SpaceType>
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   486
  static inline void scan_and_adjust_pointers(SpaceType* space);
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   487
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   488
  // Frequently calls obj_size().
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   489
  template <class SpaceType>
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   490
  static inline void scan_and_compact(SpaceType* space);
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   491
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   492
  // Frequently calls scanned_block_is_obj() and scanned_block_size().
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   493
  // Requires the scan_limit() function.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   494
  template <class SpaceType>
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   495
  static inline void scan_and_forward(SpaceType* space, CompactPoint* cp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   498
class GenSpaceMangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   499
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
// A space in which the free area is contiguous.  It therefore supports
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// faster allocation, and compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
class ContiguousSpace: public CompactibleSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  friend class OneContigSpaceCardGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  friend class VMStructs;
27624
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   505
  // Allow scan_and_forward function to call (private) overrides for auxiliary functions on this class
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   506
  template <typename SpaceType>
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   507
  friend void CompactibleSpace::scan_and_forward(SpaceType* space, CompactPoint* cp);
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   508
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   509
 private:
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   510
  // Auxiliary functions for scan_and_forward support.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   511
  // See comments for CompactibleSpace for more information.
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   512
  inline HeapWord* scan_limit() const {
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   513
    return top();
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   514
  }
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   515
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   516
  inline bool scanned_block_is_obj(const HeapWord* addr) const {
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   517
    return true; // Always true, since scan_limit is top
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   518
  }
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   519
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   520
  inline size_t scanned_block_size(const HeapWord* addr) const {
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   521
    return oop(addr)->size();
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   522
  }
fe43edc5046d 8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents: 26839
diff changeset
   523
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  HeapWord* _top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  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
   527
  // 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
   528
  GenSpaceMangler* _mangler;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   529
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   530
  GenSpaceMangler* mangler() { return _mangler; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // Allocation helpers (return NULL if full).
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   533
  inline HeapWord* allocate_impl(size_t word_size);
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 27624
diff changeset
   534
  inline HeapWord* par_allocate_impl(size_t word_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
 public:
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   537
  ContiguousSpace();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   538
  ~ContiguousSpace();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   539
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   540
  virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space);
1388
tonyp
parents: 1379 977
diff changeset
   541
  virtual void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  HeapWord* top() const            { return _top;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  void set_top(HeapWord* value)    { _top = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
23537
3de0cad00ae1 8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents: 23536
diff changeset
   547
  void set_saved_mark()            { _saved_mark_word = top();    }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   548
  void reset_saved_mark()          { _saved_mark_word = bottom(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  WaterMark bottom_mark()     { return WaterMark(this, bottom()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  WaterMark top_mark()        { return WaterMark(this, top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  WaterMark saved_mark()      { return WaterMark(this, saved_mark_word()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  bool saved_mark_at_top() const { return saved_mark_word() == top(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   555
  // 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
   556
  // 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
   557
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   558
  // 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
   559
  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
   560
  // 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
   561
  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
   562
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   563
  // 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
   564
  // 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
   565
  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
   566
  // Mangle [top, end)
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   567
  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
   568
  // Mangle the given MemRegion.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   569
  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
   570
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   571
  // 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
   572
  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
   573
  // 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
   574
  // 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
   575
  void check_mangled_unused_area_complete() PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  // Size computations: sizes in bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  size_t capacity() const        { return byte_size(bottom(), end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  size_t used() const            { return byte_size(bottom(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  size_t free() const            { return byte_size(top(),    end()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  virtual bool is_free_block(const HeapWord* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // In a contiguous space we have a more obvious bound on what parts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // contain objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  MemRegion used_region() const { return MemRegion(bottom(), top()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // Allocation (return NULL if full)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  virtual HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  virtual HeapWord* par_allocate(size_t word_size);
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25730
diff changeset
   591
  HeapWord* allocate_aligned(size_t word_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  // Iteration
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   594
  void oop_iterate(ExtendedOopClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  void object_iterate(ObjectClosure* blk);
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1557
diff changeset
   596
  // For contiguous spaces this method will iterate safely over objects
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1557
diff changeset
   597
  // in the space (i.e., between bottom and top) when at a safepoint.
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1557
diff changeset
   598
  void safe_object_iterate(ObjectClosure* blk);
23536
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   599
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   600
  // Iterate over as many initialized objects in the space as possible,
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   601
  // calling "cl.do_object_careful" on each. Return NULL if all objects
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   602
  // in the space (at the start of the iteration) were iterated over.
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   603
  // Return an address indicating the extent of the iteration in the
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   604
  // event that the iteration had to return because of finding an
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   605
  // uninitialized object in the space, or if the closure "cl"
5ad11152daa9 8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents: 23535
diff changeset
   606
  // signaled early termination.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  HeapWord* object_iterate_careful(ObjectClosureCareful* cl);
12597
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   608
  HeapWord* concurrent_iteration_safe_limit() {
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   609
    assert(_concurrent_iteration_safe_limit <= top(),
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   610
           "_concurrent_iteration_safe_limit update missed");
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   611
    return _concurrent_iteration_safe_limit;
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   612
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  // changes the safe limit, all objects from bottom() to the new
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // limit should be properly initialized
12597
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   615
  void set_concurrent_iteration_safe_limit(HeapWord* new_limit) {
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   616
    assert(new_limit <= top(), "uninitialized objects in the safe range");
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   617
    _concurrent_iteration_safe_limit = new_limit;
904566185bdf 7167437: Can't build on linux without precompiled headers
stefank
parents: 12379
diff changeset
   618
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   620
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
   621
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  // In support of parallel oop_iterate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  #define ContigSpace_PAR_OOP_ITERATE_DECL(OopClosureType, nv_suffix)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    void par_oop_iterate(MemRegion mr, OopClosureType* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DECL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  #undef ContigSpace_PAR_OOP_ITERATE_DECL
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15088
diff changeset
   628
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  // Compaction support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  virtual void reset_after_compaction() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    assert(compaction_top() >= bottom() && compaction_top() <= end(), "should point inside space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    set_top(compaction_top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    // set new iteration safe limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    set_concurrent_iteration_safe_limit(compaction_top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  // Override.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   639
  DirtyCardToOopClosure* new_dcto_cl(ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
                                     CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
                                     HeapWord* boundary = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  // Apply "blk->do_oop" to the addresses of all reference fields in objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  // starting with the _saved_mark_word, which was noted during a generation's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // save_marks and is required to denote the head of an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  // Fields in objects allocated by applications of the closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // *are* included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  // Updates _saved_mark_word to point to just after the last object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  // iterated over.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
#define ContigSpace_OOP_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  void oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DECL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
#undef ContigSpace_OOP_SINCE_SAVE_MARKS_DECL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  // Same as object_iterate, but starting from "mark", which is required
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  // to denote the start of an object.  Objects allocated by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  // applications of the closure *are* included in the iteration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  virtual void object_iterate_from(WaterMark mark, ObjectClosure* blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // Very inefficient implementation.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   662
  virtual HeapWord* block_start_const(const void* p) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  size_t block_size(const HeapWord* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  // If a block is in the allocated area, it is an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  bool block_is_obj(const HeapWord* p) const { return p < top(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // Addresses for inlined allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  HeapWord** top_addr() { return &_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  HeapWord** end_addr() { return &_end; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  // Overrides for more efficient compaction support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  void prepare_for_compaction(CompactPoint* cp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  // PrintHeapAtGC support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  // Checked dynamic downcasts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  virtual ContiguousSpace* toContiguousSpace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    return this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  // Debugging
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   683
  virtual void verify() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  // Used to increase collection frequency.  "factor" of 0 means entire
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  // space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  void allocate_temporary_filler(int factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
// A dirty card to oop closure that does filtering.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
// It knows how to filter out objects that are outside of the _boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
class Filtering_DCTOC : public DirtyCardToOopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  void walk_mem_region(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
                       HeapWord* bottom, HeapWord* top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  // Walk the given memory region, from bottom to top, applying
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  // the given oop closure to (possibly) all objects found. The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  // given oop closure may or may not be the same as the oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  // closure with which this closure was created, as it may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  // be a filtering closure which makes use of the _boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  // We offer two signatures, so the FilteringClosure static type is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  // apparent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
                                       HeapWord* bottom, HeapWord* top,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   708
                                       ExtendedOopClosure* cl) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
                                       HeapWord* bottom, HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
                                       FilteringClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   714
  Filtering_DCTOC(Space* sp, ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
                  CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
                  HeapWord* boundary) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    DirtyCardToOopClosure(sp, cl, precision, boundary) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
// A dirty card to oop closure for contiguous spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
// (ContiguousSpace and sub-classes).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
// It is a FilteringClosure, as defined above, and it knows:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
// 1. That the actual top of any area in a memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
//    contained by the space is bounded by the end of the contiguous
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
//    region of the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
// 2. That the space is really made up of objects and not just
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
//    blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
class ContiguousSpaceDCTOC : public Filtering_DCTOC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  // Overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
                                       HeapWord* bottom, HeapWord* top,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   737
                                       ExtendedOopClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  virtual void walk_mem_region_with_cl(MemRegion mr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
                                       HeapWord* bottom, HeapWord* top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
                                       FilteringClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   743
  ContiguousSpaceDCTOC(ContiguousSpace* sp, ExtendedOopClosure* cl,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
                       CardTableModRefBS::PrecisionStyle precision,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
                       HeapWord* boundary) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    Filtering_DCTOC(sp, cl, precision, boundary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
// A ContigSpace that Supports an efficient "block_start" operation via
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
// a BlockOffsetArray (whose BlockOffsetSharedArray may be shared with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
// other spaces.)  This is the abstract base class for old generation
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   753
// (tenured) spaces.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
class OffsetTableContigSpace: public ContiguousSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  BlockOffsetArrayContigSpace _offsets;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  Mutex _par_alloc_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
                         MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  void set_bottom(HeapWord* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  void set_end(HeapWord* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   769
  void clear(bool mangle_space);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   771
  inline HeapWord* block_start_const(const void* p) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // Add offset table update.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  virtual inline HeapWord* allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  inline HeapWord* par_allocate(size_t word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  // MarkSweep support phase3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  virtual HeapWord* initialize_threshold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  virtual void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  // Debugging
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11247
diff changeset
   784
  void verify() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
// Class TenuredSpace is used by TenuredGeneration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
class TenuredSpace: public OffsetTableContigSpace {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  // Mark sweep support
1557
13878a2edfef 6765804: GC "dead ratios" should be unsigned
jcoomes
parents: 1388
diff changeset
   794
  size_t allowed_dead_ratio() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  TenuredSpace(BlockOffsetSharedArray* sharedOffsetArray,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
               MemRegion mr) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    OffsetTableContigSpace(sharedOffsetArray, mr) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   801
#endif // SHARE_VM_MEMORY_SPACE_HPP