hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.hpp
author jcoomes
Tue, 30 Sep 2008 11:49:31 -0700
changeset 1406 e5e2b519fc11
parent 977 b90650e2a9f7
child 1407 9006b01ba3fd
permissions -rw-r--r--
6716466: par compact - remove VerifyParallelOldWithMarkSweep code Reviewed-by: jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 360
diff changeset
     2
 * Copyright 2005-2008 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class ParallelScavengeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class PSAdaptiveSizePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class PSYoungGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class PSPermGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class ParCompactionManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class ParallelTaskTerminator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class PSParallelCompact;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class GCTaskManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class GCTaskQueue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class PreGCValues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class MoveAndUpdateClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class RefProcTaskExecutor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class SpaceInfo
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  MutableSpace* space() const { return _space; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Where the free space will start after the collection.  Valid only after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // summary phase completes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  HeapWord* new_top() const { return _new_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Allows new_top to be set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  HeapWord** new_top_addr() { return &_new_top; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Where the smallest allowable dense prefix ends (used only for perm gen).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  HeapWord* min_dense_prefix() const { return _min_dense_prefix; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Where the dense prefix ends, or the compacted region begins.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  HeapWord* dense_prefix() const { return _dense_prefix; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // The start array for the (generation containing the) space, or NULL if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // is no start array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  ObjectStartArray* start_array() const { return _start_array; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void set_space(MutableSpace* s)           { _space = s; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  void set_new_top(HeapWord* addr)          { _new_top = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  void set_min_dense_prefix(HeapWord* addr) { _min_dense_prefix = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  void set_dense_prefix(HeapWord* addr)     { _dense_prefix = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void set_start_array(ObjectStartArray* s) { _start_array = s; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  MutableSpace*     _space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  HeapWord*         _new_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  HeapWord*         _min_dense_prefix;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  HeapWord*         _dense_prefix;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  ObjectStartArray* _start_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
class ParallelCompactData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Sizes are in HeapWords, unless indicated otherwise.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static const size_t Log2ChunkSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static const size_t ChunkSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static const size_t ChunkSizeBytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    83
  // Mask for the bits in a size_t to get an offset within a chunk.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static const size_t ChunkSizeOffsetMask;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    85
  // Mask for the bits in a pointer to get an offset within a chunk.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static const size_t ChunkAddrOffsetMask;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    87
  // Mask for the bits in a pointer to get the address of the start of a chunk.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static const size_t ChunkAddrMask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static const size_t Log2BlockSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static const size_t BlockSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static const size_t BlockOffsetMask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  static const size_t BlockMask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static const size_t BlocksPerChunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  class ChunkData
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // Destination address of the chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    HeapWord* destination() const { return _destination; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    // The first chunk containing data destined for this chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    size_t source_chunk() const { return _source_chunk; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    // The object (if any) starting in this chunk and ending in a different
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    // chunk that could not be updated during the main (parallel) compaction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // phase.  This is different from _partial_obj_addr, which is an object that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // extends onto a source chunk.  However, the two uses do not overlap in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // time, so the same field is used to save space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    HeapWord* deferred_obj_addr() const { return _partial_obj_addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // The starting address of the partial object extending onto the chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    HeapWord* partial_obj_addr() const { return _partial_obj_addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // Size of the partial object extending onto the chunk (words).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    size_t partial_obj_size() const { return _partial_obj_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    // Size of live data that lies within this chunk due to objects that start
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    // in this chunk (words).  This does not include the partial object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // extending onto the chunk (if any), or the part of an object that extends
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // onto the next chunk (if any).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    size_t live_obj_size() const { return _dc_and_los & los_mask; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // Total live data that lies within the chunk (words).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    size_t data_size() const { return partial_obj_size() + live_obj_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // The destination_count is the number of other chunks to which data from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // this chunk will be copied.  At the end of the summary phase, the valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    // values of destination_count are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    // 0 - data from the chunk will be compacted completely into itself, or the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    //     chunk is empty.  The chunk can be claimed and then filled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    // 1 - data from the chunk will be compacted into 1 other chunk; some
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    //     data from the chunk may also be compacted into the chunk itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    // 2 - data from the chunk will be copied to 2 other chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    // During compaction as chunks are emptied, the destination_count is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    // decremented (atomically) and when it reaches 0, it can be claimed and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // then filled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    // A chunk is claimed for processing by atomically changing the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    // destination_count to the claimed value (dc_claimed).  After a chunk has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    // been filled, the destination_count should be set to the completed value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    // (dc_completed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    inline uint destination_count() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    inline uint destination_count_raw() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // The location of the java heap data that corresponds to this chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    inline HeapWord* data_location() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    // The highest address referenced by objects in this chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    inline HeapWord* highest_ref() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    // Whether this chunk is available to be claimed, has been claimed, or has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    // been completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    // Minor subtlety:  claimed() returns true if the chunk is marked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    // completed(), which is desirable since a chunk must be claimed before it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // can be completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    bool available() const { return _dc_and_los < dc_one; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    bool claimed() const   { return _dc_and_los >= dc_claimed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    bool completed() const { return _dc_and_los >= dc_completed; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    // These are not atomic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    void set_destination(HeapWord* addr)       { _destination = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    void set_source_chunk(size_t chunk)        { _source_chunk = chunk; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    void set_deferred_obj_addr(HeapWord* addr) { _partial_obj_addr = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    void set_partial_obj_addr(HeapWord* addr)  { _partial_obj_addr = addr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    void set_partial_obj_size(size_t words)    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      _partial_obj_size = (chunk_sz_t) words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    inline void set_destination_count(uint count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    inline void set_live_obj_size(size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    inline void set_data_location(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    inline void set_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    inline bool claim_unsafe();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    // These are atomic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    inline void add_live_obj(size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    inline void set_highest_ref(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    inline void decrement_destination_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    inline bool claim();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    // The type used to represent object sizes within a chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    typedef uint chunk_sz_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    // Constants for manipulating the _dc_and_los field, which holds both the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    // destination count and live obj size.  The live obj size lives at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    // least significant end so no masking is necessary when adding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    static const chunk_sz_t dc_shift;           // Shift amount.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    static const chunk_sz_t dc_mask;            // Mask for destination count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    static const chunk_sz_t dc_one;             // 1, shifted appropriately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    static const chunk_sz_t dc_claimed;         // Chunk has been claimed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    static const chunk_sz_t dc_completed;       // Chunk has been completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    static const chunk_sz_t los_mask;           // Mask for live obj size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    HeapWord*           _destination;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    size_t              _source_chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    HeapWord*           _partial_obj_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    chunk_sz_t          _partial_obj_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    chunk_sz_t volatile _dc_and_los;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    // These enable optimizations that are only partially implemented.  Use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    // debug builds to prevent the code fragments from breaking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    HeapWord*           _data_location;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    HeapWord*           _highest_ref;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
#endif  // #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    uint            _pushed;    // 0 until chunk is pushed onto a worker's stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
   private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // 'Blocks' allow shorter sections of the bitmap to be searched.  Each Block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // holds an offset, which is the amount of live data in the Chunk to the left
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // of the first live object in the Block.  This amount of live data will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // include any object extending into the block. The first block in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // a chunk does not include any partial object extending into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // the chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // The offset also encodes the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // 'parity' of the first 1 bit in the Block:  a positive offset means the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // first 1 bit marks the start of an object, a negative offset means the first
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // 1 bit marks the end of an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  class BlockData
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   232
   public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    typedef short int blk_ofs_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    blk_ofs_t offset() const { return _offset >= 0 ? _offset : -_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    blk_ofs_t raw_offset() const { return _offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    void set_first_is_start_bit(bool v) { _first_is_start_bit = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
#if 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    // The need for this method was anticipated but it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    // never actually used.  Do not include it for now.  If
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    // it is needed, consider the problem of what is passed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // as "v".  To avoid warning errors the method set_start_bit_offset()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    // was changed to take a size_t as the parameter and to do the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // check for the possible overflow.  Doing the cast in these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // methods better limits the potential problems because of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // the size of the field to this class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    void set_raw_offset(blk_ofs_t v) { _offset = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    void set_start_bit_offset(size_t val) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      assert(val >= 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      _offset = (blk_ofs_t) val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      assert(val == (size_t) _offset, "Value is too large");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      _first_is_start_bit = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    void set_end_bit_offset(size_t val) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      assert(val >= 0, "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      _offset = (blk_ofs_t) val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      assert(val == (size_t) _offset, "Value is too large");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      _offset = - _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      _first_is_start_bit = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    bool first_is_start_bit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      assert(_set_phase > 0, "Not initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      return _first_is_start_bit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    bool first_is_end_bit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      assert(_set_phase > 0, "Not initialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      return !_first_is_start_bit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   272
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    blk_ofs_t _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    // This is temporary until the mark_bitmap is separated into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    // a start bit array and an end bit array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    bool      _first_is_start_bit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    short     _set_phase;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    static short _cur_phase;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   280
   public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    static void set_cur_phase(short v) { _cur_phase = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  ParallelCompactData();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  bool initialize(MemRegion covered_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  size_t chunk_count() const { return _chunk_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // Convert chunk indices to/from ChunkData pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  inline ChunkData* chunk(size_t chunk_idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  inline size_t     chunk(const ChunkData* const chunk_ptr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // Returns true if the given address is contained within the chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  bool chunk_contains(size_t chunk_index, HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  size_t block_count() const { return _block_count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  inline BlockData* block(size_t n) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Returns true if the given block is in the given chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  static bool chunk_contains_block(size_t chunk_index, size_t block_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  void add_obj(HeapWord* addr, size_t len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  void add_obj(oop p, size_t len) { add_obj((HeapWord*)p, len); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Fill in the chunks covering [beg, end) so that no data moves; i.e., the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // destination of chunk n is simply the start of chunk n.  The argument beg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // must be chunk-aligned; end need not be.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  void summarize_dense_prefix(HeapWord* beg, HeapWord* end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  bool summarize(HeapWord* target_beg, HeapWord* target_end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
                 HeapWord* source_beg, HeapWord* source_end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
                 HeapWord** target_next, HeapWord** source_next = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  void clear_range(size_t beg_chunk, size_t end_chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  void clear_range(HeapWord* beg, HeapWord* end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    clear_range(addr_to_chunk_idx(beg), addr_to_chunk_idx(end));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // Return the number of words between addr and the start of the chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // containing addr.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  inline size_t     chunk_offset(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Convert addresses to/from a chunk index or chunk pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  inline size_t     addr_to_chunk_idx(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  inline ChunkData* addr_to_chunk_ptr(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  inline HeapWord*  chunk_to_addr(size_t chunk) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  inline HeapWord*  chunk_to_addr(size_t chunk, size_t offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  inline HeapWord*  chunk_to_addr(const ChunkData* chunk) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  inline HeapWord*  chunk_align_down(HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  inline HeapWord*  chunk_align_up(HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  inline bool       is_chunk_aligned(HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // Analogous to chunk_offset() for blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  size_t     block_offset(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  size_t     addr_to_block_idx(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  size_t     addr_to_block_idx(const oop obj) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    return addr_to_block_idx((HeapWord*) obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  inline BlockData* addr_to_block_ptr(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  inline HeapWord*  block_to_addr(size_t block) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // Return the address one past the end of the partial object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  HeapWord* partial_obj_end(size_t chunk_idx) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Return the new location of the object p after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // the compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  HeapWord* calc_new_pointer(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // Same as calc_new_pointer() using blocks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  HeapWord* block_calc_new_pointer(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // Same as calc_new_pointer() using chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  HeapWord* chunk_calc_new_pointer(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  HeapWord* calc_new_pointer(oop p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    return calc_new_pointer((HeapWord*) p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // Return the updated address for the given klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  klassOop calc_new_klass(klassOop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // Given a block returns true if the partial object for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  // corresponding chunk ends in the block.  Returns false, otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // If there is no partial object, returns false.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  bool partial_obj_ends_in_block(size_t block_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Returns the block index for the block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  static size_t block_idx(BlockData* block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
#ifdef  ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  void verify_clear(const PSVirtualSpace* vspace);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  void verify_clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
#endif  // #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  bool initialize_block_data(size_t region_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  bool initialize_chunk_data(size_t region_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  PSVirtualSpace* create_vspace(size_t count, size_t element_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  HeapWord*       _region_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
#ifdef  ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  HeapWord*       _region_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
#endif  // #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  PSVirtualSpace* _chunk_vspace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  ChunkData*      _chunk_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  size_t          _chunk_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  PSVirtualSpace* _block_vspace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  BlockData*      _block_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  size_t          _block_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
inline uint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
ParallelCompactData::ChunkData::destination_count_raw() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  return _dc_and_los & dc_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
inline uint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
ParallelCompactData::ChunkData::destination_count() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  return destination_count_raw() >> dc_shift;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
inline void
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
ParallelCompactData::ChunkData::set_destination_count(uint count)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  assert(count <= (dc_completed >> dc_shift), "count too large");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  const chunk_sz_t live_sz = (chunk_sz_t) live_obj_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  _dc_and_los = (count << dc_shift) | live_sz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
inline void ParallelCompactData::ChunkData::set_live_obj_size(size_t words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  assert(words <= los_mask, "would overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  _dc_and_los = destination_count_raw() | (chunk_sz_t)words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
inline void ParallelCompactData::ChunkData::decrement_destination_count()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  assert(_dc_and_los < dc_claimed, "already claimed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  assert(_dc_and_los >= dc_one, "count would go negative");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  Atomic::add((int)dc_mask, (volatile int*)&_dc_and_los);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
inline HeapWord* ParallelCompactData::ChunkData::data_location() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  DEBUG_ONLY(return _data_location;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  NOT_DEBUG(return NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
inline HeapWord* ParallelCompactData::ChunkData::highest_ref() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  DEBUG_ONLY(return _highest_ref;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  NOT_DEBUG(return NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
inline void ParallelCompactData::ChunkData::set_data_location(HeapWord* addr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  DEBUG_ONLY(_data_location = addr;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
inline void ParallelCompactData::ChunkData::set_completed()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  assert(claimed(), "must be claimed first");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  _dc_and_los = dc_completed | (chunk_sz_t) live_obj_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
// MT-unsafe claiming of a chunk.  Should only be used during single threaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
// execution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
inline bool ParallelCompactData::ChunkData::claim_unsafe()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if (available()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    _dc_and_los |= dc_claimed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
inline void ParallelCompactData::ChunkData::add_live_obj(size_t words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  assert(words <= (size_t)los_mask - live_obj_size(), "overflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  Atomic::add((int) words, (volatile int*) &_dc_and_los);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
inline void ParallelCompactData::ChunkData::set_highest_ref(HeapWord* addr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  HeapWord* tmp = _highest_ref;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  while (addr > tmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    tmp = (HeapWord*)Atomic::cmpxchg_ptr(addr, &_highest_ref, tmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
#endif  // #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
inline bool ParallelCompactData::ChunkData::claim()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  const int los = (int) live_obj_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  const int old = Atomic::cmpxchg(dc_claimed | los,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
                                  (volatile int*) &_dc_and_los, los);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  return old == los;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
inline ParallelCompactData::ChunkData*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
ParallelCompactData::chunk(size_t chunk_idx) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  assert(chunk_idx <= chunk_count(), "bad arg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  return _chunk_data + chunk_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
inline size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
ParallelCompactData::chunk(const ChunkData* const chunk_ptr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  assert(chunk_ptr >= _chunk_data, "bad arg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  assert(chunk_ptr <= _chunk_data + chunk_count(), "bad arg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  return pointer_delta(chunk_ptr, _chunk_data, sizeof(ChunkData));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
inline ParallelCompactData::BlockData*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
ParallelCompactData::block(size_t n) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  assert(n < block_count(), "bad arg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  return _block_data + n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
inline size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
ParallelCompactData::chunk_offset(const HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  assert(addr >= _region_start, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  assert(addr <= _region_end, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  return (size_t(addr) & ChunkAddrOffsetMask) >> LogHeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
inline size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
ParallelCompactData::addr_to_chunk_idx(const HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  assert(addr >= _region_start, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  assert(addr <= _region_end, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  return pointer_delta(addr, _region_start) >> Log2ChunkSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
inline ParallelCompactData::ChunkData*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
ParallelCompactData::addr_to_chunk_ptr(const HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  return chunk(addr_to_chunk_idx(addr));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
inline HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
ParallelCompactData::chunk_to_addr(size_t chunk) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  assert(chunk <= _chunk_count, "chunk out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  return _region_start + (chunk << Log2ChunkSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
inline HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
ParallelCompactData::chunk_to_addr(const ChunkData* chunk) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  return chunk_to_addr(pointer_delta(chunk, _chunk_data, sizeof(ChunkData)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
inline HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
ParallelCompactData::chunk_to_addr(size_t chunk, size_t offset) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  assert(chunk <= _chunk_count, "chunk out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  assert(offset < ChunkSize, "offset too big");  // This may be too strict.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  return chunk_to_addr(chunk) + offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
inline HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
ParallelCompactData::chunk_align_down(HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  assert(addr >= _region_start, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  assert(addr < _region_end + ChunkSize, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  return (HeapWord*)(size_t(addr) & ChunkAddrMask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
inline HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
ParallelCompactData::chunk_align_up(HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  assert(addr >= _region_start, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  assert(addr <= _region_end, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  return chunk_align_down(addr + ChunkSizeOffsetMask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
inline bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
ParallelCompactData::is_chunk_aligned(HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  return chunk_offset(addr) == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
inline size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
ParallelCompactData::block_offset(const HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  assert(addr >= _region_start, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  assert(addr <= _region_end, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  return pointer_delta(addr, _region_start) & BlockOffsetMask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
inline size_t
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
ParallelCompactData::addr_to_block_idx(const HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  assert(addr >= _region_start, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  assert(addr <= _region_end, "bad addr");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  return pointer_delta(addr, _region_start) >> Log2BlockSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
inline ParallelCompactData::BlockData*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
ParallelCompactData::addr_to_block_ptr(const HeapWord* addr) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  return block(addr_to_block_idx(addr));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
inline HeapWord*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
ParallelCompactData::block_to_addr(size_t block) const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  assert(block < _block_count, "block out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  return _region_start + (block << Log2BlockSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
// Abstract closure for use with ParMarkBitMap::iterate(), which will invoke the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
// do_addr() method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
// The closure is initialized with the number of heap words to process
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
// (words_remaining()), and becomes 'full' when it reaches 0.  The do_addr()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
// methods in subclasses should update the total as words are processed.  Since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
// only one subclass actually uses this mechanism to terminate iteration, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
// default initial value is > 0.  The implementation is here and not in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
// single subclass that uses it to avoid making is_full() virtual, and thus
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
// adding a virtual call per live object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
class ParMarkBitMapClosure: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  typedef ParMarkBitMap::idx_t idx_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  typedef ParMarkBitMap::IterationStatus IterationStatus;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  inline ParMarkBitMapClosure(ParMarkBitMap* mbm, ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
                              size_t words = max_uintx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  inline ParCompactionManager* compaction_manager() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  inline ParMarkBitMap*        bitmap() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  inline size_t                words_remaining() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  inline bool                  is_full() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  inline HeapWord*             source() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  inline void                  set_source(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  virtual IterationStatus do_addr(HeapWord* addr, size_t words) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  inline void decrement_words_remaining(size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  ParMarkBitMap* const        _bitmap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  ParCompactionManager* const _compaction_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  DEBUG_ONLY(const size_t     _initial_words_remaining;) // Useful in debugger.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  size_t                      _words_remaining; // Words left to copy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  HeapWord*                   _source;          // Next addr that would be read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
ParMarkBitMapClosure::ParMarkBitMapClosure(ParMarkBitMap* bitmap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
                                           ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
                                           size_t words):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  _bitmap(bitmap), _compaction_manager(cm)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
#ifdef  ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  , _initial_words_remaining(words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  _words_remaining = words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  _source = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
inline ParCompactionManager* ParMarkBitMapClosure::compaction_manager() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  return _compaction_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
inline ParMarkBitMap* ParMarkBitMapClosure::bitmap() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  return _bitmap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
inline size_t ParMarkBitMapClosure::words_remaining() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  return _words_remaining;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
inline bool ParMarkBitMapClosure::is_full() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  return words_remaining() == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
inline HeapWord* ParMarkBitMapClosure::source() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  return _source;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
inline void ParMarkBitMapClosure::set_source(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  _source = addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
inline void ParMarkBitMapClosure::decrement_words_remaining(size_t words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  assert(_words_remaining >= words, "processed too many words");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  _words_remaining -= words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
// Closure for updating the block data during the summary phase.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
class BitBlockUpdateClosure: public ParMarkBitMapClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  // ParallelCompactData::BlockData::blk_ofs_t _live_data_left;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  size_t    _live_data_left;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  size_t    _cur_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  HeapWord* _chunk_start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  HeapWord* _chunk_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  size_t    _chunk_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  BitBlockUpdateClosure(ParMarkBitMap* mbm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
                        ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
                        size_t chunk_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  size_t cur_block() { return _cur_block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  size_t chunk_index() { return _chunk_index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  size_t live_data_left() { return _live_data_left; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  // Returns true the first bit in the current block (cur_block) is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  // a start bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  // Returns true if the current block is within the chunk for the closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  bool chunk_contains_cur_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  // Set the chunk index and related chunk values for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  // a new chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  void reset_chunk(size_t chunk_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  virtual IterationStatus do_addr(HeapWord* addr, size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   719
// The UseParallelOldGC collector is a stop-the-world garbage
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   720
// collector that does parts of the collection using parallel threads.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   721
// The collection includes the tenured generation and the young
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   722
// generation.  The permanent generation is collected at the same
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   723
// time as the other two generations but the permanent generation
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   724
// is collect by a single GC thread.  The permanent generation is
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   725
// collected serially because of the requirement that during the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   726
// processing of a klass AAA, any objects reference by AAA must
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   727
// already have been processed.  This requirement is enforced by
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   728
// a left (lower address) to right (higher address) sliding compaction.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   729
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   730
// There are four phases of the collection.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   731
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   732
//      - marking phase
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   733
//      - summary phase
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   734
//      - compacting phase
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   735
//      - clean up phase
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   736
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   737
// Roughly speaking these phases correspond, respectively, to
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   738
//      - mark all the live objects
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   739
//      - calculate the destination of each object at the end of the collection
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   740
//      - move the objects to their destination
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   741
//      - update some references and reinitialize some variables
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   742
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   743
// These three phases are invoked in PSParallelCompact::invoke_no_policy().
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   744
// The marking phase is implemented in PSParallelCompact::marking_phase()
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   745
// and does a complete marking of the heap.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   746
// The summary phase is implemented in PSParallelCompact::summary_phase().
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   747
// The move and update phase is implemented in PSParallelCompact::compact().
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   748
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   749
// A space that is being collected is divided into chunks and with
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   750
// each chunk is associated an object of type ParallelCompactData.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   751
// Each chunk is of a fixed size and typically will contain more than
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   752
// 1 object and may have parts of objects at the front and back of the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   753
// chunk.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   754
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   755
// chunk            -----+---------------------+----------
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   756
// objects covered   [ AAA  )[ BBB )[ CCC   )[ DDD     )
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   757
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   758
// The marking phase does a complete marking of all live objects in the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   759
// heap.  The marking also compiles the size of the data for
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   760
// all live objects covered by the chunk.  This size includes the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   761
// part of any live object spanning onto the chunk (part of AAA
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   762
// if it is live) from the front, all live objects contained in the chunk
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   763
// (BBB and/or CCC if they are live), and the part of any live objects
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   764
// covered by the chunk that extends off the chunk (part of DDD if it is
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   765
// live).  The marking phase uses multiple GC threads and marking is
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   766
// done in a bit array of type ParMarkBitMap.  The marking of the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   767
// bit map is done atomically as is the accumulation of the size of the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   768
// live objects covered by a chunk.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   769
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   770
// The summary phase calculates the total live data to the left of
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   771
// each chunk XXX.  Based on that total and the bottom of the space,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   772
// it can calculate the starting location of the live data in XXX.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   773
// The summary phase calculates for each chunk XXX quantites such as
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   774
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   775
//      - the amount of live data at the beginning of a chunk from an object
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   776
//      entering the chunk.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   777
//      - the location of the first live data on the chunk
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   778
//      - a count of the number of chunks receiving live data from XXX.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   779
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   780
// See ParallelCompactData for precise details.  The summary phase also
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   781
// calculates the dense prefix for the compaction.  The dense prefix
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   782
// is a portion at the beginning of the space that is not moved.  The
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   783
// objects in the dense prefix do need to have their object references
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   784
// updated.  See method summarize_dense_prefix().
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   785
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   786
// The summary phase is done using 1 GC thread.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   787
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   788
// The compaction phase moves objects to their new location and updates
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   789
// all references in the object.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   790
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   791
// A current exception is that objects that cross a chunk boundary
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   792
// are moved but do not have their references updated.  References are
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   793
// not updated because it cannot easily be determined if the klass
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   794
// pointer KKK for the object AAA has been updated.  KKK likely resides
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   795
// in a chunk to the left of the chunk containing AAA.  These AAA's
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   796
// have there references updated at the end in a clean up phase.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   797
// See the method PSParallelCompact::update_deferred_objects().  An
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   798
// alternate strategy is being investigated for this deferral of updating.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   799
//
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   800
// Compaction is done on a chunk basis.  A chunk that is ready to be
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   801
// filled is put on a ready list and GC threads take chunk off the list
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   802
// and fill them.  A chunk is ready to be filled if it
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   803
// empty of live objects.  Such a chunk may have been initially
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   804
// empty (only contained
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   805
// dead objects) or may have had all its live objects copied out already.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   806
// A chunk that compacts into itself is also ready for filling.  The
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   807
// ready list is initially filled with empty chunks and chunks compacting
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   808
// into themselves.  There is always at least 1 chunk that can be put on
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   809
// the ready list.  The chunks are atomically added and removed from
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   810
// the ready list.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   811
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
class PSParallelCompact : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  // Convenient access to type names.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  typedef ParMarkBitMap::idx_t idx_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  typedef ParallelCompactData::ChunkData ChunkData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  typedef ParallelCompactData::BlockData BlockData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  typedef enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    perm_space_id, old_space_id, eden_space_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    from_space_id, to_space_id, last_space_id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  } SpaceId;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
 public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   825
  // Inline closure decls
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  class IsAliveClosure: public BoolObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   829
    virtual void do_object(oop p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   830
    virtual bool do_object_b(oop p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  class KeepAliveClosure: public OopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   834
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    ParCompactionManager* _compaction_manager;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   836
   protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   837
    template <class T> inline void do_oop_work(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   839
    KeepAliveClosure(ParCompactionManager* cm) : _compaction_manager(cm) { }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   840
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   841
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   844
  // Current unused
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   845
  class FollowRootClosure: public OopsInGenClosure {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   846
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    ParCompactionManager* _compaction_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   849
    FollowRootClosure(ParCompactionManager* cm) : _compaction_manager(cm) { }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   850
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   851
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    virtual const bool do_nmethods() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  class FollowStackClosure: public VoidClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   856
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
    ParCompactionManager* _compaction_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   859
    FollowStackClosure(ParCompactionManager* cm) : _compaction_manager(cm) { }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   860
    virtual void do_void();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  class AdjustPointerClosure: public OopsInGenClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   864
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    bool _is_root;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   867
    AdjustPointerClosure(bool is_root) : _is_root(is_root) { }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   868
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   869
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // Closure for verifying update of pointers.  Does not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  // have any side effects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  class VerifyUpdateClosure: public ParMarkBitMapClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    const MutableSpace* _space; // Is this ever used?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    VerifyUpdateClosure(ParCompactionManager* cm, const MutableSpace* sp) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
      ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm), _space(sp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    virtual IterationStatus do_addr(HeapWord* addr, size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    const MutableSpace* space() { return _space; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  // Closure for updating objects altered for debug checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  class ResetObjectsClosure: public ParMarkBitMapClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    ResetObjectsClosure(ParCompactionManager* cm):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
      ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    virtual IterationStatus do_addr(HeapWord* addr, size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  friend class KeepAliveClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  friend class FollowStackClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  friend class AdjustPointerClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  friend class FollowRootClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  friend class instanceKlassKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  friend class RefProcTaskProxy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  static elapsedTimer         _accumulated_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  static unsigned int         _total_invocations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  static unsigned int         _maximum_compaction_gc_num;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  static jlong                _time_of_last_gc;   // ms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  static CollectorCounters*   _counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  static ParMarkBitMap        _mark_bitmap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  static ParallelCompactData  _summary_data;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  static IsAliveClosure       _is_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  static SpaceInfo            _space_info[last_space_id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  static bool                 _print_phases;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  static AdjustPointerClosure _adjust_root_pointer_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  static AdjustPointerClosure _adjust_pointer_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  // Reference processing (used in ...follow_contents)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  static ReferenceProcessor*  _ref_processor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  // Updated location of intArrayKlassObj.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  static klassOop _updated_int_array_klass_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  // Values computed at initialization and used by dead_wood_limiter().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  static double _dwl_mean;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  static double _dwl_std_dev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  static double _dwl_first_term;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  static double _dwl_adjustment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
#ifdef  ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  static bool   _dwl_initialized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
#endif  // #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  // Closure accessors
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   935
  static OopClosure* adjust_pointer_closure()      { return (OopClosure*)&_adjust_pointer_closure; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  static OopClosure* adjust_root_pointer_closure() { return (OopClosure*)&_adjust_root_pointer_closure; }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   937
  static BoolObjectClosure* is_alive_closure()     { return (BoolObjectClosure*)&_is_alive_closure; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  static void initialize_space_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  // Return true if details about individual phases should be printed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  static inline bool print_phases();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  // Clear the marking bitmap and summary data that cover the specified space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
  static void clear_data_covering_space(SpaceId id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  static void pre_compact(PreGCValues* pre_gc_values);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  static void post_compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  // Mark live objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  static void marking_phase(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
                            bool maximum_heap_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  static void follow_stack(ParCompactionManager* cm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  static void follow_weak_klass_links(ParCompactionManager* cm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   956
  template <class T> static inline void adjust_pointer(T* p, bool is_root);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  static void adjust_root_pointer(oop* p) { adjust_pointer(p, true); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   959
  template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   960
  static inline void follow_root(ParCompactionManager* cm, T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  // Compute the dense prefix for the designated space.  This is an experimental
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  // implementation currently not used in production.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  static HeapWord* compute_dense_prefix_via_density(const SpaceId id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
                                                    bool maximum_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  // Methods used to compute the dense prefix.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
  // Compute the value of the normal distribution at x = density.  The mean and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  // standard deviation are values saved by initialize_dead_wood_limiter().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  static inline double normal_distribution(double density);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  // Initialize the static vars used by dead_wood_limiter().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  static void initialize_dead_wood_limiter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  // Return the percentage of space that can be treated as "dead wood" (i.e.,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  // not reclaimed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  static double dead_wood_limiter(double density, size_t min_percent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  // Find the first (left-most) chunk in the range [beg, end) that has at least
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  // dead_words of dead space to the left.  The argument beg must be the first
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  // chunk in the space that is not completely live.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  static ChunkData* dead_wood_limit_chunk(const ChunkData* beg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
                                          const ChunkData* end,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
                                          size_t dead_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  // Return a pointer to the first chunk in the range [beg, end) that is not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  // completely full.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  static ChunkData* first_dead_space_chunk(const ChunkData* beg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
                                           const ChunkData* end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  // Return a value indicating the benefit or 'yield' if the compacted region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  // were to start (or equivalently if the dense prefix were to end) at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  // candidate chunk.  Higher values are better.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  // The value is based on the amount of space reclaimed vs. the costs of (a)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
  // updating references in the dense prefix plus (b) copying objects and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  // updating references in the compacted region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  static inline double reclaimed_ratio(const ChunkData* const candidate,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
                                       HeapWord* const bottom,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
                                       HeapWord* const top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
                                       HeapWord* const new_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  // Compute the dense prefix for the designated space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  static HeapWord* compute_dense_prefix(const SpaceId id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
                                        bool maximum_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  // Return true if dead space crosses onto the specified Chunk; bit must be the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  // bit index corresponding to the first word of the Chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  static inline bool dead_space_crosses_boundary(const ChunkData* chunk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
                                                 idx_t bit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  // Summary phase utility routine to fill dead space (if any) at the dense
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  // prefix boundary.  Should only be called if the the dense prefix is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  // non-empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  static void fill_dense_prefix_end(SpaceId id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  static void summarize_spaces_quick();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  static void summarize_space(SpaceId id, bool maximum_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  static void summary_phase(ParCompactionManager* cm, bool maximum_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  static bool block_first_offset(size_t block_index, idx_t* block_offset_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  // Fill in the BlockData
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  static void summarize_blocks(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
                               SpaceId first_compaction_space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  // The space that is compacted after space_id.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  static SpaceId next_compaction_space_id(SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  // Adjust addresses in roots.  Does not adjust addresses in heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  static void adjust_roots();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  // Serial code executed in preparation for the compaction phase.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  static void compact_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  // Move objects to new locations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  static void compact_perm(ParCompactionManager* cm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  static void compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  // Add available chunks to the stack and draining tasks to the task queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  static void enqueue_chunk_draining_tasks(GCTaskQueue* q,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
                                           uint parallel_gc_threads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  // Add dense prefix update tasks to the task queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  static void enqueue_dense_prefix_tasks(GCTaskQueue* q,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
                                         uint parallel_gc_threads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  // Add chunk stealing tasks to the task queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  static void enqueue_chunk_stealing_tasks(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
                                       GCTaskQueue* q,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
                                       ParallelTaskTerminator* terminator_ptr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
                                       uint parallel_gc_threads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  // For debugging only - compacts the old gen serially
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  static void compact_serial(ParCompactionManager* cm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  // If objects are left in eden after a collection, try to move the boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  // and absorb them into the old gen.  Returns true if eden was emptied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  static bool absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
                                         PSYoungGen* young_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
                                         PSOldGen* old_gen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  // Reset time since last full gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  static void reset_millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
#ifdef VALIDATE_MARK_SWEEP
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1069
  static GrowableArray<void*>*           _root_refs_stack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  static GrowableArray<oop> *            _live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  static GrowableArray<oop> *            _live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  static GrowableArray<size_t>*          _live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  static size_t                          _live_oops_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  static size_t                          _live_oops_index_at_perm;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1075
  static GrowableArray<void*>*           _other_refs_stack;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1076
  static GrowableArray<void*>*           _adjusted_pointers;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  static bool                            _pointer_tracking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  static bool                            _root_tracking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  // The following arrays are saved since the time of the last GC and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  // assist in tracking down problems where someone has done an errant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  // store into the heap, usually to an oop that wasn't properly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  // handleized across a GC. If we crash or otherwise fail before the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  // next GC, we can query these arrays to find out the object we had
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  // intended to do the store to (assuming it is still alive) and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  // offset within that object. Covered under RecordMarkSweepCompaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  static GrowableArray<HeapWord*> *      _cur_gc_live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  static GrowableArray<HeapWord*> *      _cur_gc_live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  static GrowableArray<size_t>*          _cur_gc_live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  static GrowableArray<HeapWord*> *      _last_gc_live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  static GrowableArray<HeapWord*> *      _last_gc_live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  static GrowableArray<size_t>*          _last_gc_live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  class MarkAndPushClosure: public OopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1097
   private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    ParCompactionManager* _compaction_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
   public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1100
    MarkAndPushClosure(ParCompactionManager* cm) : _compaction_manager(cm) { }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1101
    virtual void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1102
    virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    virtual const bool do_nmethods() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  PSParallelCompact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  // Convenient accessor for Universe::heap().
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  static ParallelScavengeHeap* gc_heap() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
    return (ParallelScavengeHeap*)Universe::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  static void invoke(bool maximum_heap_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  static void invoke_no_policy(bool maximum_heap_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  static void post_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  // Perform initialization for PSParallelCompact that requires
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  // allocations.  This should be called during the VM initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  // at a pointer where it would be appropriate to return a JNI_ENOMEM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  // in the event of a failure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  static bool initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  // Public accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  static elapsedTimer* accumulated_time() { return &_accumulated_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  static unsigned int total_invocations() { return _total_invocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  static CollectorCounters* counters()    { return _counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  // Used to add tasks
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  static GCTaskManager* const gc_task_manager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  static klassOop updated_int_array_klass_obj() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    return _updated_int_array_klass_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  // Marking support
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  static inline bool mark_obj(oop obj);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1136
  // Check mark and maybe push on marking stack
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1137
  template <class T> static inline void mark_and_push(ParCompactionManager* cm,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1138
                                                      T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  // Compaction support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  // Return true if p is in the range [beg_addr, end_addr).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  static inline bool is_in(HeapWord* p, HeapWord* beg_addr, HeapWord* end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  static inline bool is_in(oop* p, HeapWord* beg_addr, HeapWord* end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  // Convenience wrappers for per-space data kept in _space_info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  static inline MutableSpace*     space(SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  static inline HeapWord*         new_top(SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  static inline HeapWord*         dense_prefix(SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  static inline ObjectStartArray* start_array(SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  // Return true if the klass should be updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  static inline bool should_update_klass(klassOop k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  // Move and update the live objects in the specified space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  static void move_and_update(ParCompactionManager* cm, SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  // Process the end of the given chunk range in the dense prefix.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  // This includes saving any object not updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  static void dense_prefix_chunks_epilogue(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
                                           size_t chunk_start_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
                                           size_t chunk_end_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
                                           idx_t exiting_object_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
                                           idx_t chunk_offset_start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
                                           idx_t chunk_offset_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  // Update a chunk in the dense prefix.  For each live object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
  // in the chunk, update it's interior references.  For each
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  // dead object, fill it with deadwood. Dead space at the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  // of a chunk range will be filled to the start of the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  // live object regardless of the chunk_index_end.  None of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  // objects in the dense prefix move and dead space is dead
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  // (holds only dead objects that don't need any processing), so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  // dead space can be filled in any order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  static void update_and_deadwood_in_dense_prefix(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
                                                  SpaceId space_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
                                                  size_t chunk_index_start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
                                                  size_t chunk_index_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  // Return the address of the count + 1st live word in the range [beg, end).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  static HeapWord* skip_live_words(HeapWord* beg, HeapWord* end, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  // Return the address of the word to be copied to dest_addr, which must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  // aligned to a chunk boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  static HeapWord* first_src_addr(HeapWord* const dest_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
                                  size_t src_chunk_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  // Determine the next source chunk, set closure.source() to the start of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  // new chunk return the chunk index.  Parameter end_addr is the address one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  // beyond the end of source range just processed.  If necessary, switch to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  // new source space and set src_space_id (in-out parameter) and src_space_top
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
  // (out parameter) accordingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  static size_t next_src_chunk(MoveAndUpdateClosure& closure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
                               SpaceId& src_space_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
                               HeapWord*& src_space_top,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
                               HeapWord* end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  // Decrement the destination count for each non-empty source chunk in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  // range [beg_chunk, chunk(chunk_align_up(end_addr))).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  static void decrement_destination_counts(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
                                           size_t beg_chunk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
                                           HeapWord* end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
  // Fill a chunk, copying objects from one or more source chunks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  static void fill_chunk(ParCompactionManager* cm, size_t chunk_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  static void fill_and_update_chunk(ParCompactionManager* cm, size_t chunk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
    fill_chunk(cm, chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  // Update the deferred objects in the space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  static void update_deferred_objects(ParCompactionManager* cm, SpaceId id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  // Mark pointer and follow contents.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1213
  template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1214
  static inline void mark_and_follow(ParCompactionManager* cm, T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
  static ParMarkBitMap* mark_bitmap() { return &_mark_bitmap; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
  static ParallelCompactData& summary_data() { return _summary_data; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1219
  static inline void adjust_pointer(oop* p)       { adjust_pointer(p, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1220
  static inline void adjust_pointer(narrowOop* p) { adjust_pointer(p, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1221
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1222
  template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1223
  static inline void adjust_pointer(T* p,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
                                    HeapWord* beg_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
                                    HeapWord* end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
  // Reference Processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  static ReferenceProcessor* const ref_processor() { return _ref_processor; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  // Return the SpaceId for the given address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  static SpaceId space_id(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  // Time since last full gc (in milliseconds).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  static jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
#ifdef VALIDATE_MARK_SWEEP
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1237
  static void track_adjusted_pointer(void* p, bool isroot);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1238
  static void check_adjust_pointer(void* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  static void track_interior_pointers(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  static void check_interior_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
  static void reset_live_oop_tracking(bool at_perm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  static void register_live_oop(oop p, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  static void validate_live_oop(oop p, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
  static void live_oop_moved_to(HeapWord* q, size_t size, HeapWord* compaction_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
  static void compaction_complete();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
  // Querying operation of RecordMarkSweepCompaction results.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  // Finds and prints the current base oop and offset for a word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
  // within an oop that was live during the last GC. Helpful for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
  // tracking down heap stomps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  static void print_new_location_of_heap_address(HeapWord* q);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
#endif  // #ifdef VALIDATE_MARK_SWEEP
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  // Call backs for class unloading
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  // Update subklass/sibling/implementor links at end of marking.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  static void revisit_weak_klass_link(ParCompactionManager* cm, Klass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  // Debugging support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  static const char* space_names[last_space_id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
  static void print_chunk_ranges();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  static void print_dense_prefix_stats(const char* const algorithm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
                                       const SpaceId id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
                                       const bool maximum_compaction,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
                                       HeapWord* const addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
#endif  // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
#ifdef  ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
  // Verify that all the chunks have been emptied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
  static void verify_complete(SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
#endif  // #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1275
inline bool PSParallelCompact::mark_obj(oop obj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
  const int obj_size = obj->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
  if (mark_bitmap()->mark_obj(obj, obj_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
    _summary_data.add_obj(obj, obj_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1285
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1286
inline void PSParallelCompact::follow_root(ParCompactionManager* cm, T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1287
  assert(!Universe::heap()->is_in_reserved(p),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1288
         "roots shouldn't be things within the heap");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1289
#ifdef VALIDATE_MARK_SWEEP
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1290
  if (ValidateMarkSweep) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1291
    guarantee(!_root_refs_stack->contains(p), "should only be in here once");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1292
    _root_refs_stack->push(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1293
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1294
#endif
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1295
  T heap_oop = oopDesc::load_heap_oop(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1296
  if (!oopDesc::is_null(heap_oop)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1297
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1298
    if (mark_bitmap()->is_unmarked(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1299
      if (mark_obj(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1300
        obj->follow_contents(cm);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1301
      }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1302
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1303
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1304
  follow_stack(cm);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1305
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1306
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1307
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1308
inline void PSParallelCompact::mark_and_follow(ParCompactionManager* cm,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1309
                                               T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1310
  T heap_oop = oopDesc::load_heap_oop(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1311
  if (!oopDesc::is_null(heap_oop)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1312
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1313
    if (mark_bitmap()->is_unmarked(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1314
      if (mark_obj(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1315
        obj->follow_contents(cm);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1316
      }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1317
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1318
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1319
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1320
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1321
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1322
inline void PSParallelCompact::mark_and_push(ParCompactionManager* cm, T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1323
  T heap_oop = oopDesc::load_heap_oop(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1324
  if (!oopDesc::is_null(heap_oop)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1325
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1326
    if (mark_bitmap()->is_unmarked(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1327
      if (mark_obj(obj)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1328
        // This thread marked the object and owns the subsequent processing of it.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1329
        cm->save_for_scanning(obj);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1330
      }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1331
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1332
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1333
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1334
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1335
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1336
inline void PSParallelCompact::adjust_pointer(T* p, bool isroot) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1337
  T heap_oop = oopDesc::load_heap_oop(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1338
  if (!oopDesc::is_null(heap_oop)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1339
    oop obj     = oopDesc::decode_heap_oop_not_null(heap_oop);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1340
    oop new_obj = (oop)summary_data().calc_new_pointer(obj);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1341
    assert(new_obj != NULL ||                     // is forwarding ptr?
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1342
           obj->is_shared(),                      // never forwarded?
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1343
           "should be forwarded");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1344
    // Just always do the update unconditionally?
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1345
    if (new_obj != NULL) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1346
      assert(Universe::heap()->is_in_reserved(new_obj),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1347
             "should be in object space");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1348
      oopDesc::encode_store_heap_oop_not_null(p, new_obj);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1349
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1350
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1351
  VALIDATE_MARK_SWEEP_ONLY(track_adjusted_pointer(p, isroot));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1352
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1353
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1354
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1355
inline void PSParallelCompact::KeepAliveClosure::do_oop_work(T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1356
#ifdef VALIDATE_MARK_SWEEP
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1357
  if (ValidateMarkSweep) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1358
    if (!Universe::heap()->is_in_reserved(p)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1359
      _root_refs_stack->push(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1360
    } else {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1361
      _other_refs_stack->push(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1362
    }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1363
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1364
#endif
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1365
  mark_and_push(_compaction_manager, p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1366
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1367
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1368
inline bool PSParallelCompact::print_phases() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  return _print_phases;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1372
inline double PSParallelCompact::normal_distribution(double density) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  assert(_dwl_initialized, "uninitialized");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  const double squared_term = (density - _dwl_mean) / _dwl_std_dev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  return _dwl_first_term * exp(-0.5 * squared_term * squared_term);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
inline bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
PSParallelCompact::dead_space_crosses_boundary(const ChunkData* chunk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
                                               idx_t bit)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  assert(bit > 0, "cannot call this for the first bit/chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
  assert(_summary_data.chunk_to_addr(chunk) == _mark_bitmap.bit_to_addr(bit),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
         "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  // Dead space crosses the boundary if (1) a partial object does not extend
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  // onto the chunk, (2) an object does not start at the beginning of the chunk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  // and (3) an object does not end at the end of the prior chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  return chunk->partial_obj_size() == 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
    !_mark_bitmap.is_obj_beg(bit) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
    !_mark_bitmap.is_obj_end(bit - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
inline bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
PSParallelCompact::is_in(HeapWord* p, HeapWord* beg_addr, HeapWord* end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
  return p >= beg_addr && p < end_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
inline bool
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
PSParallelCompact::is_in(oop* p, HeapWord* beg_addr, HeapWord* end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  return is_in((HeapWord*)p, beg_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
inline MutableSpace* PSParallelCompact::space(SpaceId id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  assert(id < last_space_id, "id out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  return _space_info[id].space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
inline HeapWord* PSParallelCompact::new_top(SpaceId id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  assert(id < last_space_id, "id out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
  return _space_info[id].new_top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
inline HeapWord* PSParallelCompact::dense_prefix(SpaceId id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
  assert(id < last_space_id, "id out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
  return _space_info[id].dense_prefix();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
inline ObjectStartArray* PSParallelCompact::start_array(SpaceId id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  assert(id < last_space_id, "id out of range");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  return _space_info[id].start_array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
inline bool PSParallelCompact::should_update_klass(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  return ((HeapWord*) k) >= dense_prefix(perm_space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1428
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1429
inline void PSParallelCompact::adjust_pointer(T* p,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
                                              HeapWord* beg_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
                                              HeapWord* end_addr) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1432
  if (is_in((HeapWord*)p, beg_addr, end_addr)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
    adjust_pointer(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
class MoveAndUpdateClosure: public ParMarkBitMapClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  inline MoveAndUpdateClosure(ParMarkBitMap* bitmap, ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
                              ObjectStartArray* start_array,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
                              HeapWord* destination, size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  // Accessors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  HeapWord* destination() const         { return _destination; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
  // If the object will fit (size <= words_remaining()), copy it to the current
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  // destination, update the interior oops and the start array and return either
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  // full (if the closure is full) or incomplete.  If the object will not fit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  // return would_overflow.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  virtual IterationStatus do_addr(HeapWord* addr, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  // Copy enough words to fill this closure, starting at source().  Interior
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  // oops and the start array are not updated.  Return full.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  IterationStatus copy_until_full();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
  // Copy enough words to fill this closure or to the end of an object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  // whichever is smaller, starting at source().  Interior oops and the start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  // array are not updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
  void copy_partial_obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
  // Update variables to indicate that word_count words were processed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
  inline void update_state(size_t word_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  ObjectStartArray* const _start_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
  HeapWord*               _destination;         // Next addr to be written.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
MoveAndUpdateClosure::MoveAndUpdateClosure(ParMarkBitMap* bitmap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
                                           ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
                                           ObjectStartArray* start_array,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
                                           HeapWord* destination,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
                                           size_t words) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
  ParMarkBitMapClosure(bitmap, cm, words), _start_array(start_array)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
  _destination = destination;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
inline void MoveAndUpdateClosure::update_state(size_t words)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  decrement_words_remaining(words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  _source += words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  _destination += words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
class UpdateOnlyClosure: public ParMarkBitMapClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
  const PSParallelCompact::SpaceId _space_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
  ObjectStartArray* const          _start_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  UpdateOnlyClosure(ParMarkBitMap* mbm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
                    ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
                    PSParallelCompact::SpaceId space_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
  // Update the object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
  virtual IterationStatus do_addr(HeapWord* addr, size_t words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
  inline void do_addr(HeapWord* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1504
inline void UpdateOnlyClosure::do_addr(HeapWord* addr)
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1505
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
  _start_array->allocate_block(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
  oop(addr)->update_contents(compaction_manager());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
class FillClosure: public ParMarkBitMapClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1511
 public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1512
  FillClosure(ParCompactionManager* cm, PSParallelCompact::SpaceId space_id) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
    ParMarkBitMapClosure(PSParallelCompact::mark_bitmap(), cm),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
    _space_id(space_id),
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1515
    _start_array(PSParallelCompact::start_array(space_id)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
    assert(_space_id == PSParallelCompact::perm_space_id ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
           _space_id == PSParallelCompact::old_space_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
           "cannot use FillClosure in the young gen");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
    assert(bitmap() != NULL, "need a bitmap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
    assert(_start_array != NULL, "need a start array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
  void fill_region(HeapWord* addr, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
    MemRegion region(addr, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
    SharedHeap::fill_region_with_object(region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
    _start_array->allocate_block(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
  virtual IterationStatus do_addr(HeapWord* addr, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
    fill_region(addr, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
    return ParMarkBitMap::incomplete;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
  const PSParallelCompact::SpaceId _space_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
  ObjectStartArray* const          _start_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
};