src/hotspot/share/gc/cms/parNewGeneration.hpp
author zgu
Fri, 03 Aug 2018 11:06:10 +0200
changeset 51292 0538a5cdb474
parent 50621 4216de02077e
child 52480 4c5d48f3bc84
permissions -rw-r--r--
8205921: Optimizing best-of-2 work stealing queue selection Summary: Bias towards stealing from queues that we recently successfully stole from to decrease the number of unsuccessful steal attempts. Reviewed-by: eosterlund, kbarrett Contributed-by: Zhengyu Gu <zgu@redhat.com>, Thomas Schatzl <thomas.schatzl@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
50071
758deedaae84 8202780: Remove EnqueueTask related code from ReferenceProcessor after JDK-8202017
tschatzl
parents: 50034
diff changeset
     2
 * Copyright (c) 2001, 2018, 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: 4574
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
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: 4574
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: 30586
diff changeset
    25
#ifndef SHARE_VM_GC_CMS_PARNEWGENERATION_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    26
#define SHARE_VM_GC_CMS_PARNEWGENERATION_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: 30586
diff changeset
    28
#include "gc/cms/parOopClosures.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    29
#include "gc/serial/defNewGeneration.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    30
#include "gc/shared/copyFailedInfo.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    31
#include "gc/shared/gcTrace.hpp"
50445
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50071
diff changeset
    32
#include "gc/shared/oopStorageParState.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    33
#include "gc/shared/plab.hpp"
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35492
diff changeset
    34
#include "gc/shared/preservedMarks.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    35
#include "gc/shared/taskqueue.hpp"
19285
0a3b3f115402 8022880: False sharing between PSPromotionManager instances
stefank
parents: 18025
diff changeset
    36
#include "memory/padded.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class ChunkArray;
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
    39
class CMSHeap;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class ParScanWithoutBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class ParScanWithBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class ParRootScanWithoutBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class ParRootScanWithBarrierTwoGensClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class ParEvacuateFollowersClosure;
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
    45
class StrongRootsScope;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// It would be better if these types could be kept local to the .cpp file,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// but they must be here to allow ParScanClosure::do_oop_work to be defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// in genOopClosures.inline.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5547
diff changeset
    51
typedef Padded<OopTaskQueue> ObjToScanQueue;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
    52
