src/hotspot/share/gc/cms/parNewGeneration.cpp
author tschatzl
Wed, 09 May 2018 13:37:05 +0200
changeset 50071 758deedaae84
parent 50049 9d17c375dc30
child 50396 7f48bff40a9a
permissions -rw-r--r--
8202780: Remove EnqueueTask related code from ReferenceProcessor after JDK-8202017 Summary: Remove code obsoleted by JDK-8202017 Reviewed-by: kbarrett, sangheki
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49722
a47d1e21b3f1 8199735: Mark word updates need to use Access API
rkennke
parents: 49592
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: 5343
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
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: 5343
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    25
#include "precompiled.hpp"
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
    26
#include "gc/cms/cmsHeap.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    27
#include "gc/cms/compactibleFreeListSpace.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    28
#include "gc/cms/concurrentMarkSweepGeneration.hpp"
32378
8dd0e7359751 8133470: Uses of Atomic methods in plab.hpp should be moved to .inline.hpp file
tschatzl
parents: 32360
diff changeset
    29
#include "gc/cms/parNewGeneration.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    30
#include "gc/cms/parOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    31
#include "gc/serial/defNewGeneration.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    32
#include "gc/shared/adaptiveSizePolicy.hpp"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    33
#include "gc/shared/ageTable.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    34
#include "gc/shared/copyFailedInfo.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    35
#include "gc/shared/gcHeapSummary.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    36
#include "gc/shared/gcTimer.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    37
#include "gc/shared/gcTrace.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
    38
#include "gc/shared/gcTraceTime.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    39
#include "gc/shared/genOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    40
#include "gc/shared/generation.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    41
#include "gc/shared/plab.inline.hpp"
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
    42
#include "gc/shared/preservedMarks.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    43
#include "gc/shared/referencePolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    44
#include "gc/shared/space.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    45
#include "gc/shared/spaceDecorator.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    46
#include "gc/shared/strongRootsScope.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    47
#include "gc/shared/taskqueue.inline.hpp"
47648
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47634
diff changeset
    48
#include "gc/shared/weakProcessor.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30586
diff changeset
    49
#include "gc/shared/workgroup.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
    50
#include "logging/log.hpp"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 41682
diff changeset
    51
#include "logging/logStream.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    52
#include "memory/resourceArea.hpp"
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
    53
#include "oops/access.inline.hpp"
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
    54
#include "oops/compressedOops.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    55
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    56
#include "oops/oop.inline.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 40096
diff changeset
    57
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    58
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    59
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    60
#include "runtime/java.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 22882
diff changeset
    61
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    62
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    63
#include "utilities/globalDefinitions.hpp"
30175
543725014c9d 8076457: Fix includes of inline.hpp in GC code
stefank
parents: 30173
diff changeset
    64
