hotspot/src/share/vm/gc_implementation/parallelScavenge/psCompactionManager.hpp
author kvn
Thu, 27 May 2010 18:01:56 -0700
changeset 5694 1e0532a6abff
parent 5076 8b74a4b60b31
child 5547 f4b087cbb361
permissions -rw-r--r--
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb Summary: Added new product ObjectAlignmentInBytes flag to control object alignment. Reviewed-by: twisti, ysr, iveresov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3795
6227ff014cfe 6884624: Update copyright year
xdono
parents: 3696
diff changeset
     2
 * Copyright 2005-2009 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
// Move to some global location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#define HAS_BEEN_MOVED 0x1501d01d
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// End move to some global location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class MutableSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ParCompactionManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class ObjectStartArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class ParallelCompactData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class ParMarkBitMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ParCompactionManager : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  friend class ParallelTaskTerminator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  friend class ParMarkBitMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  friend class PSParallelCompact;
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    41
  friend class StealRegionCompactionTask;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class UpdateAndFillClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  friend class RefProcTaskExecutor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// ------------------------  Don't putback if not needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Actions that the compaction manager should take.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  enum Action {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    Update,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    Copy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    UpdateAndCopy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    CopyAndUpdate,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    VerifyUpdate,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    ResetObjects,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    NotValid
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// ------------------------  End don't putback if not needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 private:
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    61
  // 32-bit:  4K * 8 = 32KiB; 64-bit:  8K * 16 = 128KiB
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    62
  #define OBJARRAY_QUEUE_SIZE (1 << NOT_LP64(12) LP64_ONLY(13))
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    63
  typedef GenericTaskQueue<ObjArrayTask, OBJARRAY_QUEUE_SIZE> ObjArrayTaskQueue;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    64
  typedef GenericTaskQueueSet<ObjArrayTaskQueue> ObjArrayTaskQueueSet;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    65
  #undef OBJARRAY_QUEUE_SIZE
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    66
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    67
  static ParCompactionManager** _manager_array;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    68
  static OopTaskQueueSet*       _stack_array;
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    69
  static ObjArrayTaskQueueSet*  _objarray_queues;
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    70
  static ObjectStartArray*      _start_array;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    71
  static RegionTaskQueueSet*    _region_array;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    72
  static PSOldGen*              _old_gen;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    74
private:
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    75
  OopTaskQueue                  _marking_stack;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    76
  GrowableArray<oop>*           _overflow_stack;
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    77
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    78
  typedef GrowableArray<ObjArrayTask> ObjArrayOverflowStack;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    79
  ObjArrayTaskQueue             _objarray_queue;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    80
  ObjArrayOverflowStack*        _objarray_overflow_stack;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    81
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Is there a way to reuse the _marking_stack for the
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    83
  // saving empty regions?  For now just create a different
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // type of TaskQueue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    86
#ifdef USE_RegionTaskQueueWithOverflow
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    87
  RegionTaskQueueWithOverflow   _region_stack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
#else
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    89
  RegionTaskQueue               _region_stack;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    90
  GrowableArray<size_t>*        _region_overflow_stack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
#if 1  // does this happen enough to need a per thread stack?
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    94
  GrowableArray<Klass*>*        _revisit_klass_stack;
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1623
diff changeset
    95
  GrowableArray<DataLayout*>*   _revisit_mdo_stack;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static ParMarkBitMap* _mark_bitmap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  Action _action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static PSOldGen* old_gen()             { return _old_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static ObjectStartArray* start_array() { return _start_array; }
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   103
  static OopTaskQueueSet* stack_array()  { return _stack_array; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static void initialize(ParMarkBitMap* mbm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Array of tasks.  Needed by the ParallelTaskTerminator.
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   109
  static RegionTaskQueueSet* region_array()      { return _region_array; }
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   110
  OopTaskQueue*  marking_stack()                 { return &_marking_stack; }
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   111
  GrowableArray<oop>* overflow_stack()           { return _overflow_stack; }
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   112
#ifdef USE_RegionTaskQueueWithOverflow
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   113
  RegionTaskQueueWithOverflow* region_stack()    { return &_region_stack; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#else
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   115
  RegionTaskQueue*  region_stack()               { return &_region_stack; }
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   116
  GrowableArray<size_t>* region_overflow_stack() {
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   117
    return _region_overflow_stack;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   118
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Pushes onto the marking stack.  If the marking stack is full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // pushes onto the overflow stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  void stack_push(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Do not implement an equivalent stack_pop.  Deal with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // marking stack and overflow stack directly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   127
  // Pushes onto the region stack.  If the region stack is full,
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   128
  // pushes onto the region overflow stack.
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   129
  void region_stack_push(size_t region_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   131
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  Action action() { return _action; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  void set_action(Action v) { _action = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  inline static ParCompactionManager* manager_array(int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  ParCompactionManager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  ~ParCompactionManager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  void allocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  void deallocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  ParMarkBitMap* mark_bitmap() { return _mark_bitmap; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Take actions in preparation for a compaction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static void reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // void drain_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  bool should_update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  bool should_copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  bool should_verify_only();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  bool should_reset_only();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
#if 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Probably stays as a growable array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  GrowableArray<Klass*>* revisit_klass_stack() { return _revisit_klass_stack; }
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1623
diff changeset
   157
  GrowableArray<DataLayout*>* revisit_mdo_stack() { return _revisit_mdo_stack; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // Save oop for later processing.  Must not fail.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  void save_for_scanning(oop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Get a oop for scanning.  If returns null, no oop were found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  oop retrieve_for_scanning();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   165
  inline void push_objarray(oop obj, size_t index);
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   166
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   167
  // Save region for later processing.  Must not fail.
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   168
  void save_for_processing(size_t region_index);
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   169
  // Get a region for processing.  If returns null, no region were found.
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   170
  bool retrieve_for_processing(size_t& region_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Access function for compaction managers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static ParCompactionManager* gc_thread_compaction_manager(int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  static bool steal(int queue_num, int* seed, Task& t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    return stack_array()->steal(queue_num, seed, t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   179
  static bool steal_objarray(int queue_num, int* seed, ObjArrayTask& t) {
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   180
    return _objarray_queues->steal(queue_num, seed, t);
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   181
  }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   182
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   183
  static bool steal(int queue_num, int* seed, RegionTask& t) {
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   184
    return region_array()->steal(queue_num, seed, t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   187
  // Process tasks remaining on any marking stack
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   188
  void follow_marking_stacks();
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   189
  inline bool marking_stacks_empty() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // Process tasks remaining on any stack
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   192
  void drain_region_stacks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Process tasks remaining on any stack
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   195
  void drain_region_overflow_stack();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Debugging support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  bool stacks_have_been_allocated();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
inline ParCompactionManager* ParCompactionManager::manager_array(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert(_manager_array != NULL, "access of NULL manager_array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  assert(index >= 0 && index <= (int)ParallelGCThreads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    "out of range manager_array access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  return _manager_array[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
}
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   209
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   210
bool ParCompactionManager::marking_stacks_empty() const {
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   211
  return _marking_stack.size() == 0 && _overflow_stack->is_empty() &&
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   212
    _objarray_queue.size() == 0 && _objarray_overflow_stack->is_empty();
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   213
}