src/hotspot/share/gc/parallel/psPromotionManager.hpp
author lkorinth
Wed, 13 Nov 2019 11:37:29 +0100
changeset 59053 ba6c248cae19
parent 57777 90ead0febf56
permissions -rw-r--r--
8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector Reviewed-by: kbarrett, tschatzl, erikj, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51292
diff changeset
     2
 * Copyright (c) 2002, 2019, 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: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
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: 670
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51292
diff changeset
    25
#ifndef SHARE_GC_PARALLEL_PSPROMOTIONMANAGER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51292
diff changeset
    26
#define SHARE_GC_PARALLEL_PSPROMOTIONMANAGER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    28
#include "gc/parallel/psPromotionLAB.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    29
#include "gc/shared/copyFailedInfo.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    30
#include "gc/shared/gcTrace.hpp"
37045
41e3f98fa3dc 8146991: Introduce per-worker preserved mark stacks in ParallelGC
tonyp
parents: 35061
diff changeset
    31
#include "gc/shared/preservedMarks.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30566
diff changeset
    32
#include "gc/shared/taskqueue.hpp"
19285
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    33
#include "memory/padded.hpp"
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    34
#include "utilities/globalDefinitions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// psPromotionManager is used by a single thread to manage object survival
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// during a scavenge. The promotion manager contains thread local data only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13195
diff changeset
    40
// NOTE! Be careful when allocating the stacks on cheap. If you are going
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// to use a promotion manager in more than one thread, the stacks MUST be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// on cheap. This can lead to memory leaks, though, as they are not auto
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// deallocated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// FIX ME FIX ME Add a destructor, and don't rely on the user to drain/flush/deallocate!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class MutableSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class ParCompactionManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
49392
2956d0ece7a9 8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents: 47216
diff changeset
    52