#include "utilities/stack.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
ParScanThreadState::ParScanThreadState(Space* to_space_,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
    67
                                       ParNewGeneration* young_gen_,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                       Generation* old_gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                       int thread_num_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                       ObjToScanQueueSet* work_queue_set_,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
    71
                                       Stack<oop, mtGC>* overflow_stacks_,
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
    72
                                       PreservedMarks* preserved_marks_,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                       size_t desired_plab_sz_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                       ParallelTaskTerminator& term_) :
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    75
  _to_space(to_space_),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    76
  _old_gen(old_gen_),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    77
  _young_gen(young_gen_),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    78
  _thread_num(thread_num_),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    79
  _work_queue(work_queue_set_->queue(thread_num_)),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    80
  _to_space_full(false),
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
    81
  _overflow_stack(overflow_stacks_ ? overflow_stacks_ + thread_num_ : NULL),
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
    82
  _preserved_marks(preserved_marks_),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  _ageTable(false), // false ==> not the global age table, no perf data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _to_space_alloc_buffer(desired_plab_sz_),
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    85
  _to_space_closure(young_gen_, this),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    86
  _old_gen_closure(young_gen_, this),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    87
  _to_space_root_closure(young_gen_, this),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    88
  _old_gen_root_closure(young_gen_, this),
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
    89
  _older_gen_closure(young_gen_, this),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  _evacuate_followers(this, &_to_space_closure, &_old_gen_closure,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
    91
                      &_to_space_root_closure, young_gen_, &_old_gen_root_closure,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                      work_queue_set_, &term_),
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    93
  _is_alive_closure(young_gen_),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    94
  _scan_weak_ref_closure(young_gen_, this),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  _keep_alive_closure(&_scan_weak_ref_closure),
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    96
  _strong_roots_time(0.0),
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
    97
  _term_time(0.0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
{
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    99
  #if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   100
  _term_attempts = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   101
  _overflow_refills = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   102
  _overflow_refill_objs = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   103
  #endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   104
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   105
  _survivor_chunk_array = (ChunkArray*) old_gen()->get_data_recorder(thread_num());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  _hash_seed = 17;  // Might want to take time-based random value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  _start = os::elapsedTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  _old_gen_closure.set_generation(old_gen_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  _old_gen_root_closure.set_generation(old_gen_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void ParScanThreadState::record_survivor_plab(HeapWord* plab_start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                                              size_t plab_word_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  ChunkArray* sca = survivor_chunk_array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  if (sca != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // A non-null SCA implies that we want the PLAB data recorded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    sca->record_sample(plab_start, plab_word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
bool ParScanThreadState::should_be_partially_scanned(oop new_obj, oop old_obj) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return new_obj->is_objArray() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
         arrayOop(new_obj)->length() > ParGCArrayScanChunk &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
         new_obj != old_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
void ParScanThreadState::scan_partial_array_and_push_remainder(oop old) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  assert(old->is_objArray(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(old->is_forwarded(), "must be forwarded");
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   130
  assert(CMSHeap::heap()->is_in_reserved(old), "must be in heap.");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   131
  assert(!old_gen()->is_in(old), "must be in young generation.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  objArrayOop obj = objArrayOop(old->forwardee());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Process ParGCArrayScanChunk elements now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // and push the remainder back onto queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  int start     = arrayOop(old)->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int end       = obj->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  int remainder = end - start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  assert(start <= end, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  if (remainder > 2 * ParGCArrayScanChunk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // Test above combines last partial chunk with a full chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    end = start + ParGCArrayScanChunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    arrayOop(old)->set_length(end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    // Push remainder.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    bool ok = work_queue()->push(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    assert(ok, "just popped, push must be okay");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    // Restore length so that it can be used if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // is a promotion failure and forwarding pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    // must be removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    arrayOop(old)->set_length(end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   153
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // process our set of indices (include header in first chunk)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   155
  // should make sure end is even (aligned to HeapWord in case of compressed oops)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  if ((HeapWord *)obj < young_old_boundary()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    // object is in to_space
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   158
    obj->oop_iterate_range(&_to_space_closure, start, end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // object is in old generation
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   161
    obj->oop_iterate_range(&_old_gen_closure, start, end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
void ParScanThreadState::trim_queues(int max_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  ObjToScanQueue* queue = work_queue();
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   167
  do {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   168
    while (queue->size() > (juint)max_size) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   169
      oop obj_to_scan;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   170
      if (queue->pop_local(obj_to_scan)) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   171
        if ((HeapWord *)obj_to_scan < young_old_boundary()) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   172
          if (obj_to_scan->is_objArray() &&
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   173
              obj_to_scan->is_forwarded() &&
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   174
              obj_to_scan->forwardee() != obj_to_scan) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   175
            scan_partial_array_and_push_remainder(obj_to_scan);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   176
          } else {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   177
            // object is in to_space
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   178
            obj_to_scan->oop_iterate(&_to_space_closure);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   179
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
        } else {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   181
          // object is in old generation
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   182
          obj_to_scan->oop_iterate(&_old_gen_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    }
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   186
    // For the  case of compressed oops, we have a private, non-shared
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   187
    // overflow stack, so we eagerly drain it so as to more evenly
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   188
    // distribute load early. Note: this may be good to do in
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   189
    // general rather than delay for the final stealing phase.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   190
    // If applicable, we'll transfer a set of objects over to our
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   191
    // work queue, allowing them to be stolen and draining our
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   192
    // private overflow stack.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   193
  } while (ParGCTrimOverflow && young_gen()->take_from_overflow_list(this));
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   194
}
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   195
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   196
bool ParScanThreadState::take_from_overflow_stack() {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   197
  assert(ParGCUseLocalOverflow, "Else should not call");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   198
  assert(young_gen()->overflow_list() == NULL, "Error");
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   199
  ObjToScanQueue* queue = work_queue();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   200
  Stack<oop, mtGC>* const of_stack = overflow_stack();
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   201
  const size_t num_overflow_elems = of_stack->size();
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   202
  const size_t space_available = queue->max_elems() - queue->size();
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   203
  const size_t num_take_elems = MIN3(space_available / 4,
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   204
                                     ParGCDesiredObjsFromOverflowList,
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   205
                                     num_overflow_elems);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   206
  // Transfer the most recent num_take_elems from the overflow
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   207
  // stack to our work queue.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   208
  for (size_t i = 0; i != num_take_elems; i++) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   209
    oop cur = of_stack->pop();
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   210
    oop obj_to_push = cur->forwardee();
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   211
    assert(CMSHeap::heap()->is_in_reserved(cur), "Should be in heap");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   212
    assert(!old_gen()->is_in_reserved(cur), "Should be in young gen");
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   213
    assert(CMSHeap::heap()->is_in_reserved(obj_to_push), "Should be in heap");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   214
    if (should_be_partially_scanned(obj_to_push, cur)) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   215
      assert(arrayOop(cur)->length() == 0, "entire array remaining to be scanned");
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   216
      obj_to_push = cur;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   217
    }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   218
    bool ok = queue->push(obj_to_push);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   219
    assert(ok, "Should have succeeded");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   221
  assert(young_gen()->overflow_list() == NULL, "Error");
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   222
  return num_take_elems > 0;  // was something transferred?
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   223
}
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   224
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   225
void ParScanThreadState::push_on_overflow_stack(oop p) {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   226
  assert(ParGCUseLocalOverflow, "Else should not call");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   227
  overflow_stack()->push(p);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   228
  assert(young_gen()->overflow_list() == NULL, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
HeapWord* ParScanThreadState::alloc_in_to_space_slow(size_t word_sz) {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   232
  // If the object is small enough, try to reallocate the buffer.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  HeapWord* obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  if (!_to_space_full) {
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
   235
    PLAB* const plab = to_space_alloc_buffer();
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   236
    Space* const sp  = to_space();
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   237
    if (word_sz * 100 < ParallelGCBufferWastePct * plab->word_sz()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      // Is small enough; abandon this buffer and start a new one.
29327
b539902e30f8 8073466: Remove buffer retaining functionality and clean up in ParGCAllocBuffer
tschatzl
parents: 28940
diff changeset
   239
      plab->retire();
37192
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   240
      // The minimum size has to be twice SurvivorAlignmentInBytes to
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   241
      // allow for padding used in the alignment of 1 word.  A padding
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   242
      // of 1 is too small for a filler word so the padding size will
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   243
      // be increased by SurvivorAlignmentInBytes.
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   244
      size_t min_usable_size = 2 * static_cast<size_t>(SurvivorAlignmentInBytes >> LogHeapWordSize);
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   245
      size_t buf_size = MAX2(plab->word_sz(), min_usable_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      HeapWord* buf_space = sp->par_allocate(buf_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      if (buf_space == NULL) {
37192
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   248
        const size_t min_bytes = MAX2(PLAB::min_size(), min_usable_size) << LogHeapWordSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
        size_t free_bytes = sp->free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        while(buf_space == NULL && free_bytes >= min_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
          buf_size = free_bytes >> LogHeapWordSize;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   252
          assert(buf_size == (size_t)align_object_size(buf_size), "Invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
          buf_space  = sp->par_allocate(buf_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
          free_bytes = sp->free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      if (buf_space != NULL) {
32383
bc9971c6bf2b 8067339: PLAB reallocation might result in failure to allocate object in that recently allocated PLAB
tschatzl
parents: 32378
diff changeset
   258
        plab->set_buf(buf_space, buf_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
        record_survivor_plab(buf_space, buf_size);
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25492
diff changeset
   260
        obj = plab->allocate_aligned(word_sz, SurvivorAlignmentInBytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
        // Note that we cannot compare buf_size < word_sz below
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
   262
        // because of AlignmentReserve (see PLAB::allocate()).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
        assert(obj != NULL || plab->words_remaining() < word_sz,
37192
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   264
               "Else should have been able to allocate requested object size "
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   265
               SIZE_FORMAT ", PLAB size " SIZE_FORMAT ", SurvivorAlignmentInBytes "
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   266
               SIZE_FORMAT ", words_remaining " SIZE_FORMAT,
427945788462 8060463: ParNew: SurvivorAlignmentInBytes greater then YoungPLABSize cause assert(obj != NULL || plab->words_remaining() < word_sz) failed: Else should have been able to allocate
jmasa
parents: 37146
diff changeset
   267
               word_sz, buf_size, SurvivorAlignmentInBytes, plab->words_remaining());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
        // It's conceivable that we may be able to use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
        // buffer we just grabbed for subsequent small requests
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
        // even if not for this one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
        // We're used up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
        _to_space_full = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      // Too large; allocate the object individually.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      obj = sp->par_allocate(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
30564
a37d98a1eb54 8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents: 30275
diff changeset
   283
void ParScanThreadState::undo_alloc_in_to_space(HeapWord* obj, size_t word_sz) {
a37d98a1eb54 8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents: 30275
diff changeset
   284
  to_space_alloc_buffer()->undo_allocation(obj, word_sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   287
void ParScanThreadState::print_promotion_failure_size() {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   288
  if (_promotion_failed_info.has_failed()) {
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   289
    log_trace(gc, promotion)(" (%d: promotion failure size = " SIZE_FORMAT ") ",
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   290
                             _thread_num, _promotion_failed_info.first_size());
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   291
  }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   292
}
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   293
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   294
class ParScanThreadStateSet: StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // Initializes states for the specified number of threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  ParScanThreadStateSet(int                     num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
                        Space&                  to_space,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   299
                        ParNewGeneration&       young_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                        Generation&             old_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
                        ObjToScanQueueSet&      queue_set,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   302
                        Stack<oop, mtGC>*       overflow_stacks_,
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   303
                        PreservedMarksSet&      preserved_marks_set,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
                        size_t                  desired_plab_sz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
                        ParallelTaskTerminator& term);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   306
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   307
  ~ParScanThreadStateSet() { TASKQUEUE_STATS_ONLY(reset_stats()); }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   308
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   309
  inline ParScanThreadState& thread_state(int i);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   310
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   311
  void trace_promotion_failed(const YoungGCTracer* gc_tracer);
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30572
diff changeset
   312
  void reset(uint active_workers, bool promotion_failed);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  void flush();
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   314
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   315
  #if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   316
  static void
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   317
    print_termination_stats_hdr(outputStream* const st);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   318
  void print_termination_stats();
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   319
  static void
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   320
    print_taskqueue_stats_hdr(outputStream* const st);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   321
  void print_taskqueue_stats();
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   322
  void reset_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   323
  #endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   324
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  ParallelTaskTerminator& _term;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   327
  ParNewGeneration&       _young_gen;
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   328
  Generation&             _old_gen;
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   329
  ParScanThreadState*     _per_thread_states;
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   330
  const int               _num_threads;
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   331
 public:
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   332
  bool is_valid(int id) const { return id < _num_threads; }
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   333
  ParallelTaskTerminator* terminator() { return &_term; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   336
ParScanThreadStateSet::ParScanThreadStateSet(int num_threads,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   337
                                             Space& to_space,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   338
                                             ParNewGeneration& young_gen,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   339
                                             Generation& old_gen,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   340
                                             ObjToScanQueueSet& queue_set,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   341
                                             Stack<oop, mtGC>* overflow_stacks,
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   342
                                             PreservedMarksSet& preserved_marks_set,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   343
                                             size_t desired_plab_sz,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   344
                                             ParallelTaskTerminator& term)
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   345
  : _young_gen(young_gen),
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   346
    _old_gen(old_gen),
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   347
    _term(term),
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   348
    _per_thread_states(NEW_RESOURCE_ARRAY(ParScanThreadState, num_threads)),
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   349
    _num_threads(num_threads)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  assert(num_threads > 0, "sanity check!");
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   352
  assert(ParGCUseLocalOverflow == (overflow_stacks != NULL),
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   353
         "overflow_stack allocation mismatch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Initialize states.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  for (int i = 0; i < num_threads; ++i) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   356
    new(_per_thread_states + i)
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   357
      ParScanThreadState(&to_space, &young_gen, &old_gen, i, &queue_set,
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   358
                         overflow_stacks, preserved_marks_set.get(i),
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   359
                         desired_plab_sz, term);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   363
inline ParScanThreadState& ParScanThreadStateSet::thread_state(int i) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   364
  assert(i >= 0 && i < _num_threads, "sanity check!");
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   365
  return _per_thread_states[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   368
void ParScanThreadStateSet::trace_promotion_failed(const YoungGCTracer* gc_tracer) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   369
  for (int i = 0; i < _num_threads; ++i) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   370
    if (thread_state(i).promotion_failed()) {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   371
      gc_tracer->report_promotion_failed(thread_state(i).promotion_failed_info());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   372
      thread_state(i).promotion_failed_info().reset();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   373
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   374
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   375
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   377
void ParScanThreadStateSet::reset(uint active_threads, bool promotion_failed) {
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   378
  _term.reset_for_reuse(active_threads);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   379
  if (promotion_failed) {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   380
    for (int i = 0; i < _num_threads; ++i) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   381
      thread_state(i).print_promotion_failure_size();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   382
    }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   383
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   386
#if TASKQUEUE_STATS
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   387
void ParScanThreadState::reset_stats() {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   388
  taskqueue_stats().reset();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   389
  _term_attempts = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   390
  _overflow_refills = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   391
  _overflow_refill_objs = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   392
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   393
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   394
void ParScanThreadStateSet::reset_stats() {
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   395
  for (int i = 0; i < _num_threads; ++i) {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   396
    thread_state(i).reset_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   397
  }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   398
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   399
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   400
void ParScanThreadStateSet::print_termination_stats_hdr(outputStream* const st) {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   401
  st->print_raw_cr("GC Termination Stats");
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   402
  st->print_raw_cr("     elapsed  --strong roots-- -------termination-------");
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   403
  st->print_raw_cr("thr     ms        ms       %       ms       %   attempts");
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   404
  st->print_raw_cr("--- --------- --------- ------ --------- ------ --------");
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   405
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   406
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   407
void ParScanThreadStateSet::print_termination_stats() {
37242
91e5f98fff6f 8152632: Rename LogHandle(...) to Log(...)
stefank
parents: 37192
diff changeset
   408
  Log(gc, task, stats) log;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   409
  if (!log.is_debug()) {
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   410
    return;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   411
  }
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   412
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   413
  ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 41682
diff changeset
   414
  LogStream ls(log.debug());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 41682
diff changeset
   415
  outputStream* st = &ls;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   416
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   417
  print_termination_stats_hdr(st);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   418
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   419
  for (int i = 0; i < _num_threads; ++i) {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   420
    const ParScanThreadState & pss = thread_state(i);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   421
    const double elapsed_ms = pss.elapsed_time() * 1000.0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   422
    const double s_roots_ms = pss.strong_roots_time() * 1000.0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   423
    const double term_ms = pss.term_time() * 1000.0;
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   424
    st->print_cr("%3d %9.2f %9.2f %6.2f %9.2f %6.2f " SIZE_FORMAT_W(8),
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   425
                 i, elapsed_ms, s_roots_ms, s_roots_ms * 100 / elapsed_ms,
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   426
                 term_ms, term_ms * 100 / elapsed_ms, pss.term_attempts());
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   427
  }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   428
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   429
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   430
// Print stats related to work queue activity.
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   431
void ParScanThreadStateSet::print_taskqueue_stats_hdr(outputStream* const st) {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   432
  st->print_raw_cr("GC Task Stats");
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   433
  st->print_raw("thr "); TaskQueueStats::print_header(1, st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   434
  st->print_raw("--- "); TaskQueueStats::print_header(2, st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   435
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   436
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   437
void ParScanThreadStateSet::print_taskqueue_stats() {
35901
f5028c67e7cb 8147918: Rename develop_log_is_enabled() to log_develop_is_enabled()
pliden
parents: 35862
diff changeset
   438
  if (!log_develop_is_enabled(Trace, gc, task, stats)) {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   439
    return;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   440
  }
37242
91e5f98fff6f 8152632: Rename LogHandle(...) to Log(...)
stefank
parents: 37192
diff changeset
   441
  Log(gc, task, stats) log;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   442
  ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 41682
diff changeset
   443
  LogStream ls(log.trace());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 41682
diff changeset
   444
  outputStream* st = &ls;
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   445
  print_taskqueue_stats_hdr(st);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   446
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   447
  TaskQueueStats totals;
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   448
  for (int i = 0; i < _num_threads; ++i) {
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   449
    const ParScanThreadState & pss = thread_state(i);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   450
    const TaskQueueStats & stats = pss.taskqueue_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   451
    st->print("%3d ", i); stats.print(st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   452
    totals += stats;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   453
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   454
    if (pss.overflow_refills() > 0) {
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   455
      st->print_cr("    " SIZE_FORMAT_W(10) " overflow refills    "
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   456
                   SIZE_FORMAT_W(10) " overflow objects",
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   457
                   pss.overflow_refills(), pss.overflow_refill_objs());
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   458
    }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   459
  }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   460
  st->print("tot "); totals.print(st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   461
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   462
  DEBUG_ONLY(totals.verify());
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   463
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   464
#endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   465
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   466
void ParScanThreadStateSet::flush() {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   467
  // Work in this loop should be kept as lightweight as
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   468
  // possible since this might otherwise become a bottleneck
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   469
  // to scaling. Should we add heavy-weight work into this
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   470
  // loop, consider parallelizing the loop into the worker threads.
38031
e0b822facc03 8149374: Replace C1-specific collection classes with universal collection classes
fzhinkin
parents: 36390
diff changeset
   471
  for (int i = 0; i < _num_threads; ++i) {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   472
    ParScanThreadState& par_scan_state = thread_state(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    // Flush stats related to To-space PLAB activity and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    // retire the last buffer.
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   476
    par_scan_state.to_space_alloc_buffer()->flush_and_retire_stats(_young_gen.plab_stats());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    // Every thread has its own age table.  We need to merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    // them all into one.
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
   480
    AgeTable *local_table = par_scan_state.age_table();
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   481
    _young_gen.age_table()->merge(local_table);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    // Inform old gen that we're done.
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   484
    _old_gen.par_promote_alloc_done(i);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   485
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
27251
7d667f91ec8d 6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents: 27154
diff changeset
   487
  if (UseConcMarkSweepGC) {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   488
    // We need to call this even when ResizeOldPLAB is disabled
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   489
    // so as to avoid breaking some asserts. While we may be able
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   490
    // to avoid this by reorganizing the code a bit, I am loathe
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   491
    // to do that unless we find cases where ergo leads to bad
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   492
    // performance.
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
   493
    CompactibleFreeListSpaceLAB::compute_desired_plab_size();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   494
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
ParScanClosure::ParScanClosure(ParNewGeneration* g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
                               ParScanThreadState* par_scan_state) :
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47552
diff changeset
   499
  OopsInClassLoaderDataOrGenClosure(g), _par_scan_state(par_scan_state), _g(g) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  _boundary = _g->reserved().end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   503
void ParScanWithBarrierClosure::do_oop(oop* p)       { ParScanClosure::do_oop_work(p, true, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   504
void ParScanWithBarrierClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, true, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   505
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   506
void ParScanWithoutBarrierClosure::do_oop(oop* p)       { ParScanClosure::do_oop_work(p, false, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   507
void ParScanWithoutBarrierClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, false, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   508
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   509
void ParRootScanWithBarrierTwoGensClosure::do_oop(oop* p)       { ParScanClosure::do_oop_work(p, true, true); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   510
void ParRootScanWithBarrierTwoGensClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, true, true); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   511
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   512
void ParRootScanWithoutBarrierClosure::do_oop(oop* p)       { ParScanClosure::do_oop_work(p, false, true); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   513
void ParRootScanWithoutBarrierClosure::do_oop(narrowOop* p) { ParScanClosure::do_oop_work(p, false, true); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   514
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
ParScanWeakRefClosure::ParScanWeakRefClosure(ParNewGeneration* g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
                                             ParScanThreadState* par_scan_state)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  : ScanWeakRefClosure(g), _par_scan_state(par_scan_state)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   518
{}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   519
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   520
void ParScanWeakRefClosure::do_oop(oop* p)       { ParScanWeakRefClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   521
void ParScanWeakRefClosure::do_oop(narrowOop* p) { ParScanWeakRefClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
#ifdef WIN32
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
#pragma warning(disable: 4786) /* identifier was truncated to '255' characters in the browser information */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
ParEvacuateFollowersClosure::ParEvacuateFollowersClosure(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    ParScanThreadState* par_scan_state_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    ParScanWithoutBarrierClosure* to_space_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    ParScanWithBarrierClosure* old_gen_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    ParRootScanWithoutBarrierClosure* to_space_root_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    ParNewGeneration* par_gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    ParRootScanWithBarrierTwoGensClosure* old_gen_root_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    ObjToScanQueueSet* task_queues_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    ParallelTaskTerminator* terminator_) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    _par_scan_state(par_scan_state_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    _to_space_closure(to_space_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    _old_gen_closure(old_gen_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    _to_space_root_closure(to_space_root_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    _old_gen_root_closure(old_gen_root_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    _par_gen(par_gen_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    _task_queues(task_queues_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    _terminator(terminator_)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
{}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
void ParEvacuateFollowersClosure::do_void() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  ObjToScanQueue* work_q = par_scan_state()->work_queue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    // Scan to-space and old-gen objs until we run out of both.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    oop obj_to_scan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    par_scan_state()->trim_queues(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    // We have no local work, attempt to steal from other threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   557
    // Attempt to steal work from promoted.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    if (task_queues()->steal(par_scan_state()->thread_num(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
                             par_scan_state()->hash_seed(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
                             obj_to_scan)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
      bool res = work_q->push(obj_to_scan);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      assert(res, "Empty queue should have room for a push.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   564
      // If successful, goto Start.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   567
      // Try global overflow list.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    } else if (par_gen()->take_from_overflow_list(par_scan_state())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    // Otherwise, offer termination.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    par_scan_state()->start_term_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    if (terminator()->offer_termination()) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    par_scan_state()->end_term_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   577
  assert(par_gen()->_overflow_list == NULL && par_gen()->_num_par_pushes == 0,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   578
         "Broken overflow list?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  // Finish the last termination pause.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  par_scan_state()->end_term_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   583
ParNewGenTask::ParNewGenTask(ParNewGeneration* young_gen,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   584
                             Generation* old_gen,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   585
                             HeapWord* young_old_boundary,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   586
                             ParScanThreadStateSet* state_set,
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   587
                             StrongRootsScope* strong_roots_scope) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    AbstractGangTask("ParNewGeneration collection"),
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   589
    _young_gen(young_gen), _old_gen(old_gen),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    _young_old_boundary(young_old_boundary),
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   591
    _state_set(state_set),
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   592
    _strong_roots_scope(strong_roots_scope)
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   593
{}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   595
void ParNewGenTask::work(uint worker_id) {
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   596
  CMSHeap* heap = CMSHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  // Since this is being done in a separate thread, need new resource
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  // and handle marks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   602
  ParScanThreadState& par_scan_state = _state_set->thread_state(worker_id);
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   603
  assert(_state_set->is_valid(worker_id), "Should not have been called");
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   604
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  par_scan_state.set_young_old_boundary(_young_old_boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47552
diff changeset
   607
  CLDScanClosure cld_scan_closure(&par_scan_state.to_space_root_closure(),
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   608
                                  heap->rem_set()->cld_rem_set()->accumulate_modified_oops());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
   609
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  par_scan_state.start_strong_roots();
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   611
  heap->young_process_roots(_strong_roots_scope,
41682
b63330180476 8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents: 41184
diff changeset
   612
                           &par_scan_state.to_space_root_closure(),
b63330180476 8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents: 41184
diff changeset
   613
                           &par_scan_state.older_gen_closure(),
b63330180476 8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents: 41184
diff changeset
   614
                           &cld_scan_closure);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   615
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  par_scan_state.end_strong_roots();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  // "evacuate followers".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  par_scan_state.evacuate_followers_closure().do_void();
38198
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   620
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   621
  // This will collapse this worker's promoted object list that's
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   622
  // created during the main ParNew parallel phase of ParNew. This has
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   623
  // to be called after all workers have finished promoting objects
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   624
  // and scanning promoted objects. It should be safe calling it from
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   625
  // here, given that we can only reach here after all thread have
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   626
  // offered termination, i.e., after there is no more work to be
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   627
  // done. It will also disable promotion tracking for the rest of
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   628
  // this GC as it's not necessary to be on during reference processing.
8144ec8f789e 8155257: ParNew/CMS: Clean up promoted object tracking
tonyp
parents: 38033
diff changeset
   629
  _old_gen->par_oop_since_save_marks_iterate_done((int) worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   632
ParNewGeneration::ParNewGeneration(ReservedSpace rs, size_t initial_byte_size)
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   633
  : DefNewGeneration(rs, initial_byte_size, "PCopy"),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  _overflow_list(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  _is_alive_closure(this),
36390
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 36202
diff changeset
   636
  _plab_stats("Young", YoungPLABSize, PLABWeight)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
{
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   638
  NOT_PRODUCT(_overflow_counter = ParGCWorkQueueOverflowInterval;)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   639
  NOT_PRODUCT(_num_par_pushes = 0;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  _task_queues = new ObjToScanQueueSet(ParallelGCThreads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  guarantee(_task_queues != NULL, "task_queues allocation failure.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   643
  for (uint i = 0; i < ParallelGCThreads; i++) {
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5547
diff changeset
   644
    ObjToScanQueue *q = new ObjToScanQueue();
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5547
diff changeset
   645
    guarantee(q != NULL, "work_queue Allocation failure.");
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   646
    _task_queues->register_queue(i, q);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   649
  for (uint i = 0; i < ParallelGCThreads; i++) {
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   650
    _task_queues->queue(i)->initialize();
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   651
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   653
  _overflow_stacks = NULL;
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   654
  if (ParGCUseLocalOverflow) {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   655
    // typedef to workaround NEW_C_HEAP_ARRAY macro, which can not deal with ','
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   656
    typedef Stack<oop, mtGC> GCOopStack;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   657
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   658
    _overflow_stacks = NEW_C_HEAP_ARRAY(GCOopStack, ParallelGCThreads, mtGC);
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   659
    for (size_t i = 0; i < ParallelGCThreads; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   660
      new (_overflow_stacks + i) Stack<oop, mtGC>();
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   661
    }
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   662
  }
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   663
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    const char* cname =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
         PerfDataManager::counter_name(_gen_counters->name_space(), "threads");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
                                     ParallelGCThreads, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
// ParNewGeneration::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
ParKeepAliveClosure::ParKeepAliveClosure(ParScanWeakRefClosure* cl) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  DefNewGeneration::KeepAliveClosure(cl), _par_cl(cl) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   679
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   680
void /*ParNewGeneration::*/ParKeepAliveClosure::do_oop_work(T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   681
#ifdef ASSERT
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   682
  {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   683
    oop obj = RawAccess<OOP_NOT_NULL>::oop_load(p);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   684
    // We never expect to see a null reference being processed
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   685
    // as a weak reference.
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46795
diff changeset
   686
    assert(oopDesc::is_oop(obj), "expected an oop while scanning weak refs");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   687
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   688
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  _par_cl->do_oop_nv(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   692
  if (CMSHeap::heap()->is_in_reserved(p)) {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   693
    oop obj = RawAccess<OOP_NOT_NULL>::oop_load(p);;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   694
    _rs->write_ref_field_gc_par(p, obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   698
void /*ParNewGeneration::*/ParKeepAliveClosure::do_oop(oop* p)       { ParKeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   699
void /*ParNewGeneration::*/ParKeepAliveClosure::do_oop(narrowOop* p) { ParKeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   700
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
// ParNewGeneration::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
KeepAliveClosure::KeepAliveClosure(ScanWeakRefClosure* cl) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  DefNewGeneration::KeepAliveClosure(cl) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   705
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   706
void /*ParNewGeneration::*/KeepAliveClosure::do_oop_work(T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   707
#ifdef ASSERT
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   708
  {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   709
    oop obj = RawAccess<OOP_NOT_NULL>::oop_load(p);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   710
    // We never expect to see a null reference being processed
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   711
    // as a weak reference.
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46795
diff changeset
   712
    assert(oopDesc::is_oop(obj), "expected an oop while scanning weak refs");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   713
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   714
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  _cl->do_oop_nv(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   718
  if (CMSHeap::heap()->is_in_reserved(p)) {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   719
    oop obj = RawAccess<OOP_NOT_NULL>::oop_load(p);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   720
    _rs->write_ref_field_gc_par(p, obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   724
void /*ParNewGeneration::*/KeepAliveClosure::do_oop(oop* p)       { KeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   725
void /*ParNewGeneration::*/KeepAliveClosure::do_oop(narrowOop* p) { KeepAliveClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   726
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   727
template <class T> void ScanClosureWithParBarrier::do_oop_work(T* p) {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   728
  T heap_oop = RawAccess<>::oop_load(p);
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   729
  if (!CompressedOops::is_null(heap_oop)) {
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   730
    oop obj = CompressedOops::decode_not_null(heap_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    if ((HeapWord*)obj < _boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
      assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   733
      oop new_obj = obj->is_forwarded()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   734
                      ? obj->forwardee()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   735
                      : _g->DefNewGeneration::copy_to_survivor_space(obj);
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49048
diff changeset
   736
      RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    if (_gc_barrier) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
      // If p points to a younger generation, mark the card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
      if ((HeapWord*)obj < _gen_boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
        _rs->write_ref_field_gc_par(p, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   747
void ScanClosureWithParBarrier::do_oop(oop* p)       { ScanClosureWithParBarrier::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   748
void ScanClosureWithParBarrier::do_oop(narrowOop* p) { ScanClosureWithParBarrier::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   749
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
class ParNewRefProcTaskProxy: public AbstractGangTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
public:
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   753
  ParNewRefProcTaskProxy(ProcessTask& task,
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   754
                         ParNewGeneration& young_gen,
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   755
                         Generation& old_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
                         HeapWord* young_old_boundary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
                         ParScanThreadStateSet& state_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
private:
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   760
  virtual void work(uint worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
private:
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   762
  ParNewGeneration&      _young_gen;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  ProcessTask&           _task;
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   764
  Generation&            _old_gen;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  HeapWord*              _young_old_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  ParScanThreadStateSet& _state_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   769
ParNewRefProcTaskProxy::ParNewRefProcTaskProxy(ProcessTask& task,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   770
                                               ParNewGeneration& young_gen,
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   771
                                               Generation& old_gen,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   772
                                               HeapWord* young_old_boundary,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   773
                                               ParScanThreadStateSet& state_set)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  : AbstractGangTask("ParNewGeneration parallel reference processing"),
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   775
    _young_gen(young_gen),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    _task(task),
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   777
    _old_gen(old_gen),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    _young_old_boundary(young_old_boundary),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    _state_set(state_set)
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   780
{ }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   782
void ParNewRefProcTaskProxy::work(uint worker_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  HandleMark hm;
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   785
  ParScanThreadState& par_scan_state = _state_set.thread_state(worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  par_scan_state.set_young_old_boundary(_young_old_boundary);
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   787
  _task.work(worker_id, par_scan_state.is_alive_closure(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
             par_scan_state.keep_alive_closure(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
             par_scan_state.evacuate_followers_closure());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   792
void ParNewRefProcTaskExecutor::execute(ProcessTask& task) {
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   793
  CMSHeap* gch = CMSHeap::heap();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31780
diff changeset
   794
  WorkGang* workers = gch->workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  assert(workers != NULL, "Need parallel worker threads.");
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   796
  _state_set.reset(workers->active_workers(), _young_gen.promotion_failed());
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   797
  ParNewRefProcTaskProxy rp_task(task, _young_gen, _old_gen,
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   798
                                 _young_gen.reserved().end(), _state_set);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  workers->run_task(&rp_task);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   800
  _state_set.reset(0 /* bad value in debug if not reset */,
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   801
                   _young_gen.promotion_failed());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   804
void ParNewRefProcTaskExecutor::set_single_threaded_mode() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  _state_set.flush();
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   806
  CMSHeap* heap = CMSHeap::heap();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   807
  heap->save_marks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
ScanClosureWithParBarrier::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier) :
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   812
  ScanClosure(g, gc_barrier)
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   813
{ }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   815
template <typename OopClosureType1, typename OopClosureType2>
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   816
EvacuateFollowersClosureGeneral<OopClosureType1, OopClosureType2>::
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   817
EvacuateFollowersClosureGeneral(CMSHeap* heap,
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   818
                                OopClosureType1* cur,
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   819
                                OopClosureType2* older) :
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   820
  _heap(heap),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  _scan_cur_or_nonheap(cur), _scan_older(older)
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   822
{ }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   824
template <typename OopClosureType1, typename OopClosureType2>
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   825
void EvacuateFollowersClosureGeneral<OopClosureType1, OopClosureType2>::do_void() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  do {
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   827
    _heap->oop_since_save_marks_iterate(_scan_cur_or_nonheap,
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   828
                                        _scan_older);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   829
  } while (!_heap->no_allocs_since_save_marks());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   832
// A Generation that does parallel young-gen collection.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   833
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   834
void ParNewGeneration::handle_promotion_failed(CMSHeap* gch, ParScanThreadStateSet& thread_state_set) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   835
  assert(_promo_failure_scan_stack.is_empty(), "post condition");
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   836
  _promo_failure_scan_stack.clear(true); // Clear cached segments.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   837
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   838
  remove_forwarding_pointers();
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
   839
  log_info(gc, promotion)("Promotion failed");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   840
  // All the spaces are in play for mark-sweep.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   841
  swap_spaces();  // Make life simpler for CMS || rescan; see 6483690.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   842
  from()->set_next_compaction_space(to());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   843
  gch->set_incremental_collection_failed();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   844
  // Inform the next generation that a promotion failure occurred.
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   845
  _old_gen->promotion_failure_occurred();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   846
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   847
  // Trace promotion failure in the parallel GC threads
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   848
  thread_state_set.trace_promotion_failed(gc_tracer());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   849
  // Single threaded code may have reported promotion failure to the global state
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   850
  if (_promotion_failed_info.has_failed()) {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   851
    _gc_tracer.report_promotion_failed(_promotion_failed_info);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   852
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   853
  // Reset the PromotionFailureALot counters.
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   854
  NOT_PRODUCT(gch->reset_promotion_should_fail();)
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   855
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
void ParNewGeneration::collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
                               bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
                               size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
                               bool   is_tlab) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  assert(full || size > 0, "otherwise we don't want to collect");
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   862
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
   863
  CMSHeap* gch = CMSHeap::heap();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   864
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 20282
diff changeset
   865
  _gc_timer->register_gc_start();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   866
49048
4e8c86b75428 8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents: 47676
diff changeset
   867
  AdaptiveSizePolicy* size_policy = gch->size_policy();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31780
diff changeset
   868
  WorkGang* workers = gch->workers();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   869
  assert(workers != NULL, "Need workgang for parallel work");
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30572
diff changeset
   870
  uint active_workers =
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30572
diff changeset
   871
       AdaptiveSizePolicy::calc_active_workers(workers->total_workers(),
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30572
diff changeset
   872
                                               workers->active_workers(),
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30572
diff changeset
   873
                                               Threads::number_of_non_daemon_threads());
40096
246c62cd9180 8159073: : Error handling incomplete when creating GC threads lazily
jmasa
parents: 38198
diff changeset
   874
  active_workers = workers->update_active_workers(active_workers);
40922
d9f1eaf18f9a 8165292: The gc+task logging is repeated a lot, decreasing the usefulness of -Xlog:gc*=info
tschatzl
parents: 40655
diff changeset
   875
  log_info(gc,task)("Using %u workers of %u for evacuation", active_workers, workers->total_workers());
d9f1eaf18f9a 8165292: The gc+task logging is repeated a lot, decreasing the usefulness of -Xlog:gc*=info
tschatzl
parents: 40655
diff changeset
   876
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   877
  _old_gen = gch->old_gen();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   879
  // If the next generation is too full to accommodate worst-case promotion
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  // from this generation, pass on collection; let the next generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  // do it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  if (!collection_attempt_is_safe()) {
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 6762
diff changeset
   883
    gch->set_incremental_collection_failed();  // slight lie, in that we did not even attempt one
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  assert(to()->is_empty(), "Else not collection_attempt_is_safe");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   888
  _gc_tracer.report_gc_start(gch->gc_cause(), _gc_timer->gc_start());
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   889
  gch->trace_heap_before_gc(gc_tracer());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   890
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  init_assuming_no_promotion_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  if (UseAdaptiveSizePolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    set_survivor_overflow(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    size_policy->minor_collection_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 36390
diff changeset
   898
  GCTraceTime(Trace, gc, phases) t1("ParNew", NULL, gch->gc_cause());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  age_table()->clear();
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   901
  to()->clear(SpaceDecorator::Mangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  gch->save_marks();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   904
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   905
  // Set the correct parallelism (number of queues) in the reference processor
30883
357482fa587b 8081007: Remove redundant active worker variables and calls in ParNewGeneration::collect
stefank
parents: 30881
diff changeset
   906
  ref_processor()->set_active_mt_degree(active_workers);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   907
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   908
  // Need to initialize the preserved marks before the ThreadStateSet c'tor.
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   909
  _preserved_marks_set.init(active_workers);
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   910
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   911
  // Always set the terminator for the active number of workers
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   912
  // because only those workers go through the termination protocol.
30883
357482fa587b 8081007: Remove redundant active worker variables and calls in ParNewGeneration::collect
stefank
parents: 30881
diff changeset
   913
  ParallelTaskTerminator _term(active_workers, task_queues());
357482fa587b 8081007: Remove redundant active worker variables and calls in ParNewGeneration::collect
stefank
parents: 30881
diff changeset
   914
  ParScanThreadStateSet thread_state_set(active_workers,
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   915
                                         *to(), *this, *_old_gen, *task_queues(),
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   916
                                         _overflow_stacks, _preserved_marks_set,
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
   917
                                         desired_plab_sz(), _term);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
30883
357482fa587b 8081007: Remove redundant active worker variables and calls in ParNewGeneration::collect
stefank
parents: 30881
diff changeset
   919
  thread_state_set.reset(active_workers, promotion_failed());
30881
7a3899d7cea0 8080879: Remove FlexibleWorkGang::set_for_termination
stefank
parents: 30876
diff changeset
   920
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   921
  {
30883
357482fa587b 8081007: Remove redundant active worker variables and calls in ParNewGeneration::collect
stefank
parents: 30881
diff changeset
   922
    StrongRootsScope srs(active_workers);
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   923
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   924
    ParNewGenTask tsk(this, _old_gen, reserved().end(), &thread_state_set, &srs);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   925
    gch->rem_set()->prepare_for_younger_refs_iterate(true);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   926
    // It turns out that even when we're using 1 thread, doing the work in a
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   927
    // separate thread causes wide variance in run times.  We can't help this
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   928
    // in the multi-threaded case, but we special-case n=1 here to get
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   929
    // repeatable measurements of the 1-thread overhead of the parallel code.
40096
246c62cd9180 8159073: : Error handling incomplete when creating GC threads lazily
jmasa
parents: 38198
diff changeset
   930
    // Might multiple workers ever be used?  If yes, initialization
246c62cd9180 8159073: : Error handling incomplete when creating GC threads lazily
jmasa
parents: 38198
diff changeset
   931
    // has been done such that the single threaded path should not be used.
246c62cd9180 8159073: : Error handling incomplete when creating GC threads lazily
jmasa
parents: 38198
diff changeset
   932
    if (workers->total_workers() > 1) {
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   933
      workers->run_task(&tsk);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   934
    } else {
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   935
      tsk.work(0);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   936
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
  }
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   938
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   939
  thread_state_set.reset(0 /* Bad value in debug if not reset */,
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   940
                         promotion_failed());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
27895
bf55adf78eeb 8055239: assert(_thread == Thread::current()->osthread()) failed: The PromotionFailedInfo should be thread local
sangheki
parents: 27251
diff changeset
   942
  // Trace and reset failed promotion info.
bf55adf78eeb 8055239: assert(_thread == Thread::current()->osthread()) failed: The PromotionFailedInfo should be thread local
sangheki
parents: 27251
diff changeset
   943
  if (promotion_failed()) {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   944
    thread_state_set.trace_promotion_failed(gc_tracer());
27895
bf55adf78eeb 8055239: assert(_thread == Thread::current()->osthread()) failed: The PromotionFailedInfo should be thread local
sangheki
parents: 27251
diff changeset
   945
  }
bf55adf78eeb 8055239: assert(_thread == Thread::current()->osthread()) failed: The PromotionFailedInfo should be thread local
sangheki
parents: 27251
diff changeset
   946
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  // Process (weak) reference objects found during scavenge.
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
   948
  ReferenceProcessor* rp = ref_processor();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
  IsAliveClosure is_alive(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  ScanWeakRefClosure scan_weak_ref(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  KeepAliveClosure keep_alive(&scan_weak_ref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  ScanClosure               scan_without_gc_barrier(this, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  ScanClosureWithParBarrier scan_with_gc_barrier(this, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  set_promo_failure_scan_stack_closure(&scan_without_gc_barrier);
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   955
  EvacuateFollowersClosureGeneral<ScanClosure, ScanClosureWithParBarrier> evacuate_followers(
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 49967
diff changeset
   956
      gch, &scan_without_gc_barrier, &scan_with_gc_barrier);
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1607
diff changeset
   957
  rp->setup_policy(clear_all_soft_refs);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   958
  // Can  the mt_degree be set later (at run_task() time would be best)?
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   959
  rp->set_active_mt_degree(active_workers);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   960
  ReferenceProcessorStats stats;
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49964
diff changeset
   961
  ReferenceProcessorPhaseTimes pt(_gc_timer, rp->num_queues());
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
   962
  if (rp->processing_is_mt()) {
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31330
diff changeset
   963
    ParNewRefProcTaskExecutor task_executor(*this, *_old_gen, thread_state_set);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   964
    stats = rp->process_discovered_references(&is_alive, &keep_alive,
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   965
                                              &evacuate_followers, &task_executor,
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46701
diff changeset
   966
                                              &pt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    thread_state_set.flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
    gch->save_marks();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   970
    stats = rp->process_discovered_references(&is_alive, &keep_alive,
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   971
                                              &evacuate_followers, NULL,
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46701
diff changeset
   972
                                              &pt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  }
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   974
  _gc_tracer.report_gc_reference_stats(stats);
33143
2083f82acec8 8139134: Wrong tenuring threshold in young GC trace event
ehelin
parents: 33107
diff changeset
   975
  _gc_tracer.report_tenuring_threshold(tenuring_threshold());
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46701
diff changeset
   976
  pt.print_all_references();
33143
2083f82acec8 8139134: Wrong tenuring threshold in young GC trace event
ehelin
parents: 33107
diff changeset
   977
47676
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   978
  assert(gch->no_allocs_since_save_marks(), "evacuation should be done at this point");
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   979
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   980
  WeakProcessor::weak_oops_do(&is_alive, &keep_alive);
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   981
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   982
  // Verify that the usage of keep_alive only forwarded
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   983
  // the oops and did not find anything new to copy.
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   984
  assert(gch->no_allocs_since_save_marks(), "unexpectedly copied objects");
47648
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47634
diff changeset
   985
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  if (!promotion_failed()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
    // Swap the survivor spaces.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   988
    eden()->clear(SpaceDecorator::Mangle);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   989
    from()->clear(SpaceDecorator::Mangle);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   990
    if (ZapUnusedHeapArea) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   991
      // This is now done here because of the piece-meal mangling which
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   992
      // can check for valid mangling at intermediate points in the
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   993
      // collection(s).  When a young collection fails to collect
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   994
      // sufficient space resizing of the young generation can occur
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
   995
      // and redistribute the spaces in the young generation.  Mangle
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   996
      // here so that unzapped regions don't get distributed to
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   997
      // other spaces.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   998
      to()->mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   999
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    swap_spaces();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4574
diff changeset
  1002
    // A successful scavenge should restart the GC time limit count which is
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4574
diff changeset
  1003
    // for full GC's.
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4574
diff changeset
  1004
    size_policy->reset_gc_overhead_limit_count();
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4574
diff changeset
  1005
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    assert(to()->is_empty(), "to space should be empty now");
15215
048f775ae371 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 15091
diff changeset
  1007
048f775ae371 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 15091
diff changeset
  1008
    adjust_desired_tenuring_threshold();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  } else {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1010
    handle_promotion_failed(gch, thread_state_set);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  }
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
  1012
  _preserved_marks_set.reclaim();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  // set new iteration safe limit for the survivor spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  from()->set_concurrent_iteration_safe_limit(from()->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  to()->set_concurrent_iteration_safe_limit(to()->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
36390
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 36202
diff changeset
  1017
  plab_stats()->adjust_desired_plab_sz();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
  1019
  TASKQUEUE_STATS_ONLY(thread_state_set.print_termination_stats());
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
  1020
  TASKQUEUE_STATS_ONLY(thread_state_set.print_taskqueue_stats());
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
  1021
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  if (UseAdaptiveSizePolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    size_policy->minor_collection_end(gch->gc_cause());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    size_policy->avg_survived()->sample(from()->used());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  1027
  // We need to use a monotonically non-decreasing time in ms
11755
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1028
  // or we will see time-warp warnings and os::javaTimeMillis()
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1029
  // does not guarantee monotonicity.
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1030
  jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1031
  update_time_of_last_gc(now);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1033
  rp->set_enqueuing_is_done(true);
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1034
  rp->verify_no_references_recorded();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1035
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1036
  gch->trace_heap_after_gc(gc_tracer());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1037
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 20282
diff changeset
  1038
  _gc_timer->register_gc_end();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1039
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1040
  _gc_tracer.report_gc_end(_gc_timer->gc_end(), _gc_timer->time_partitions());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
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
  1043
size_t ParNewGeneration::desired_plab_sz() {
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1044
  return _plab_stats.desired_plab_sz(CMSHeap::heap()->workers()->active_workers());
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
  1045
}
d041b34dd3e7 8079555: REDO - Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 31358
diff changeset
  1046
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
static int sum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
void ParNewGeneration::waste_some_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  for (int i = 0; i < 100; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
    sum += i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19286
diff changeset
  1054
static const oop ClaimedForwardPtr = cast_to_oop<intptr_t>(0x4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// Because of concurrency, there are times where an object for which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
// "is_forwarded()" is true contains an "interim" forwarding pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
// value.  Such a value will soon be overwritten with a real value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
// This method requires "obj" to have a forwarding pointer, and waits, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
// necessary for a real one to be inserted, and returns it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
oop ParNewGeneration::real_forwardee(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  oop forward_ptr = obj->forwardee();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  if (forward_ptr != ClaimedForwardPtr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
    return forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    return real_forwardee_slow(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
oop ParNewGeneration::real_forwardee_slow(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  // Spin-read if it is claimed but not yet written by another thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  oop forward_ptr = obj->forwardee();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  while (forward_ptr == ClaimedForwardPtr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
    waste_some_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    assert(obj->is_forwarded(), "precondition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    forward_ptr = obj->forwardee();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  return forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
// Multiple GC threads may try to promote an object.  If the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
// is successfully promoted, a forwarding pointer will be installed in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
// the object in the young generation.  This method claims the right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
// to install the forwarding pointer before it copies the object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
// thus avoiding the need to undo the copy as in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
// copy_to_survivor_space_avoiding_with_undo.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
  1089
oop ParNewGeneration::copy_to_survivor_space(ParScanThreadState* par_scan_state,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
  1090
                                             oop old,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
  1091
                                             size_t sz,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
  1092
                                             markOop m) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  // In the sequential version, this assert also says that the object is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  // not forwarded.  That might not be the case here.  It is the case that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  // the caller observed it to be not forwarded at some time in the past.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  assert(is_in_reserved(old), "shouldn't be scavenging this oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  // The sequential code read "old->age()" below.  That doesn't work here,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  // since the age is in the mark word, and that might be overwritten with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  // a forwarding pointer by a parallel thread.  So we must save the mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  // word in a local and then analyze it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  oopDesc dummyOld;
49722
a47d1e21b3f1 8199735: Mark word updates need to use Access API
rkennke
parents: 49592
diff changeset
  1103
  dummyOld.set_mark_raw(m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  assert(!dummyOld.is_forwarded(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
         "should not be called with forwarding pointer mark word.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  oop new_obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  oop forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  // Try allocating obj in to-space (unless too old)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  if (dummyOld.age() < tenuring_threshold()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
    new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
    if (new_obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
      set_survivor_overflow(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  if (new_obj == NULL) {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 32383
diff changeset
  1119
    // Either to-space is full or we decided to promote try allocating obj tenured
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
    // Attempt to install a null forwarding pointer (atomically),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    // to claim the right to install the real forwarding pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
    forward_ptr = old->forward_to_atomic(ClaimedForwardPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
    if (forward_ptr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
      // someone else beat us to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
        return real_forwardee(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
28630
f140942b6fd8 8061259: ParNew promotion failed is serialized on a lock
brutisso
parents: 27905
diff changeset
  1129
    if (!_promotion_failed) {
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
  1130
      new_obj = _old_gen->par_promote(par_scan_state->thread_num(),
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
  1131
                                      old, m, sz);
28630
f140942b6fd8 8061259: ParNew promotion failed is serialized on a lock
brutisso
parents: 27905
diff changeset
  1132
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
    if (new_obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
      // promotion failed, forward to self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
      _promotion_failed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
      new_obj = old;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
36202
219f8808c3bd 8146989: Introduce per-worker preserved mark stacks in ParNew
tonyp
parents: 35901
diff changeset
  1139
      par_scan_state->preserved_marks()->push_if_necessary(old, m);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1140
      par_scan_state->register_promotion_failure(sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    old->forward_to(new_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
    forward_ptr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    // Is in to-space; do copying ourselves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
    Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1148
    assert(CMSHeap::heap()->is_in_reserved(new_obj), "illegal forwarding pointer value.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    forward_ptr = old->forward_to_atomic(new_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
    // Restore the mark word copied above.
49722
a47d1e21b3f1 8199735: Mark word updates need to use Access API
rkennke
parents: 49592
diff changeset
  1151
    new_obj->set_mark_raw(m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
    // Increment age if obj still in new generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
    new_obj->incr_age();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
    par_scan_state->age_table()->add(new_obj, sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  assert(new_obj != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1158
  // This code must come after the CAS test, or it will print incorrect
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1159
  // information.
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
  1160
  log_develop_trace(gc, scavenge)("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
  1161
                                  is_in_reserved(new_obj) ? "copying" : "tenuring",
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
  1162
                                  new_obj->klass()->internal_name(), p2i(old), p2i(new_obj), new_obj->size());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1163
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  if (forward_ptr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
    oop obj_to_push = new_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
      // Length field used as index of next element to be scanned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
      // Real length can be obtained from real_forwardee()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
      arrayOop(old)->set_length(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
      obj_to_push = old;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
      assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
             "push forwarded object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    // Push it on one of the queues of to-be-scanned objects.
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1175
    bool simulate_overflow = false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1176
    NOT_PRODUCT(
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1177
      if (ParGCWorkQueueOverflowALot && should_simulate_overflow()) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1178
        // simulate a stack overflow
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1179
        simulate_overflow = true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1180
      }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1181
    )
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1182
    if (simulate_overflow || !par_scan_state->work_queue()->push(obj_to_push)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
      // Add stats for overflow pushes.
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34185
diff changeset
  1184
      log_develop_trace(gc)("Queue Overflow");
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1185
      push_on_overflow_list(old, par_scan_state);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
  1186
      TASKQUEUE_STATS_ONLY(par_scan_state->taskqueue_stats().record_overflow(0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    return new_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  // Oops.  Someone beat us to it.  Undo the allocation.  Where did we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  // allocate it?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  if (is_in_reserved(new_obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
    // Must be in to_space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
    assert(to()->is_in_reserved(new_obj), "Checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    if (forward_ptr == ClaimedForwardPtr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
      // Wait to get the real forwarding pointer value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
      forward_ptr = real_forwardee(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
    par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  return forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1207
#ifndef PRODUCT
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1208
// It's OK to call this multi-threaded;  the worst thing
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1209
// that can happen is that we'll get a bunch of closely
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  1210
// spaced simulated overflows, but that's OK, in fact
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1211
// probably good as it would exercise the overflow code
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1212
// under contention.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1213
bool ParNewGeneration::should_simulate_overflow() {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1214
  if (_overflow_counter-- <= 0) { // just being defensive
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1215
    _overflow_counter = ParGCWorkQueueOverflowInterval;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1216
    return true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1217
  } else {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1218
    return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1219
  }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1220
}
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1221
#endif
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1222
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1223
// In case we are using compressed oops, we need to be careful.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1224
// If the object being pushed is an object array, then its length
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1225
// field keeps track of the "grey boundary" at which the next
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1226
// incremental scan will be done (see ParGCArrayScanChunk).
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1227
// When using compressed oops, this length field is kept in the
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1228
// lower 32 bits of the erstwhile klass word and cannot be used
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1229
// for the overflow chaining pointer (OCP below). As such the OCP
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1230
// would itself need to be compressed into the top 32-bits in this
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1231
// case. Unfortunately, see below, in the event that we have a
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1232
// promotion failure, the node to be pushed on the list can be
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1233
// outside of the Java heap, so the heap-based pointer compression
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1234
// would not work (we would have potential aliasing between C-heap
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1235
// and Java-heap pointers). For this reason, when using compressed
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1236
// oops, we simply use a worker-thread-local, non-shared overflow
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1237
// list in the form of a growable array, with a slightly different
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1238
// overflow stack draining strategy. If/when we start using fat
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1239
// stacks here, we can go back to using (fat) pointer chains
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1240
// (although some performance comparisons would be useful since
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1241
// single global lists have their own performance disadvantages
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1242
// as we were made painfully aware not long ago, see 6786503).
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19286
diff changeset
  1243
#define BUSY (cast_to_oop<intptr_t>(0x1aff1aff))
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1244
void ParNewGeneration::push_on_overflow_list(oop from_space_obj, ParScanThreadState* par_scan_state) {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1245
  assert(is_in_reserved(from_space_obj), "Should be from this generation");
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1246
  if (ParGCUseLocalOverflow) {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1247
    // In the case of compressed oops, we use a private, not-shared
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1248
    // overflow stack.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1249
    par_scan_state->push_on_overflow_stack(from_space_obj);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1250
  } else {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1251
    assert(!UseCompressedOops, "Error");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1252
    // if the object has been forwarded to itself, then we cannot
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1253
    // use the klass pointer for the linked list.  Instead we have
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1254
    // to allocate an oopDesc in the C-Heap and use that for the linked list.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1255
    // XXX This is horribly inefficient when a promotion failure occurs
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1256
    // and should be fixed. XXX FIX ME !!!
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1257
#ifndef PRODUCT
47552
8a3599d60996 8186838: Generalize Atomic::inc/dec with templates
eosterlund
parents: 47216
diff changeset
  1258
    Atomic::inc(&_num_par_pushes);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1259
    assert(_num_par_pushes > 0, "Tautology");
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1260
#endif
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1261
    if (from_space_obj->forwardee() == from_space_obj) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
  1262
      oopDesc* listhead = NEW_C_HEAP_ARRAY(oopDesc, 1, mtGC);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1263
      listhead->forward_to(from_space_obj);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1264
      from_space_obj = listhead;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1265
    }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1266
    oop observed_overflow_list = _overflow_list;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1267
    oop cur_overflow_list;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1268
    do {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1269
      cur_overflow_list = observed_overflow_list;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1270
      if (cur_overflow_list != BUSY) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1271
        from_space_obj->set_klass_to_list_ptr(cur_overflow_list);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1272
      } else {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1273
        from_space_obj->set_klass_to_list_ptr(NULL);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1274
      }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1275
      observed_overflow_list =
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1276
        Atomic::cmpxchg((oopDesc*)from_space_obj, &_overflow_list, (oopDesc*)cur_overflow_list);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1277
    } while (cur_overflow_list != observed_overflow_list);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1281
bool ParNewGeneration::take_from_overflow_list(ParScanThreadState* par_scan_state) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1282
  bool res;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1283
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1284
  if (ParGCUseLocalOverflow) {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1285
    res = par_scan_state->take_from_overflow_stack();
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1286
  } else {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1287
    assert(!UseCompressedOops, "Error");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1288
    res = take_from_overflow_list_work(par_scan_state);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1289
  }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1290
  return res;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1291
}
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1292
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1293
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1294
// *NOTE*: The overflow list manipulation code here and
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1295
// in CMSCollector:: are very similar in shape,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1296
// except that in the CMS case we thread the objects
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1297
// directly into the list via their mark word, and do
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1298
// not need to deal with special cases below related
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1299
// to chunking of object arrays and promotion failure
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1300
// handling.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1301
// CR 6797058 has been filed to attempt consolidation of
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1302
// the common code.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1303
// Because of the common code, if you make any changes in
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1304
// the code below, please check the CMS version to see if
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1305
// similar changes might be needed.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1306
// See CMSCollector::par_take_from_overflow_list() for
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1307
// more extensive documentation comments.
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1308
bool ParNewGeneration::take_from_overflow_list_work(ParScanThreadState* par_scan_state) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
  ObjToScanQueue* work_q = par_scan_state->work_queue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  // How many to take?
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1311
  size_t objsFromOverflow = MIN2((size_t)(work_q->max_elems() - work_q->size())/4,
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1312
                                 (size_t)ParGCDesiredObjsFromOverflowList);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  1314
  assert(!UseCompressedOops, "Error");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1315
  assert(par_scan_state->overflow_stack() == NULL, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  if (_overflow_list == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  // Otherwise, there was something there; try claiming the list.
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1319
  oop prefix = cast_to_oop(Atomic::xchg((oopDesc*)BUSY, &_overflow_list));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1320
  // Trim off a prefix of at most objsFromOverflow items
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1321
  Thread* tid = Thread::current();
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30883
diff changeset
  1322
  size_t spin_count = ParallelGCThreads;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1323
  size_t sleep_time_millis = MAX2((size_t)1, objsFromOverflow/100);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1324
  for (size_t spin = 0; prefix == BUSY && spin < spin_count; spin++) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1325
    // someone grabbed it before we did ...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1326
    // ... we spin for a short while...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1327
    os::sleep(tid, sleep_time_millis, false);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1328
    if (_overflow_list == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1329
      // nothing left to take
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1330
      return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1331
    } else if (_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1332
     // try and grab the prefix
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1333
     prefix = cast_to_oop(Atomic::xchg((oopDesc*)BUSY, &_overflow_list));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1334
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1336
  if (prefix == NULL || prefix == BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1337
     // Nothing to take or waited long enough
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1338
     if (prefix == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1339
       // Write back the NULL in case we overwrote it with BUSY above
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1340
       // and it is still the same value.
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1341
       (void) Atomic::cmpxchg((oopDesc*)NULL, &_overflow_list, (oopDesc*)BUSY);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1342
     }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1343
     return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1344
  }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1345
  assert(prefix != NULL && prefix != BUSY, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  oop cur = prefix;
41184
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1347
  for (size_t i = 1; i < objsFromOverflow; ++i) {
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1348
    oop next = cur->list_ptr_from_klass();
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1349
    if (next == NULL) break;
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1350
    cur = next;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  }
41184
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1352
  assert(cur != NULL, "Loop postcondition");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  // Reattach remaining (suffix) to overflow list
41184
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1355
  oop suffix = cur->list_ptr_from_klass();
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1356
  if (suffix == NULL) {
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1357
    // Write back the NULL in lieu of the BUSY we wrote
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1358
    // above and it is still the same value.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1359
    if (_overflow_list == BUSY) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1360
      (void) Atomic::cmpxchg((oopDesc*)NULL, &_overflow_list, (oopDesc*)BUSY);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
    }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1362
  } else {
41184
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1363
    assert(suffix != BUSY, "Error");
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1364
    // suffix will be put back on global list
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1365
    cur->set_klass_to_list_ptr(NULL);     // break off suffix
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1366
    // It's possible that the list is still in the empty(busy) state
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1367
    // we left it in a short while ago; in that case we may be
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1368
    // able to place back the suffix.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1369
    oop observed_overflow_list = _overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1370
    oop cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1371
    bool attached = false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1372
    while (observed_overflow_list == BUSY || observed_overflow_list == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1373
      observed_overflow_list =
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1374
        Atomic::cmpxchg((oopDesc*)suffix, &_overflow_list, (oopDesc*)cur_overflow_list);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1375
      if (cur_overflow_list == observed_overflow_list) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1376
        attached = true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1377
        break;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1378
      } else cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1379
    }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1380
    if (!attached) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1381
      // Too bad, someone else got in in between; we'll need to do a splice.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1382
      // Find the last item of suffix list
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1383
      oop last = suffix;
41184
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1384
      while (true) {
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1385
        oop next = last->list_ptr_from_klass();
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1386
        if (next == NULL) break;
9d76828a29ae 8166229: Eliminate ParNew's use of klass_or_null()
kbarrett
parents: 40922
diff changeset
  1387
        last = next;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1388
      }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1389
      // Atomically prepend suffix to current overflow list
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1390
      observed_overflow_list = _overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1391
      do {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1392
        cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1393
        if (cur_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1394
          // Do the splice ...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1395
          last->set_klass_to_list_ptr(cur_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1396
        } else { // cur_overflow_list == BUSY
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1397
          last->set_klass_to_list_ptr(NULL);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1398
        }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1399
        observed_overflow_list =
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1400
          Atomic::cmpxchg((oopDesc*)suffix, &_overflow_list, (oopDesc*)cur_overflow_list);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1401
      } while (cur_overflow_list != observed_overflow_list);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  // Push objects on prefix list onto this thread's work queue
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1406
  assert(prefix != NULL && prefix != BUSY, "program logic");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
  cur = prefix;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1408
  ssize_t n = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
  while (cur != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
    oop obj_to_push = cur->forwardee();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1411
    oop next        = cur->list_ptr_from_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
    cur->set_klass(obj_to_push->klass());
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1413
    // This may be an array object that is self-forwarded. In that case, the list pointer
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1414
    // space, cur, is not in the Java heap, but rather in the C-heap and should be freed.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1415
    if (!is_in_reserved(cur)) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1416
      // This can become a scaling bottleneck when there is work queue overflow coincident
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1417
      // with promotion failure.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1418
      oopDesc* f = cur;
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27251
diff changeset
  1419
      FREE_C_HEAP_ARRAY(oopDesc, f);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1420
    } else if (par_scan_state->should_be_partially_scanned(obj_to_push, cur)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
      assert(arrayOop(cur)->length() == 0, "entire array remaining to be scanned");
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1422
      obj_to_push = cur;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
    }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1424
    bool ok = work_q->push(obj_to_push);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1425
    assert(ok, "Should have succeeded");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
    cur = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
    n++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  }
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
  1429
  TASKQUEUE_STATS_ONLY(par_scan_state->note_overflow_refill(n));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1430
#ifndef PRODUCT
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1431
  assert(_num_par_pushes >= n, "Too many pops?");
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47622
diff changeset
  1432
  Atomic::sub(n, &_num_par_pushes);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1433
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
}
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1436
#undef BUSY
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1438
void ParNewGeneration::ref_processor_init() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  if (_ref_processor == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
    // Allocate and initialize a reference processor
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49722
diff changeset
  1441
    _span_based_discoverer.set_span(_reserved);
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1442
    _ref_processor =
49964
99e698e94cc7 8201492: Properly implement non-contiguous generations for Reference discovery
tschatzl
parents: 49722
diff changeset
  1443
      new ReferenceProcessor(&_span_based_discoverer,    // span
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1444
                             ParallelRefProcEnabled && (ParallelGCThreads > 1), // mt processing
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30883
diff changeset
  1445
                             ParallelGCThreads,          // mt processing degree
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1446
                             refs_discovery_is_mt(),     // mt discovery
31330
77061bb01b18 8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents: 30883
diff changeset
  1447
                             ParallelGCThreads,          // mt discovery degree
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1448
                             refs_discovery_is_atomic(), // atomic_discovery
24845
e8b8894a77df 8043239: G1: Missing post barrier in processing of j.l.ref.Reference objects
brutisso
parents: 24424
diff changeset
  1449
                             NULL);                      // is_alive_non_header
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
const char* ParNewGeneration::name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  return "par new generation";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
}
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1456
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1457
void ParNewGeneration::restore_preserved_marks() {
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1458
  SharedRestorePreservedMarksTaskExecutor task_executor(CMSHeap::heap()->workers());
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1459
  _preserved_marks_set.restore(&task_executor);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents: 47580
diff changeset
  1460
}