hotspot/src/share/vm/gc/parallel/psCompactionManager.hpp
author pliden
Wed, 13 May 2015 15:16:06 +0200
changeset 30764 fec48bf5a827
parent 30566 hotspot/src/share/vm/gc_implementation/parallelScavenge/psCompactionManager.hpp@18eb9aa972d0
child 31330 77061bb01b18
permissions -rw-r--r--
8079792: GC directory structure cleanup Reviewed-by: brutisso, stefank, david
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29792
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 13728
diff changeset
     2
 * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5076
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5076
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5076
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    25
#ifndef SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    26
#define SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    28
#include "gc/shared/taskqueue.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    30
#include "utilities/stack.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class MutableSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class ParCompactionManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class ObjectStartArray;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class ParallelCompactData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ParMarkBitMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11178
diff changeset
    39
class ParCompactionManager : public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  friend class ParallelTaskTerminator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class ParMarkBitMap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class PSParallelCompact;
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    43
  friend class StealRegionCompactionTask;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class UpdateAndFillClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  friend class RefProcTaskExecutor;
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    46
  friend class IdleGCTask;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// ------------------------  Don't putback if not needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Actions that the compaction manager should take.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  enum Action {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    Update,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    Copy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    UpdateAndCopy,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    CopyAndUpdate,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    NotValid
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// ------------------------  End don't putback if not needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 private:
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    62
  // 32-bit:  4K * 8 = 32KiB; 64-bit:  8K * 16 = 128KiB
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
    63
  #define QUEUE_SIZE (1 << NOT_LP64(12) LP64_ONLY(13))
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11178
diff changeset
    64
  typedef OverflowTaskQueue<ObjArrayTask, mtGC, QUEUE_SIZE> ObjArrayTaskQueue;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11178
diff changeset
    65
  typedef GenericTaskQueueSet<ObjArrayTaskQueue, mtGC>      ObjArrayTaskQueueSet;
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
    66
  #undef QUEUE_SIZE
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    67
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    68
  static ParCompactionManager** _manager_array;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    69
  static OopTaskQueueSet*       _stack_array;
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    70
  static ObjArrayTaskQueueSet*  _objarray_queues;
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    71
  static ObjectStartArray*      _start_array;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    72
  static RegionTaskQueueSet*    _region_array;
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
    73
  static PSOldGen*              _old_gen;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    75