typedef GenericTaskQueueSet<ObjToScanQueue, mtGC> ObjToScanQueueSet;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class ParKeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    55
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  ParScanWeakRefClosure* _par_cl;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    57
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    58
  template <class T> void do_oop_work(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  ParKeepAliveClosure(ParScanWeakRefClosure* cl);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    61
  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
    62
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// The state needed by thread performing parallel young-gen collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
class ParScanThreadState {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  friend class ParScanThreadStateSet;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    68
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  ObjToScanQueue *_work_queue;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
    70
  Stack<oop, mtGC>* const _overflow_stack;
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35492
diff changeset
    71
  PreservedMarks* const _preserved_marks;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
    73
  PLAB _to_space_alloc_buffer;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  ParScanWithoutBarrierClosure         _to_space_closure; // scan_without_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  ParScanWithBarrierClosure            _old_gen_closure; // scan_with_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ParRootScanWithoutBarrierClosure     _to_space_root_closure; // scan_root_without_gc_barrier
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32378
diff changeset
    78
  // Will be passed to process_roots to set its generation.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  ParRootScanWithBarrierTwoGensClosure _older_gen_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // This closure will always be bound to the old gen; it will be used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // in evacuate_followers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  ParRootScanWithBarrierTwoGensClosure _old_gen_root_closure; // scan_old_root_with_gc_barrier
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  ParEvacuateFollowersClosure          _evacuate_followers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  DefNewGeneration::IsAliveClosure     _is_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  ParScanWeakRefClosure                _scan_weak_ref_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  ParKeepAliveClosure                  _keep_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  Space* _to_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  Space* to_space() { return _to_space; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
    91
  ParNewGeneration* _young_gen;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
    92
  ParNewGeneration* young_gen() const { return _young_gen; }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  Generation* _old_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  Generation* old_gen() { return _old_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  HeapWord *_young_old_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  int _thread_num;
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 32623
diff changeset
   100
  AgeTable _ageTable;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  bool _to_space_full;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   104
#if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   105
  size_t _term_attempts;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   106
  size_t _overflow_refills;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   107
  size_t _overflow_refill_objs;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   108
#endif // TASKQUEUE_STATS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 2362
diff changeset
   110
  // Stats for promotion failure
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   111
  PromotionFailedInfo _promotion_failed_info;
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 2362
diff changeset
   112
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Timing numbers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  double _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  double _start_strong_roots;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  double _strong_roots_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  double _start_term;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  double _term_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Helper for trim_queues. Scans subset of an array and makes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // remainder available for work stealing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void scan_partial_array_and_push_remainder(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // In support of CMS' parallel rescan of survivor space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  ChunkArray* _survivor_chunk_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  ChunkArray* survivor_chunk_array() { return _survivor_chunk_array; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  void record_survivor_plab(HeapWord* plab_start, size_t plab_word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ParScanThreadState(Space* to_space_, ParNewGeneration* gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                     Generation* old_gen_, int thread_num_,
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   132
                     ObjToScanQueueSet* work_queue_set_,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
   133
                     Stack<oop, mtGC>* overflow_stacks_,
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35492
diff changeset
   134
                     PreservedMarks* preserved_marks_,
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   135
                     size_t desired_plab_sz_,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                     ParallelTaskTerminator& term_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   138
 public:
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 32623
diff changeset
   139
  AgeTable* age_table() {return &_ageTable;}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  ObjToScanQueue* work_queue() { return _work_queue; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35492
diff changeset
   143
  PreservedMarks* preserved_marks() const { return _preserved_marks; }
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35492
diff changeset
   144
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
   145
  PLAB* to_space_alloc_buffer() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return &_to_space_alloc_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  ParEvacuateFollowersClosure&      evacuate_followers_closure() { return _evacuate_followers; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  DefNewGeneration::IsAliveClosure& is_alive_closure() { return _is_alive_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  ParScanWeakRefClosure&            scan_weak_ref_closure() { return _scan_weak_ref_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  ParKeepAliveClosure&              keep_alive_closure() { return _keep_alive_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  ParScanClosure&                   older_gen_closure() { return _older_gen_closure; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  ParRootScanWithoutBarrierClosure& to_space_root_closure() { return _to_space_root_closure; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Decrease queue size below "max_size".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  void trim_queues(int max_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   159
  // Private overflow stack usage
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
   160
  Stack<oop, mtGC>* overflow_stack() { return _overflow_stack; }
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   161
  bool take_from_overflow_stack();
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   162
  void push_on_overflow_stack(oop p);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   163
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Is new_obj a candidate for scan_partial_array_and_push_remainder method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  inline bool should_be_partially_scanned(oop new_obj, oop old_obj) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  int  thread_num() { return _thread_num; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Allocate a to-space block of size "sz", or else return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  HeapWord* alloc_in_to_space_slow(size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
32378
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 31632
diff changeset
   172
  inline HeapWord* alloc_in_to_space(size_t word_sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  HeapWord* young_old_boundary() { return _young_old_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void set_young_old_boundary(HeapWord *boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    _young_old_boundary = boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Undo the most recent allocation ("obj", of "word_sz").
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  void undo_alloc_in_to_space(HeapWord* obj, size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 2362
diff changeset
   183
  // Promotion failure stats
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   184
  void register_promotion_failure(size_t sz) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   185
    _promotion_failed_info.register_copy_failure(sz);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 2362
diff changeset
   186
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   187
  PromotionFailedInfo& promotion_failed_info() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   188
    return _promotion_failed_info;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   189
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   190
  bool promotion_failed() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   191
    return _promotion_failed_info.has_failed();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   192
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   193
  void print_promotion_failure_size();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 2362
diff changeset
   194
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   195
#if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   196
  TaskQueueStats & taskqueue_stats() const { return _work_queue->stats; }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   197
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   198
  size_t term_attempts() const             { return _term_attempts; }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   199
  size_t overflow_refills() const          { return _overflow_refills; }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   200
  size_t overflow_refill_objs() const      { return _overflow_refill_objs; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   202
  void note_term_attempt()                 { ++_term_attempts; }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   203
  void note_overflow_refill(size_t objs)   {
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   204
    ++_overflow_refills; _overflow_refill_objs += objs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   207
  void reset_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   208
#endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   209
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void start_strong_roots() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    _start_strong_roots = os::elapsedTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void end_strong_roots() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    _strong_roots_time += (os::elapsedTime() - _start_strong_roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   216
  double strong_roots_time() const { return _strong_roots_time; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void start_term_time() {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   218
    TASKQUEUE_STATS_ONLY(note_term_attempt());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    _start_term = os::elapsedTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  void end_term_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    _term_time += (os::elapsedTime() - _start_term);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   224
  double term_time() const { return _term_time; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   226
  double elapsed_time() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    return os::elapsedTime() - _start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
class ParNewGenTask: public AbstractGangTask {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   232
 private:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   233
  ParNewGeneration*            _young_gen;
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 28940
diff changeset
   234
  Generation*                  _old_gen;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   235
  HeapWord*                    _young_old_boundary;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  class ParScanThreadStateSet* _state_set;
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   237
  StrongRootsScope*            _strong_roots_scope;
50445
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50071
diff changeset
   238
  OopStorage::ParState<false, false> _par_state_string;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
public:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   241
  ParNewGenTask(ParNewGeneration*      young_gen,
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 28940
diff changeset
   242
                Generation*            old_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
                HeapWord*              young_old_boundary,
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   244
                ParScanThreadStateSet* state_set,
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   245
                StrongRootsScope*      strong_roots_scope);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  HeapWord* young_old_boundary() { return _young_old_boundary; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   249
  void work(uint worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
class KeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   253
 protected:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   254
  template <class T> void do_oop_work(T* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  KeepAliveClosure(ScanWeakRefClosure* cl);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   257
  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
   258
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 47622
diff changeset
   261
template <typename OopClosureType1, typename OopClosureType2>
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
class EvacuateFollowersClosureGeneral: public VoidClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   263
 private:
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   264
  CMSHeap* _heap;
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 47622
diff changeset
   265
  OopClosureType1* _scan_cur_or_nonheap;
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 47622
diff changeset
   266
  OopClosureType2* _scan_older;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   267
 public:
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   268
  EvacuateFollowersClosureGeneral(CMSHeap* heap,
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 47622
diff changeset
   269
                                  OopClosureType1* cur,
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 47622
diff changeset
   270
                                  OopClosureType2* older);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   271
  virtual void do_void();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// Closure for scanning ParNewGeneration.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// Same as ScanClosure, except does parallel GC barrier.
50621
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   276
class ScanClosureWithParBarrier: public OopsInClassLoaderDataOrGenClosure {
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   277
 private:
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   278
  ParNewGeneration* _g;
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   279
  HeapWord*         _boundary;
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   280
  bool              _gc_barrier;
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   281
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   282
  template <class T> void do_oop_work(T* p);
50621
4216de02077e 8204538: Split ScanClosure and ScanClosureWithParBarrier
stefank
parents: 50606
diff changeset
   283
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   284
 public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   286
  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
   287
  virtual void do_oop(narrowOop* p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
// Implements AbstractRefProcTaskExecutor for ParNew.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
class ParNewRefProcTaskExecutor: public AbstractRefProcTaskExecutor {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   292
 private:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   293
  ParNewGeneration&      _young_gen;
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   294
  Generation&            _old_gen;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   295
  ParScanThreadStateSet& _state_set;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   296
 public:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   297
  ParNewRefProcTaskExecutor(ParNewGeneration& young_gen,
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   298
                            Generation& old_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                            ParScanThreadStateSet& state_set)
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   300
    : _young_gen(young_gen), _old_gen(old_gen), _state_set(state_set)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Executes a task using worker threads.
50606
8f1d5d706bdd 8043575: Dynamically parallelize reference processing work
tschatzl
parents: 50445
diff changeset
   304
  virtual void execute(ProcessTask& task, uint ergo_workers);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // Switch to single threaded mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  virtual void set_single_threaded_mode();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// A Generation that does parallel young-gen collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
class ParNewGeneration: public DefNewGeneration {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  friend class ParNewGenTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  friend class ParNewRefProcTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  friend class ParNewRefProcTaskExecutor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  friend class ParScanThreadStateSet;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   317
  friend class ParEvacuateFollowersClosure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   319
 private:
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   320
  // The per-worker-thread work queues
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  ObjToScanQueueSet* _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   323
  // Per-worker-thread local overflow stacks
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
   324
  Stack<oop, mtGC>* _overflow_stacks;
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   325
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Desired size of survivor space plab's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  PLABStats _plab_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // A list of from-space images of to-be-scanned objects, threaded through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // klass-pointers (klass information already copied to the forwarded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // image.)  Manipulated with CAS.
41317
ba006b931e27 8165857: CMS _overflow_list is missing volatile specifiers.
eosterlund
parents: 36202
diff changeset
   332
  oopDesc* volatile _overflow_list;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   333
  NOT_PRODUCT(ssize_t _num_par_pushes;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // This closure is used by the reference processor to filter out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // references to live referent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  DefNewGeneration::IsAliveClosure _is_alive_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   339
  // GC tracer that should be used during collection.
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   340
  ParNewTracer _gc_tracer;
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   341
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  static oop real_forwardee_slow(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  static void waste_some_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   345
  void handle_promotion_failed(CMSHeap* gch, ParScanThreadStateSet& thread_state_set);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   346
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  bool _survivor_overflow;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  bool survivor_overflow() { return _survivor_overflow; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  void set_survivor_overflow(bool v) { _survivor_overflow = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   354
  void restore_preserved_marks();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47216
diff changeset
   355
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   356
 public:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 30881
diff changeset
   357
  ParNewGeneration(ReservedSpace rs, size_t initial_byte_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  ~ParNewGeneration() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    for (uint i = 0; i < ParallelGCThreads; i++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
        delete _task_queues->queue(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    delete _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  virtual void ref_processor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  virtual Generation::Name kind()        { return Generation::ParNew; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  virtual const char* name() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  virtual const char* short_name() const { return "ParNew"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  virtual bool refs_discovery_is_mt()     const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    return ParallelGCThreads > 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // Make the collection virtual.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  virtual void collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
                       bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                       size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
                       bool   is_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // This needs to be visible to the closure function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // "obj" is the object to be copied, "m" is a recent value of its mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // that must not contain a forwarding pointer (though one might be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // inserted in "obj"s mark word by a parallel thread).
27899
17754211a7ab 8066133: Fix missing reivew changes for JDK-8065972
brutisso
parents: 27898
diff changeset
   386
  oop copy_to_survivor_space(ParScanThreadState* par_scan_state,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
                             oop obj, size_t obj_sz, markOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   389
  // in support of testing overflow code
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   390
  NOT_PRODUCT(int _overflow_counter;)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   391
  NOT_PRODUCT(bool should_simulate_overflow();)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   392
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   393
  // Accessor for overflow list
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   394
  oop overflow_list() { return _overflow_list; }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   395
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Push the given (from-space) object on the global overflow list.
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 670
diff changeset
   397
  void push_on_overflow_list(oop from_space_obj, ParScanThreadState* par_scan_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // If the global overflow list is non-empty, move some tasks from it
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   400
  // onto "work_q" (which need not be empty).  No more than 1/4 of the
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   401
  // available space on "work_q" is used.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  bool take_from_overflow_list(ParScanThreadState* par_scan_state);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   403
  bool take_from_overflow_list_work(ParScanThreadState* par_scan_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // The task queues to be used by parallel GC threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  ObjToScanQueueSet* task_queues() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    return _task_queues;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  PLABStats* plab_stats() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    return &_plab_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
31632
d041b34dd3e7 8079555: REDO - Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 31358
diff changeset
   414
  size_t desired_plab_sz();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   416
  const ParNewTracer* gc_tracer() const {
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   417
    return &_gc_tracer;
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   418
  }
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 27899
diff changeset
   419
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  static oop real_forwardee(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
   422
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
   423
#endif // SHARE_VM_GC_CMS_PARNEWGENERATION_HPP