class PSPromotionManager {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  friend class PSScavenge;
57771
50c959cc40e8 8224663: Parallel GC: Use WorkGang (5: ScavengeRootsTask)
lkorinth
parents: 53244
diff changeset
    54
  friend class ScavengeRootsTask;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  friend class PSRefProcTaskExecutor;
57772
2410b04f074f 8224664: Parallel GC: Use WorkGang (6: PSRefProcTaskProxy)
lkorinth
parents: 57771
diff changeset
    56
  friend class PSRefProcTask;
2410b04f074f 8224664: Parallel GC: Use WorkGang (6: PSRefProcTaskProxy)
lkorinth
parents: 57771
diff changeset
    57
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
 private:
19285
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    59
  static PaddedEnd<PSPromotionManager>* _manager_array;
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    60
  static OopStarTaskQueueSet*           _stack_array_depth;
37045
41e3f98fa3dc 8146991: Introduce per-worker preserved mark stacks in ParallelGC
tonyp
parents: 35061
diff changeset
    61
  static PreservedMarksSet*             _preserved_marks_set;
19285
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    62
  static PSOldGen*                      _old_gen;
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    63
  static MutableSpace*                  _young_space;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    65
#if TASKQUEUE_STATS
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    66
  size_t                              _masked_pushes;
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    67
  size_t                              _masked_steals;
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    68
  size_t                              _arrays_chunked;
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    69
  size_t                              _array_chunks_processed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
27154
ccf8883e01be 8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents: 20282
diff changeset
    71
  void print_local_stats(outputStream* const out, uint i) const;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 31330
diff changeset
    72
  static void print_taskqueue_stats();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    74
  void reset_stats();
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    75
#endif // TASKQUEUE_STATS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  PSYoungPromotionLAB                 _young_lab;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  PSOldPromotionLAB                   _old_lab;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  bool                                _young_gen_is_full;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  bool                                _old_gen_is_full;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  OopStarTaskQueue                    _claimed_stack_depth;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11753
diff changeset
    83
  OverflowTaskQueue<oop, mtGC>        _claimed_stack_breadth;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  bool                                _totally_drain;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  uint                                _target_stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  uint                                _array_chunk_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  uint                                _min_array_size_for_chunking;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
37045
41e3f98fa3dc 8146991: Introduce per-worker preserved mark stacks in ParallelGC
tonyp
parents: 35061
diff changeset
    91
  PreservedMarks*                     _preserved_marks;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13195
diff changeset
    92
  PromotionFailedInfo                 _promotion_failed_info;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13195
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Accessors
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    95
  static PSOldGen* old_gen()         { return _old_gen; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    96
  static MutableSpace* young_space() { return _young_space; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30764
diff changeset
    98
  inline static PSPromotionManager* manager_array(uint index);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    99
  template <class T> inline void claim_or_forward_internal_depth(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // On the task queues we push reference locations as well as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // partially-scanned arrays (in the latter case, we push an oop to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // the from-space image of the array and the length on the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // from-space image indicates how many entries on the array we still
59053
ba6c248cae19 8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector
lkorinth
parents: 57777
diff changeset
   105
  // need to scan. To be able to distinguish between reference
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // locations and partially-scanned array oops we simply mask the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // latter oops with 0x01. The next three methods do the masking,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // unmasking, and checking whether the oop is masked or not. Notice
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // that the signature of the mask and unmask methods looks a bit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // strange, as they accept and return different types (oop and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // oop*). This is because of the difference in types between what
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // the task queue holds (oop*) and oops to partially-scanned arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // (oop). We do all the necessary casting in the mask / unmask
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // methods to avoid sprinkling the rest of the code with more casts.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   116
  // These are added to the taskqueue so PS_CHUNKED_ARRAY_OOP_MASK (or any
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   117
  // future masks) can't conflict with COMPRESSED_OOP_MASK
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   118
#define PS_CHUNKED_ARRAY_OOP_MASK  0x2
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   119
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   120
  bool is_oop_masked(StarTask p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   121
    // If something is marked chunked it's always treated like wide oop*
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   122
    return (((intptr_t)(oop*)p) & PS_CHUNKED_ARRAY_OOP_MASK) ==
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   123
                                  PS_CHUNKED_ARRAY_OOP_MASK;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  oop* mask_chunked_array_oop(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    assert(!is_oop_masked((oop*) obj), "invariant");
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19285
diff changeset
   128
    oop* ret = (oop*) (cast_from_oop<uintptr_t>(obj) | PS_CHUNKED_ARRAY_OOP_MASK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    assert(is_oop_masked(ret), "invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   133
  oop unmask_chunked_array_oop(StarTask p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    assert(is_oop_masked(p), "invariant");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   135
    assert(!p.is_narrow(), "chunked array oops cannot be narrow");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   136
    oop *chunk = (oop*)p;  // cast p to oop (uses conversion operator)
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   137
    oop ret = oop((oop*)((uintptr_t)chunk & ~PS_CHUNKED_ARRAY_OOP_MASK));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    assert(!is_oop_masked((oop*) ret), "invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    return ret;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   142
  template <class T> void  process_array_chunk_work(oop obj,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   143
                                                    int start, int end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  void process_array_chunk(oop old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
30566
18eb9aa972d0 8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents: 30563
diff changeset
   146
  template <class T> void push_depth(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
28177
318600b0d7db 8066442: Add PS and ParOld support for promotion event
sfriberg
parents: 27154
diff changeset
   148
  inline void promotion_trace_event(oop new_obj, oop old_obj, size_t obj_size,
318600b0d7db 8066442: Add PS and ParOld support for promotion event
sfriberg
parents: 27154
diff changeset
   149
                                    uint age, bool tenured,
318600b0d7db 8066442: Add PS and ParOld support for promotion event
sfriberg
parents: 27154
diff changeset
   150
                                    const PSPromotionLAB* lab);
318600b0d7db 8066442: Add PS and ParOld support for promotion event
sfriberg
parents: 27154
diff changeset
   151
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
 protected:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   153
  static OopStarTaskQueueSet* stack_array_depth()   { return _stack_array_depth; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Static
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  static void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  static void pre_scavenge();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 13195
diff changeset
   159
  static bool post_scavenge(YoungGCTracer& gc_tracer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30764
diff changeset
   161
  static PSPromotionManager* gc_thread_promotion_manager(uint index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  static PSPromotionManager* vm_thread_promotion_manager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 49392
diff changeset
   164
  static bool steal_depth(int queue_num, StarTask& t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  PSPromotionManager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  OopStarTaskQueue* claimed_stack_depth() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    return &_claimed_stack_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  bool young_gen_is_full()             { return _young_gen_is_full; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  bool old_gen_is_full()               { return _old_gen_is_full; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void set_old_gen_is_full(bool state) { _old_gen_is_full = state; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Promotion methods
11753
c9e420473a11 7144296: PS: Optimize nmethods processing
iveresov
parents: 7397
diff changeset
   179
  template<bool promote_immediately> oop copy_to_survivor_space(oop o);
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57772
diff changeset
   180
  oop oop_promotion_failed(oop obj, markWord obj_mark);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void reset();
37045
41e3f98fa3dc 8146991: Introduce per-worker preserved mark stacks in ParallelGC
tonyp
parents: 35061
diff changeset
   183
  void register_preserved_marks(PreservedMarks* preserved_marks);
38080
bb02a3ad3b0a 8154153: PS: Restore preserved marks in parallel
tonyp
parents: 37045
diff changeset
   184
  static void restore_preserved_marks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void flush_labs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void drain_stacks(bool totally_drain) {
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 6067
diff changeset
   188
    drain_stacks_depth(totally_drain);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   190
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  void drain_stacks_cond_depth() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    if (claimed_stack_depth()->size() > _target_stack_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
      drain_stacks_depth(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void drain_stacks_depth(bool totally_drain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  bool stacks_empty() {
6248
2e661807cef0 6962589: remove breadth first scanning code from parallel gc
tonyp
parents: 6067
diff changeset
   199
    return claimed_stack_depth()->is_empty();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   202
  inline void process_popped_location_depth(StarTask p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
29208
b570d043f295 8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents: 28177
diff changeset
   204
  static bool should_scavenge(oop* p, bool check_to_space = false);
b570d043f295 8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents: 28177
diff changeset
   205
  static bool should_scavenge(narrowOop* p, bool check_to_space = false);
b570d043f295 8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents: 28177
diff changeset
   206
b570d043f295 8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents: 28177
diff changeset
   207
  template <class T, bool promote_immediately>
b570d043f295 8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents: 28177
diff changeset
   208
  void copy_and_push_safe_barrier(T* p);
b570d043f295 8073543: Circular include dependency between psScavenge.inline.hpp and psPromotionManager.inline.hpp
stefank
parents: 28177
diff changeset
   209
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   210
  template <class T> inline void claim_or_forward_depth(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   212
  TASKQUEUE_STATS_ONLY(inline void record_steal(StarTask& p);)
29792
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 29208
diff changeset
   213
8c6fa07f0869 8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents: 29208
diff changeset
   214
  void push_contents(oop obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6248
diff changeset
   216
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51292
diff changeset
   217
#endif // SHARE_GC_PARALLEL_PSPROMOTIONMANAGER_HPP