private:
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11178
diff changeset
    76
  OverflowTaskQueue<oop, mtGC>        _marking_stack;
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
    77
  ObjArrayTaskQueue             _objarray_stack;
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
    78
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // 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
    80
  // saving empty regions?  For now just create a different
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // type of TaskQueue.
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    82
  RegionTaskQueue*             _region_stack;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    83
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    84
  static RegionTaskQueue**     _region_list;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    85
  // Index in _region_list for current _region_stack.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    86
  uint _region_stack_index;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    87
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    88
  // Indexes of recycled region stacks/overflow stacks
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    89
  // Stacks of regions to be compacted are embedded in the tasks doing
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    90
  // the compaction.  A thread that executes the task extracts the
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    91
  // region stack and drains it.  These threads keep these region
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    92
  // stacks for use during compaction task stealing.  If a thread
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    93
  // gets a second draining task, it pushed its current region stack
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    94
  // index into the array _recycled_stack_index and gets a new
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    95
  // region stack from the task.  A thread that is executing a
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    96
  // compaction stealing task without ever having executing a
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    97
  // draining task, will get a region stack from _recycled_stack_index.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    98
  //
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
    99
  // Array of indexes into the array of region stacks.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   100
  static uint*                    _recycled_stack_index;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   101
  // The index into _recycled_stack_index of the last region stack index
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   102
  // pushed.  If -1, there are no entries into _recycled_stack_index.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   103
  static int                      _recycled_top;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   104
  // The index into _recycled_stack_index of the last region stack index
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   105
  // popped.  If -1, there has not been any entry popped.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   106
  static int                      _recycled_bottom;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  static ParMarkBitMap* _mark_bitmap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  Action _action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static PSOldGen* old_gen()             { return _old_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static ObjectStartArray* start_array() { return _start_array; }
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   114
  static OopTaskQueueSet* stack_array()  { return _stack_array; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static void initialize(ParMarkBitMap* mbm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Array of tasks.  Needed by the ParallelTaskTerminator.
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   120
  static RegionTaskQueueSet* region_array()      { return _region_array; }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11178
diff changeset
   121
  OverflowTaskQueue<oop, mtGC>*  marking_stack()       { return &_marking_stack; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Pushes onto the marking stack.  If the marking stack is full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // pushes onto the overflow stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void stack_push(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Do not implement an equivalent stack_pop.  Deal with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // marking stack and overflow stack directly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   129
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  Action action() { return _action; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  void set_action(Action v) { _action = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   133
  RegionTaskQueue* region_stack()                { return _region_stack; }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   134
  void set_region_stack(RegionTaskQueue* v)       { _region_stack = v; }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   135
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  inline static ParCompactionManager* manager_array(int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   138
  inline static RegionTaskQueue* region_list(int index) {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   139
    return _region_list[index];
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   140
  }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   141
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   142
  uint region_stack_index() { return _region_stack_index; }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   143
  void set_region_stack_index(uint v) { _region_stack_index = v; }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   144
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   145
  // Pop and push unique reusable stack index
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   146
  static int pop_recycled_stack_index();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   147
  static void push_recycled_stack_index(uint v);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   148
  static void reset_recycled_stack_index() {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   149
    _recycled_bottom = _recycled_top = -1;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   150
  }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   151
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  ParCompactionManager();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   153
  ~ParCompactionManager();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   155
  // Pushes onto the region stack at the given index.  If the
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   156
  // region stack is full,
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   157
  // pushes onto the region overflow stack.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   158
  static void region_list_push(uint stack_index, size_t region_index);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 7397
diff changeset
   159
  static void verify_region_list_empty(uint stack_index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  ParMarkBitMap* mark_bitmap() { return _mark_bitmap; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // void drain_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  bool should_update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  bool should_copy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   167
  // Save for later processing.  Must not fail.
30556
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   168
  inline void push(oop obj);
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   169
  inline void push_objarray(oop objarray, size_t index);
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   170
  inline void push_region(size_t index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
30556
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   172
  // Check mark and maybe push on marking stack.
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   173
  template <typename T> inline void mark_and_push(T* p);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   174
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   175
  inline void follow_klass(Klass* klass);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   176
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   177
  void follow_class_loader(ClassLoaderData* klass);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   178
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // Access function for compaction managers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  static ParCompactionManager* gc_thread_compaction_manager(int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
30566
18eb9aa972d0 8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents: 30563
diff changeset
   182
  static bool steal(int queue_num, int* seed, oop& t);
18eb9aa972d0 8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents: 30563
diff changeset
   183
  static bool steal_objarray(int queue_num, int* seed, ObjArrayTask& t);
18eb9aa972d0 8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents: 30563
diff changeset
   184
  static bool steal(int queue_num, int* seed, size_t& region);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   186
  // Process tasks remaining on any marking stack
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   187
  void follow_marking_stacks();
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   188
  inline bool marking_stacks_empty() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Process tasks remaining on any stack
1407
9006b01ba3fd 6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents: 1
diff changeset
   191
  void drain_region_stacks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
29792
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 13728
diff changeset
   193
  void follow_contents(oop obj);
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 13728
diff changeset
   194
  void follow_contents(objArrayOop array, int index);
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 13728
diff changeset
   195
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 13728
diff changeset
   196
  void update_contents(oop obj);
30556
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   197
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   198
  class MarkAndPushClosure: public ExtendedOopClosure {
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   199
   private:
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   200
    ParCompactionManager* _compaction_manager;
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   201
   public:
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   202
    MarkAndPushClosure(ParCompactionManager* cm) : _compaction_manager(cm) { }
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   203
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   204
    template <typename T> void do_oop_nv(T* p);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   205
    virtual void do_oop(oop* p);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   206
    virtual void do_oop(narrowOop* p);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   207
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   208
    // This closure provides its own oop verification code.
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   209
    debug_only(virtual bool should_verify_oops() { return false; })
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   210
  };
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   211
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   212
  class FollowStackClosure: public VoidClosure {
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   213
   private:
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   214
    ParCompactionManager* _compaction_manager;
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   215
   public:
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   216
    FollowStackClosure(ParCompactionManager* cm) : _compaction_manager(cm) { }
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   217
    virtual void do_void();
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   218
  };
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   219
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   220
  // The one and only place to start following the classes.
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   221
  // Should only be applied to the ClassLoaderData klasses list.
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   222
  class FollowKlassClosure : public KlassClosure {
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   223
   private:
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   224
    MarkAndPushClosure* _mark_and_push_closure;
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   225
   public:
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   226
    FollowKlassClosure(MarkAndPushClosure* mark_and_push_closure) :
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   227
        _mark_and_push_closure(mark_and_push_closure) { }
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   228
    void do_klass(Klass* klass);
750fee2bdb45 8078345: Move PSParallelCompact::mark_and_push to ParCompactionManager
stefank
parents: 29792
diff changeset
   229
  };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
inline ParCompactionManager* ParCompactionManager::manager_array(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  assert(_manager_array != NULL, "access of NULL manager_array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  assert(index >= 0 && index <= (int)ParallelGCThreads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    "out of range manager_array access");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  return _manager_array[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   238
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   239
bool ParCompactionManager::marking_stacks_empty() const {
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   240
  return _marking_stack.is_empty() && _objarray_stack.is_empty();
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 3795
diff changeset
   241
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
   242
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
   243
#endif // SHARE_VM_GC_PARALLEL_PSCOMPACTIONMANAGER_HPP