hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
author jwilhelm
Tue, 28 Apr 2015 23:37:11 +0200
changeset 30572 3d36f972d68b
parent 30571 9223db5721fe
parent 30568 d0a24d56d8ea
child 30585 12f312d694cd
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29327
b539902e30f8 8073466: Remove buffer retaining functionality and clean up in ParGCAllocBuffer
tschatzl
parents: 28940
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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"
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 29689
diff changeset
    26
#include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    27
#include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    28
#include "gc_implementation/parNew/parNewGeneration.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    29
#include "gc_implementation/parNew/parOopClosures.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    30
#include "gc_implementation/shared/adaptiveSizePolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    31
#include "gc_implementation/shared/ageTable.hpp"
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25492
diff changeset
    32
#include "gc_implementation/shared/copyFailedInfo.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
    33
#include "gc_implementation/shared/gcHeapSummary.hpp"
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
    34
#include "gc_implementation/shared/gcTimer.hpp"
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
    35
#include "gc_implementation/shared/gcTrace.hpp"
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
    36
#include "gc_implementation/shared/gcTraceTime.hpp"
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
    37
#include "gc_implementation/shared/plab.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    38
#include "gc_implementation/shared/spaceDecorator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    39
#include "memory/defNewGeneration.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    40
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    41
#include "memory/genOopClosures.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    42
#include "memory/generation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    43
#include "memory/referencePolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    44
#include "memory/resourceArea.hpp"
30153
596ed88949ad 8076289: Move the StrongRootsScope out of SharedHeap
brutisso
parents: 29799
diff changeset
    45
#include "memory/strongRootsScope.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    46
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    47
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    48
#include "oops/oop.inline.hpp"
25351
7c198a690050 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents: 25350
diff changeset
    49
#include "runtime/atomic.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    50
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    51
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    52
#include "runtime/java.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 22882
diff changeset
    53
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    54
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    55
#include "utilities/globalDefinitions.hpp"
30175
543725014c9d 8076457: Fix includes of inline.hpp in GC code
stefank
parents: 30173
diff changeset
    56
#include "utilities/stack.inline.hpp"
30566
18eb9aa972d0 8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents: 30275
diff changeset
    57
#include "utilities/taskqueue.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    58
#include "utilities/workgroup.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#ifdef _MSC_VER
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#pragma warning( push )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#pragma warning( disable:4355 ) // 'this' : used in base member initializer list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
ParScanThreadState::ParScanThreadState(Space* to_space_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                                       ParNewGeneration* gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                                       Generation* old_gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                                       int thread_num_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                       ObjToScanQueueSet* work_queue_set_,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
    69
                                       Stack<oop, mtGC>* overflow_stacks_,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                       size_t desired_plab_sz_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
                                       ParallelTaskTerminator& term_) :
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
    72
  _to_space(to_space_), _old_gen(old_gen_), _young_gen(gen_), _thread_num(thread_num_),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  _work_queue(work_queue_set_->queue(thread_num_)), _to_space_full(false),
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
    74
  _overflow_stack(overflow_stacks_ ? overflow_stacks_ + thread_num_ : NULL),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  _ageTable(false), // false ==> not the global age table, no perf data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _to_space_alloc_buffer(desired_plab_sz_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  _to_space_closure(gen_, this), _old_gen_closure(gen_, this),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  _to_space_root_closure(gen_, this), _old_gen_root_closure(gen_, this),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _older_gen_closure(gen_, this),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _evacuate_followers(this, &_to_space_closure, &_old_gen_closure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                      &_to_space_root_closure, gen_, &_old_gen_root_closure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                      work_queue_set_, &term_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  _is_alive_closure(gen_), _scan_weak_ref_closure(gen_, this),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _keep_alive_closure(&_scan_weak_ref_closure),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  _strong_roots_time(0.0), _term_time(0.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
{
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    87
  #if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    88
  _term_attempts = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    89
  _overflow_refills = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    90
  _overflow_refill_objs = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    91
  #endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
    92
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _survivor_chunk_array =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    (ChunkArray*) old_gen()->get_data_recorder(thread_num());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  _hash_seed = 17;  // Might want to take time-based random value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  _start = os::elapsedTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _old_gen_closure.set_generation(old_gen_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  _old_gen_root_closure.set_generation(old_gen_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#ifdef _MSC_VER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#pragma warning( pop )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void ParScanThreadState::record_survivor_plab(HeapWord* plab_start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                              size_t plab_word_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  ChunkArray* sca = survivor_chunk_array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  if (sca != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // A non-null SCA implies that we want the PLAB data recorded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    sca->record_sample(plab_start, plab_word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
bool ParScanThreadState::should_be_partially_scanned(oop new_obj, oop old_obj) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  return new_obj->is_objArray() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
         arrayOop(new_obj)->length() > ParGCArrayScanChunk &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
         new_obj != old_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
void ParScanThreadState::scan_partial_array_and_push_remainder(oop old) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  assert(old->is_objArray(), "must be obj array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  assert(old->is_forwarded(), "must be forwarded");
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   122
  assert(GenCollectedHeap::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
   123
  assert(!old_gen()->is_in(old), "must be in young generation.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  objArrayOop obj = objArrayOop(old->forwardee());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Process ParGCArrayScanChunk elements now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // and push the remainder back onto queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  int start     = arrayOop(old)->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  int end       = obj->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  int remainder = end - start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  assert(start <= end, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (remainder > 2 * ParGCArrayScanChunk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    // Test above combines last partial chunk with a full chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    end = start + ParGCArrayScanChunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    arrayOop(old)->set_length(end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    // Push remainder.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    bool ok = work_queue()->push(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    assert(ok, "just popped, push must be okay");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // Restore length so that it can be used if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // is a promotion failure and forwarding pointers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    // must be removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    arrayOop(old)->set_length(end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   145
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // 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
   147
  // should make sure end is even (aligned to HeapWord in case of compressed oops)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if ((HeapWord *)obj < young_old_boundary()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    // 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
   150
    obj->oop_iterate_range(&_to_space_closure, start, end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    // 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
   153
    obj->oop_iterate_range(&_old_gen_closure, start, end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
void ParScanThreadState::trim_queues(int max_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  ObjToScanQueue* queue = work_queue();
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   160
  do {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   161
    while (queue->size() > (juint)max_size) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   162
      oop obj_to_scan;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   163
      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
   164
        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
   165
          if (obj_to_scan->is_objArray() &&
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   166
              obj_to_scan->is_forwarded() &&
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   167
              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
   168
            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
   169
          } else {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   170
            // object is in to_space
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   171
            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
   172
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
        } else {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   174
          // object is in old generation
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   175
          obj_to_scan->oop_iterate(&_old_gen_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    }
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   179
    // 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
   180
    // 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
   181
    // 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
   182
    // 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
   183
    // 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
   184
    // 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
   185
    // private overflow stack.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   186
  } 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
   187
}
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   188
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   189
bool ParScanThreadState::take_from_overflow_stack() {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   190
  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
   191
  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
   192
  ObjToScanQueue* queue = work_queue();
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   193
  Stack<oop, mtGC>* const of_stack = overflow_stack();
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   194
  const size_t num_overflow_elems = of_stack->size();
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   195
  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
   196
  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
   197
                                     ParGCDesiredObjsFromOverflowList,
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   198
                                     num_overflow_elems);
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   199
  // 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
   200
  // stack to our work queue.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   201
  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
   202
    oop cur = of_stack->pop();
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   203
    oop obj_to_push = cur->forwardee();
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   204
    assert(GenCollectedHeap::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
   205
    assert(!old_gen()->is_in_reserved(cur), "Should be in young gen");
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   206
    assert(GenCollectedHeap::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
   207
    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
   208
      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
   209
      obj_to_push = cur;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   210
    }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   211
    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
   212
    assert(ok, "Should have succeeded");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
   214
  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
   215
  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
   216
}
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
void ParScanThreadState::push_on_overflow_stack(oop p) {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   219
  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
   220
  overflow_stack()->push(p);
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");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
HeapWord* ParScanThreadState::alloc_in_to_space_slow(size_t word_sz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // Otherwise, if the object is small enough, try to reallocate the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  HeapWord* obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (!_to_space_full) {
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
   230
    PLAB* const plab = to_space_alloc_buffer();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    Space*            const sp   = to_space();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    if (word_sz * 100 <
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
        ParallelGCBufferWastePct * plab->word_sz()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      // 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
   235
      plab->retire();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      size_t buf_size = plab->word_sz();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      HeapWord* buf_space = sp->par_allocate(buf_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      if (buf_space == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
        const size_t min_bytes =
30275
41fef3a62cc8 8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents: 30274
diff changeset
   240
          PLAB::min_size() << LogHeapWordSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
        size_t free_bytes = sp->free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
        while(buf_space == NULL && free_bytes >= min_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
          buf_size = free_bytes >> LogHeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
          assert(buf_size == (size_t)align_object_size(buf_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
                 "Invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
          buf_space  = sp->par_allocate(buf_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
          free_bytes = sp->free();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      if (buf_space != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        plab->set_word_size(buf_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        plab->set_buf(buf_space);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
        record_survivor_plab(buf_space, buf_size);
25905
04a3d83cc752 8031323: Optionally align objects copied to survivor spaces
jmasa
parents: 25492
diff changeset
   254
        obj = plab->allocate_aligned(word_sz, SurvivorAlignmentInBytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
        // 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
   256
        // because of AlignmentReserve (see PLAB::allocate()).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
        assert(obj != NULL || plab->words_remaining() < word_sz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
               "Else should have been able to allocate");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
        // It's conceivable that we may be able to use the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
        // buffer we just grabbed for subsequent small requests
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
        // even if not for this one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
        // We're used up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
        _to_space_full = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      // Too large; allocate the object individually.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      obj = sp->par_allocate(word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  return obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
30564
a37d98a1eb54 8071462: Remove G1ParGCAllocator::alloc_buffer_waste
tschatzl
parents: 30275
diff changeset
   276
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
   277
  to_space_alloc_buffer()->undo_allocation(obj, word_sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   280
void ParScanThreadState::print_promotion_failure_size() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   281
  if (_promotion_failed_info.has_failed() && PrintPromotionFailure) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   282
    gclog_or_tty->print(" (%d: promotion failure size = " SIZE_FORMAT ") ",
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   283
                        _thread_num, _promotion_failed_info.first_size());
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   284
  }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   285
}
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   286
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
class ParScanThreadStateSet: private ResourceArray {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // Initializes states for the specified number of threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  ParScanThreadStateSet(int                     num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
                        Space&                  to_space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
                        ParNewGeneration&       gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                        Generation&             old_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                        ObjToScanQueueSet&      queue_set,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   295
                        Stack<oop, mtGC>*       overflow_stacks_,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
                        size_t                  desired_plab_sz,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
                        ParallelTaskTerminator& term);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   298
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   299
  ~ParScanThreadStateSet() { TASKQUEUE_STATS_ONLY(reset_stats()); }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   300
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   301
  inline ParScanThreadState& thread_state(int i);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   302
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   303
  void trace_promotion_failed(const YoungGCTracer* gc_tracer);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   304
  void reset(int active_workers, bool promotion_failed);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  void flush();
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
  #if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   308
  static void
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   309
    print_termination_stats_hdr(outputStream* const st = gclog_or_tty);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   310
  void print_termination_stats(outputStream* const st = gclog_or_tty);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   311
  static void
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   312
    print_taskqueue_stats_hdr(outputStream* const st = gclog_or_tty);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   313
  void print_taskqueue_stats(outputStream* const st = gclog_or_tty);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   314
  void reset_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   315
  #endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   316
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  ParallelTaskTerminator& _term;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  ParNewGeneration&       _gen;
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   320
  Generation&             _old_gen;
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   321
 public:
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   322
  bool is_valid(int id) const { return id < length(); }
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   323
  ParallelTaskTerminator* terminator() { return &_term; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
ParScanThreadStateSet::ParScanThreadStateSet(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  int num_threads, Space& to_space, ParNewGeneration& gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  Generation& old_gen, ObjToScanQueueSet& queue_set,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   330
  Stack<oop, mtGC>* overflow_stacks,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  size_t desired_plab_sz, ParallelTaskTerminator& term)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  : ResourceArray(sizeof(ParScanThreadState), num_threads),
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   333
    _gen(gen), _old_gen(old_gen), _term(term)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  assert(num_threads > 0, "sanity check!");
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   336
  assert(ParGCUseLocalOverflow == (overflow_stacks != NULL),
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   337
         "overflow_stack allocation mismatch");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // Initialize states.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  for (int i = 0; i < num_threads; ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    new ((ParScanThreadState*)_data + i)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
        ParScanThreadState(&to_space, &gen, &old_gen, i, &queue_set,
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   342
                           overflow_stacks, desired_plab_sz, term);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   346
inline ParScanThreadState& ParScanThreadStateSet::thread_state(int i)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  assert(i >= 0 && i < length(), "sanity check!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  return ((ParScanThreadState*)_data)[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   352
void ParScanThreadStateSet::trace_promotion_failed(const YoungGCTracer* gc_tracer) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   353
  for (int i = 0; i < length(); ++i) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   354
    if (thread_state(i).promotion_failed()) {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   355
      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
   356
      thread_state(i).promotion_failed_info().reset();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   357
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   358
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   359
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   361
void ParScanThreadStateSet::reset(int active_threads, bool promotion_failed)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
{
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   363
  _term.reset_for_reuse(active_threads);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   364
  if (promotion_failed) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   365
    for (int i = 0; i < length(); ++i) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   366
      thread_state(i).print_promotion_failure_size();
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   367
    }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   368
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   371
#if TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   372
void
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   373
ParScanThreadState::reset_stats()
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   374
{
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   375
  taskqueue_stats().reset();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   376
  _term_attempts = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   377
  _overflow_refills = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   378
  _overflow_refill_objs = 0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   379
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   380
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   381
void ParScanThreadStateSet::reset_stats()
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   382
{
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   383
  for (int i = 0; i < length(); ++i) {
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   384
    thread_state(i).reset_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   385
  }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   386
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   387
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   388
void
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   389
ParScanThreadStateSet::print_termination_stats_hdr(outputStream* const st)
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   390
{
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   391
  st->print_raw_cr("GC Termination Stats");
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   392
  st->print_raw_cr("     elapsed  --strong roots-- "
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   393
                   "-------termination-------");
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   394
  st->print_raw_cr("thr     ms        ms       %   "
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   395
                   "    ms       %   attempts");
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   396
  st->print_raw_cr("--- --------- --------- ------ "
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
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   400
void ParScanThreadStateSet::print_termination_stats(outputStream* const st)
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   401
{
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   402
  print_termination_stats_hdr(st);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   403
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   404
  for (int i = 0; i < length(); ++i) {
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   405
    const ParScanThreadState & pss = thread_state(i);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   406
    const double elapsed_ms = pss.elapsed_time() * 1000.0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   407
    const double s_roots_ms = pss.strong_roots_time() * 1000.0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   408
    const double term_ms = pss.term_time() * 1000.0;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   409
    st->print_cr("%3d %9.2f %9.2f %6.2f "
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   410
                 "%9.2f %6.2f " SIZE_FORMAT_W(8),
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   411
                 i, elapsed_ms, s_roots_ms, s_roots_ms * 100 / elapsed_ms,
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   412
                 term_ms, term_ms * 100 / elapsed_ms, pss.term_attempts());
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   413
  }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   414
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   415
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   416
// Print stats related to work queue activity.
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   417
void ParScanThreadStateSet::print_taskqueue_stats_hdr(outputStream* const st)
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   418
{
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   419
  st->print_raw_cr("GC Task Stats");
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   420
  st->print_raw("thr "); TaskQueueStats::print_header(1, st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   421
  st->print_raw("--- "); TaskQueueStats::print_header(2, st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   422
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   423
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   424
void ParScanThreadStateSet::print_taskqueue_stats(outputStream* const st)
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   425
{
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   426
  print_taskqueue_stats_hdr(st);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   427
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   428
  TaskQueueStats totals;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   429
  for (int i = 0; i < length(); ++i) {
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   430
    const ParScanThreadState & pss = thread_state(i);
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   431
    const TaskQueueStats & stats = pss.taskqueue_stats();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   432
    st->print("%3d ", i); stats.print(st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   433
    totals += stats;
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   434
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   435
    if (pss.overflow_refills() > 0) {
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   436
      st->print_cr("    " SIZE_FORMAT_W(10) " overflow refills    "
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   437
                   SIZE_FORMAT_W(10) " overflow objects",
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   438
                   pss.overflow_refills(), pss.overflow_refill_objs());
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   439
    }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   440
  }
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   441
  st->print("tot "); totals.print(st); st->cr();
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   442
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   443
  DEBUG_ONLY(totals.verify());
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   444
}
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   445
#endif // TASKQUEUE_STATS
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   446
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
void ParScanThreadStateSet::flush()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
{
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   449
  // Work in this loop should be kept as lightweight as
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   450
  // possible since this might otherwise become a bottleneck
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   451
  // to scaling. Should we add heavy-weight work into this
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   452
  // loop, consider parallelizing the loop into the worker threads.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  for (int i = 0; i < length(); ++i) {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   454
    ParScanThreadState& par_scan_state = thread_state(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    // Flush stats related to To-space PLAB activity and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    // retire the last buffer.
29327
b539902e30f8 8073466: Remove buffer retaining functionality and clean up in ParGCAllocBuffer
tschatzl
parents: 28940
diff changeset
   458
    par_scan_state.to_space_alloc_buffer()->flush_and_retire_stats(_gen.plab_stats());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    // Every thread has its own age table.  We need to merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    // them all into one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    ageTable *local_table = par_scan_state.age_table();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    _gen.age_table()->merge(local_table);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    // Inform old gen that we're done.
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   466
    _old_gen.par_promote_alloc_done(i);
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   467
    _old_gen.par_oop_since_save_marks_iterate_done(i);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
   468
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
27251
7d667f91ec8d 6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents: 27154
diff changeset
   470
  if (UseConcMarkSweepGC) {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   471
    // We need to call this even when ResizeOldPLAB is disabled
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   472
    // 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
   473
    // 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
   474
    // 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
   475
    // performance.
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   476
    CFLS_LAB::compute_desired_plab_size();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 3908
diff changeset
   477
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
ParScanClosure::ParScanClosure(ParNewGeneration* g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
                               ParScanThreadState* par_scan_state) :
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
   482
  OopsInKlassOrGenClosure(g), _par_scan_state(par_scan_state), _g(g)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  assert(_g->level() == 0, "Optimized for youngest generation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  _boundary = _g->reserved().end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   488
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
   489
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
   490
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   491
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
   492
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
   493
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   494
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
   495
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
   496
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   497
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
   498
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
   499
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
ParScanWeakRefClosure::ParScanWeakRefClosure(ParNewGeneration* g,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
                                             ParScanThreadState* par_scan_state)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  : 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
   503
{}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   504
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   505
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
   506
void ParScanWeakRefClosure::do_oop(narrowOop* p) { ParScanWeakRefClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
#ifdef WIN32
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
#pragma warning(disable: 4786) /* identifier was truncated to '255' characters in the browser information */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
ParEvacuateFollowersClosure::ParEvacuateFollowersClosure(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    ParScanThreadState* par_scan_state_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    ParScanWithoutBarrierClosure* to_space_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    ParScanWithBarrierClosure* old_gen_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    ParRootScanWithoutBarrierClosure* to_space_root_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    ParNewGeneration* par_gen_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    ParRootScanWithBarrierTwoGensClosure* old_gen_root_closure_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    ObjToScanQueueSet* task_queues_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    ParallelTaskTerminator* terminator_) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    _par_scan_state(par_scan_state_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    _to_space_closure(to_space_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    _old_gen_closure(old_gen_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    _to_space_root_closure(to_space_root_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    _old_gen_root_closure(old_gen_root_closure_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    _par_gen(par_gen_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    _task_queues(task_queues_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    _terminator(terminator_)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
{}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
void ParEvacuateFollowersClosure::do_void() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  ObjToScanQueue* work_q = par_scan_state()->work_queue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    // Scan to-space and old-gen objs until we run out of both.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    oop obj_to_scan;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    par_scan_state()->trim_queues(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    // We have no local work, attempt to steal from other threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    // attempt to steal work from promoted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    if (task_queues()->steal(par_scan_state()->thread_num(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
                             par_scan_state()->hash_seed(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
                             obj_to_scan)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
      bool res = work_q->push(obj_to_scan);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      assert(res, "Empty queue should have room for a push.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
      //   if successful, goto Start.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      // try global overflow list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    } else if (par_gen()->take_from_overflow_list(par_scan_state())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    // Otherwise, offer termination.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    par_scan_state()->start_term_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    if (terminator()->offer_termination()) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    par_scan_state()->end_term_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   563
  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
   564
         "Broken overflow list?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  // Finish the last termination pause.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  par_scan_state()->end_term_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   569
ParNewGenTask::ParNewGenTask(ParNewGeneration* gen, Generation* old_gen,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   570
                             HeapWord* young_old_boundary, ParScanThreadStateSet* state_set) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    AbstractGangTask("ParNewGeneration collection"),
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   572
    _gen(gen), _old_gen(old_gen),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    _young_old_boundary(young_old_boundary),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    _state_set(state_set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   577
// Reset the terminator for the given number of
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   578
// active threads.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   579
void ParNewGenTask::set_for_termination(int active_workers) {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   580
  _state_set->reset(active_workers, _gen->promotion_failed());
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   581
  // Should the heap be passed in?  There's only 1 for now so
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   582
  // grab it instead.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   583
  GenCollectedHeap* gch = GenCollectedHeap::heap();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   584
  gch->set_n_termination(active_workers);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   585
}
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   586
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   587
void ParNewGenTask::work(uint worker_id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // Since this is being done in a separate thread, need new resource
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // and handle marks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   594
  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
   595
  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
   596
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  par_scan_state.set_young_old_boundary(_young_old_boundary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
   599
  KlassScanClosure klass_scan_closure(&par_scan_state.to_space_root_closure(),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
   600
                                      gch->rem_set()->klass_rem_set());
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   601
  CLDToKlassAndOopClosure cld_scan_closure(&klass_scan_closure,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   602
                                           &par_scan_state.to_space_root_closure(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   603
                                           false);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
   604
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  par_scan_state.start_strong_roots();
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   606
  gch->gen_process_roots(_gen->level(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   607
                         true,  // Process younger gens, if any,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   608
                                // as strong roots.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   609
                         false, // no scope; this is parallel code
29693
fac175f7a466 8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents: 29690
diff changeset
   610
                         GenCollectedHeap::SO_ScavengeCodeCache,
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   611
                         GenCollectedHeap::StrongAndWeakRoots,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   612
                         &par_scan_state.to_space_root_closure(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   613
                         &par_scan_state.older_gen_closure(),
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   614
                         &cld_scan_closure);
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();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
#ifdef _MSC_VER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
#pragma warning( push )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
#pragma warning( disable:4355 ) // 'this' : used in base member initializer list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
ParNewGeneration::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  : DefNewGeneration(rs, initial_byte_size, level, "PCopy"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  _overflow_list(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  _is_alive_closure(this),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  _plab_stats(YoungPLABSize, PLABWeight)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
{
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   633
  NOT_PRODUCT(_overflow_counter = ParGCWorkQueueOverflowInterval;)
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
   634
  NOT_PRODUCT(_num_par_pushes = 0;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  _task_queues = new ObjToScanQueueSet(ParallelGCThreads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  guarantee(_task_queues != NULL, "task_queues allocation failure.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  for (uint i1 = 0; i1 < ParallelGCThreads; i1++) {
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5547
diff changeset
   639
    ObjToScanQueue *q = new ObjToScanQueue();
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5547
diff changeset
   640
    guarantee(q != NULL, "work_queue Allocation failure.");
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5547
diff changeset
   641
    _task_queues->register_queue(i1, q);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  for (uint i2 = 0; i2 < ParallelGCThreads; i2++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    _task_queues->queue(i2)->initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   647
  _overflow_stacks = NULL;
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   648
  if (ParGCUseLocalOverflow) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   649
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   650
    // typedef to workaround NEW_C_HEAP_ARRAY macro, which can not deal
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   651
    // with ','
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   652
    typedef Stack<oop, mtGC> GCOopStack;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   653
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   654
    _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
   655
    for (size_t i = 0; i < ParallelGCThreads; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
   656
      new (_overflow_stacks + i) Stack<oop, mtGC>();
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   657
    }
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   658
  }
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   659
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    const char* cname =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
         PerfDataManager::counter_name(_gen_counters->name_space(), "threads");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
                                     ParallelGCThreads, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
#ifdef _MSC_VER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
#pragma warning( pop )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
// ParNewGeneration::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
ParKeepAliveClosure::ParKeepAliveClosure(ParScanWeakRefClosure* cl) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  DefNewGeneration::KeepAliveClosure(cl), _par_cl(cl) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   678
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   679
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
   680
#ifdef ASSERT
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   681
  {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   682
    assert(!oopDesc::is_null(*p), "expected non-null ref");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   683
    oop obj = oopDesc::load_decode_heap_oop_not_null(p);
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.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   686
    assert(obj->is_oop(), "expected an oop while scanning weak refs");
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
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   692
  if (GenCollectedHeap::heap()->is_in_reserved(p)) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   693
    oop obj = oopDesc::load_decode_heap_oop_not_null(p);
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
  {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   709
    assert(!oopDesc::is_null(*p), "expected non-null ref");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   710
    oop obj = oopDesc::load_decode_heap_oop_not_null(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   711
    // 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
   712
    // as a weak reference.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   713
    assert(obj->is_oop(), "expected an oop while scanning weak refs");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   714
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   715
#endif // ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  _cl->do_oop_nv(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   719
  if (GenCollectedHeap::heap()->is_in_reserved(p)) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   720
    oop obj = oopDesc::load_decode_heap_oop_not_null(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   721
    _rs->write_ref_field_gc_par(p, obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
360
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(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
   726
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
   727
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   728
template <class T> void ScanClosureWithParBarrier::do_oop_work(T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   729
  T heap_oop = oopDesc::load_heap_oop(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   730
  if (!oopDesc::is_null(heap_oop)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   731
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    if ((HeapWord*)obj < _boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
      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
   734
      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
   735
                      ? obj->forwardee()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   736
                      : _g->DefNewGeneration::copy_to_survivor_space(obj);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   737
      oopDesc::encode_store_heap_oop_not_null(p, new_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    if (_gc_barrier) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
      // If p points to a younger generation, mark the card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
      if ((HeapWord*)obj < _gen_boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
        _rs->write_ref_field_gc_par(p, obj);
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
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 179
diff changeset
   748
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
   749
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
   750
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
class ParNewRefProcTaskProxy: public AbstractGangTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
public:
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   754
  ParNewRefProcTaskProxy(ProcessTask& task,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   755
                         ParNewGeneration& gen,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   756
                         Generation& old_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
                         HeapWord* young_old_boundary,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
                         ParScanThreadStateSet& state_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
private:
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   761
  virtual void work(uint worker_id);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   762
  virtual void set_for_termination(int active_workers) {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   763
    _state_set.terminator()->reset_for_reuse(active_workers);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   764
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  ParNewGeneration&      _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  ProcessTask&           _task;
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   768
  Generation&            _old_gen;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  HeapWord*              _young_old_boundary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  ParScanThreadStateSet& _state_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   773
ParNewRefProcTaskProxy::ParNewRefProcTaskProxy(ProcessTask& task,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   774
                                               ParNewGeneration& gen,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   775
                                               Generation& old_gen,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   776
                                               HeapWord* young_old_boundary,
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   777
                                               ParScanThreadStateSet& state_set)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  : AbstractGangTask("ParNewGeneration parallel reference processing"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    _gen(gen),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    _task(task),
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   781
    _old_gen(old_gen),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    _young_old_boundary(young_old_boundary),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    _state_set(state_set)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   787
void ParNewRefProcTaskProxy::work(uint worker_id)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  HandleMark hm;
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   791
  ParScanThreadState& par_scan_state = _state_set.thread_state(worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  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
   793
  _task.work(worker_id, par_scan_state.is_alive_closure(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
             par_scan_state.keep_alive_closure(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
             par_scan_state.evacuate_followers_closure());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
class ParNewRefEnqueueTaskProxy: public AbstractGangTask {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  typedef AbstractRefProcTaskExecutor::EnqueueTask EnqueueTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  EnqueueTask& _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  ParNewRefEnqueueTaskProxy(EnqueueTask& task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    : AbstractGangTask("ParNewGeneration parallel reference enqueue"),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      _task(task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   808
  virtual void work(uint worker_id)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  {
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   810
    _task.work(worker_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
void ParNewRefProcTaskExecutor::execute(ProcessTask& task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  GenCollectedHeap* gch = GenCollectedHeap::heap();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   818
  FlexibleWorkGang* workers = gch->workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  assert(workers != NULL, "Need parallel worker threads.");
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   820
  _state_set.reset(workers->active_workers(), _generation.promotion_failed());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  ParNewRefProcTaskProxy rp_task(task, _generation, *_generation.next_gen(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
                                 _generation.reserved().end(), _state_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  workers->run_task(&rp_task);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   824
  _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
   825
                   _generation.promotion_failed());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
void ParNewRefProcTaskExecutor::execute(EnqueueTask& task)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  GenCollectedHeap* gch = GenCollectedHeap::heap();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   831
  FlexibleWorkGang* workers = gch->workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  assert(workers != NULL, "Need parallel worker threads.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  ParNewRefEnqueueTaskProxy enq_task(task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  workers->run_task(&enq_task);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
void ParNewRefProcTaskExecutor::set_single_threaded_mode()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  _state_set.flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  gch->set_par_threads(0);  // 0 ==> non-parallel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  gch->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
ScanClosureWithParBarrier::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  ScanClosure(g, gc_barrier) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
EvacuateFollowersClosureGeneral::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
                                OopsInGenClosure* cur,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
                                OopsInGenClosure* older) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  _gch(gch), _level(level),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  _scan_cur_or_nonheap(cur), _scan_older(older)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
{}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
void EvacuateFollowersClosureGeneral::do_void() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    // Beware: this call will lead to closure applications via virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
    // calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    _gch->oop_since_save_marks_iterate(_level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
                                       _scan_cur_or_nonheap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
                                       _scan_older);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  } while (!_gch->no_allocs_since_save_marks(_level));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   868
// A Generation that does parallel young-gen collection.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   869
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   870
void ParNewGeneration::handle_promotion_failed(GenCollectedHeap* gch, ParScanThreadStateSet& thread_state_set) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   871
  assert(_promo_failure_scan_stack.is_empty(), "post condition");
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   872
  _promo_failure_scan_stack.clear(true); // Clear cached segments.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   873
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   874
  remove_forwarding_pointers();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   875
  if (PrintGCDetails) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   876
    gclog_or_tty->print(" (promotion failed)");
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   877
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   878
  // All the spaces are in play for mark-sweep.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   879
  swap_spaces();  // Make life simpler for CMS || rescan; see 6483690.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   880
  from()->set_next_compaction_space(to());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   881
  gch->set_incremental_collection_failed();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   882
  // 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
   883
  _old_gen->promotion_failure_occurred();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   884
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   885
  // Trace promotion failure in the parallel GC threads
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   886
  thread_state_set.trace_promotion_failed(gc_tracer());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   887
  // 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
   888
  if (_promotion_failed_info.has_failed()) {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   889
    _gc_tracer.report_promotion_failed(_promotion_failed_info);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   890
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   891
  // Reset the PromotionFailureALot counters.
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
   892
  NOT_PRODUCT(gch->reset_promotion_should_fail();)
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   893
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
void ParNewGeneration::collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
                               bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
                               size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
                               bool   is_tlab) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  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
   900
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  GenCollectedHeap* gch = GenCollectedHeap::heap();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   902
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 20282
diff changeset
   903
  _gc_timer->register_gc_start();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   904
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  AdaptiveSizePolicy* size_policy = gch->gen_policy()->size_policy();
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   906
  FlexibleWorkGang* workers = gch->workers();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   907
  assert(workers != NULL, "Need workgang for parallel work");
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   908
  int active_workers =
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   909
      AdaptiveSizePolicy::calc_active_workers(workers->total_workers(),
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   910
                                   workers->active_workers(),
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   911
                                   Threads::number_of_non_daemon_threads());
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   912
  workers->set_active_workers(active_workers);
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   913
  _old_gen = gch->old_gen();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   915
  // If the next generation is too full to accommodate worst-case promotion
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  // from this generation, pass on collection; let the next generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  // do it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  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
   919
    gch->set_incremental_collection_failed();  // slight lie, in that we did not even attempt one
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  assert(to()->is_empty(), "Else not collection_attempt_is_safe");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   924
  _gc_tracer.report_gc_start(gch->gc_cause(), _gc_timer->gc_start());
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   925
  gch->trace_heap_before_gc(gc_tracer());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   926
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  init_assuming_no_promotion_failure();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  if (UseAdaptiveSizePolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    set_survivor_overflow(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    size_policy->minor_collection_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   934
  GCTraceTime t1(GCCauseString("GC", gch->gc_cause()), PrintGC && !PrintGCDetails, true, NULL, _gc_tracer.gc_id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  // Capture heap used before collection (for printing).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  size_t gch_prev_used = gch->used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  age_table()->clear();
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
   939
  to()->clear(SpaceDecorator::Mangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  gch->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  assert(workers != NULL, "Need parallel worker threads.");
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   943
  int n_workers = active_workers;
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   944
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   945
  // Set the correct parallelism (number of queues) in the reference processor
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   946
  ref_processor()->set_active_mt_degree(n_workers);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   947
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   948
  // 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
   949
  // because only those workers go through the termination protocol.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   950
  ParallelTaskTerminator _term(n_workers, task_queues());
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   951
  ParScanThreadStateSet thread_state_set(workers->active_workers(),
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   952
                                         *to(), *this, *_old_gen, *task_queues(),
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
   953
                                         _overflow_stacks, desired_plab_sz(), _term);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
   955
  ParNewGenTask tsk(this, _old_gen, reserved().end(), &thread_state_set);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  gch->set_par_threads(n_workers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  gch->rem_set()->prepare_for_younger_refs_iterate(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  // It turns out that even when we're using 1 thread, doing the work in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  // separate thread causes wide variance in run times.  We can't help this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  // in the multi-threaded case, but we special-case n=1 here to get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  // repeatable measurements of the 1-thread overhead of the parallel code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  if (n_workers > 1) {
30153
596ed88949ad 8076289: Move the StrongRootsScope out of SharedHeap
brutisso
parents: 29799
diff changeset
   963
    StrongRootsScope srs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    workers->run_task(&tsk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  } else {
30153
596ed88949ad 8076289: Move the StrongRootsScope out of SharedHeap
brutisso
parents: 29799
diff changeset
   966
    StrongRootsScope srs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    tsk.work(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  }
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   969
  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
   970
                         promotion_failed());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
27895
bf55adf78eeb 8055239: assert(_thread == Thread::current()->osthread()) failed: The PromotionFailedInfo should be thread local
sangheki
parents: 27251
diff changeset
   972
  // 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
   973
  if (promotion_failed()) {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   974
    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
   975
  }
bf55adf78eeb 8055239: assert(_thread == Thread::current()->osthread()) failed: The PromotionFailedInfo should be thread local
sangheki
parents: 27251
diff changeset
   976
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  // Process (weak) reference objects found during scavenge.
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
   978
  ReferenceProcessor* rp = ref_processor();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  IsAliveClosure is_alive(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  ScanWeakRefClosure scan_weak_ref(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
  KeepAliveClosure keep_alive(&scan_weak_ref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  ScanClosure               scan_without_gc_barrier(this, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
  ScanClosureWithParBarrier scan_with_gc_barrier(this, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  set_promo_failure_scan_stack_closure(&scan_without_gc_barrier);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  EvacuateFollowersClosureGeneral evacuate_followers(gch, _level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    &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
   987
  rp->setup_policy(clear_all_soft_refs);
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 8688
diff changeset
   988
  // 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
   989
  rp->set_active_mt_degree(active_workers);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   990
  ReferenceProcessorStats stats;
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
   991
  if (rp->processing_is_mt()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
    ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   993
    stats = rp->process_discovered_references(&is_alive, &keep_alive,
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
   994
                                              &evacuate_followers, &task_executor,
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
   995
                                              _gc_timer, _gc_tracer.gc_id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
    thread_state_set.flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    gch->set_par_threads(0);  // 0 ==> non-parallel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    gch->save_marks();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1000
    stats = rp->process_discovered_references(&is_alive, &keep_alive,
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1001
                                              &evacuate_followers, NULL,
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1002
                                              _gc_timer, _gc_tracer.gc_id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  }
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1004
  _gc_tracer.report_gc_reference_stats(stats);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  if (!promotion_failed()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
    // Swap the survivor spaces.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1007
    eden()->clear(SpaceDecorator::Mangle);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1008
    from()->clear(SpaceDecorator::Mangle);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1009
    if (ZapUnusedHeapArea) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1010
      // 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
  1011
      // can check for valid mangling at intermediate points in the
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1012
      // collection(s).  When a minor collection fails to collect
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1013
      // sufficient space resizing of the young generation can occur
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1014
      // an redistribute the spaces in the young generation.  Mangle
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1015
      // 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
  1016
      // other spaces.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1017
      to()->mangle_unused_area();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 593
diff changeset
  1018
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
    swap_spaces();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4574
diff changeset
  1021
    // 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
  1022
    // for full GC's.
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4574
diff changeset
  1023
    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
  1024
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
    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
  1026
048f775ae371 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 15091
diff changeset
  1027
    adjust_desired_tenuring_threshold();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  } else {
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1029
    handle_promotion_failed(gch, thread_state_set);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  // set new iteration safe limit for the survivor spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  from()->set_concurrent_iteration_safe_limit(from()->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  to()->set_concurrent_iteration_safe_limit(to()->top());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  if (ResizePLAB) {
30571
9223db5721fe 8073204: Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 30564
diff changeset
  1036
    plab_stats()->adjust_desired_plab_sz();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  if (PrintGC && !PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    gch->print_heap_change(gch_prev_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
27154
ccf8883e01be 8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents: 25905
diff changeset
  1043
  TASKQUEUE_STATS_ONLY(if (PrintTerminationStats) thread_state_set.print_termination_stats());
ccf8883e01be 8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents: 25905
diff changeset
  1044
  TASKQUEUE_STATS_ONLY(if (PrintTaskqueue) thread_state_set.print_taskqueue_stats());
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
  1045
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  if (UseAdaptiveSizePolicy) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
    size_policy->minor_collection_end(gch->gc_cause());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    size_policy->avg_survived()->sample(from()->used());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
  1051
  // We need to use a monotonically non-decreasing time in ms
11755
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1052
  // or we will see time-warp warnings and os::javaTimeMillis()
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1053
  // does not guarantee monotonicity.
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1054
  jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11396
diff changeset
  1055
  update_time_of_last_gc(now);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1057
  rp->set_enqueuing_is_done(true);
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1058
  if (rp->processing_is_mt()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
    ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1060
    rp->enqueue_discovered_references(&task_executor);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  } else {
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1062
    rp->enqueue_discovered_references(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  }
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 977
diff changeset
  1064
  rp->verify_no_references_recorded();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1065
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1066
  gch->trace_heap_after_gc(gc_tracer());
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1067
  _gc_tracer.report_tenuring_threshold(tenuring_threshold());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1068
21767
41eaa9a17059 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 20282
diff changeset
  1069
  _gc_timer->register_gc_end();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1070
28940
c314cf1db3fa 8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents: 28630
diff changeset
  1071
  _gc_tracer.report_gc_end(_gc_timer->gc_end(), _gc_timer->time_partitions());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
30571
9223db5721fe 8073204: Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 30564
diff changeset
  1074
size_t ParNewGeneration::desired_plab_sz() {
9223db5721fe 8073204: Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 30564
diff changeset
  1075
  return _plab_stats.desired_plab_sz(GenCollectedHeap::heap()->workers()->active_workers());
9223db5721fe 8073204: Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 30564
diff changeset
  1076
}
9223db5721fe 8073204: Determining the desired PLAB size adjusts to the the number of threads at the wrong place
sangheki
parents: 30564
diff changeset
  1077
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
static int sum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
void ParNewGeneration::waste_some_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  for (int i = 0; i < 100; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    sum += i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19286
diff changeset
  1085
static const oop ClaimedForwardPtr = cast_to_oop<intptr_t>(0x4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
// Because of concurrency, there are times where an object for which
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
// "is_forwarded()" is true contains an "interim" forwarding pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
// value.  Such a value will soon be overwritten with a real value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
// This method requires "obj" to have a forwarding pointer, and waits, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
// necessary for a real one to be inserted, and returns it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
oop ParNewGeneration::real_forwardee(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  oop forward_ptr = obj->forwardee();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  if (forward_ptr != ClaimedForwardPtr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    return forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    return real_forwardee_slow(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
oop ParNewGeneration::real_forwardee_slow(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  // Spin-read if it is claimed but not yet written by another thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  oop forward_ptr = obj->forwardee();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  while (forward_ptr == ClaimedForwardPtr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
    waste_some_time();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
    assert(obj->is_forwarded(), "precondition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
    forward_ptr = obj->forwardee();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  return forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
void ParNewGeneration::preserve_mark_if_necessary(oop obj, markOop m) {
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
  1114
  if (m->must_be_preserved_for_promotion_failure(obj)) {
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
  1115
    // We should really have separate per-worker stacks, rather
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
  1116
    // than use locking of a common pair of stacks.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
    MutexLocker ml(ParGCRareEvent_lock);
7658
b970e410547a 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 7397
diff changeset
  1118
    preserve_mark(obj, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
// Multiple GC threads may try to promote an object.  If the object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
// is successfully promoted, a forwarding pointer will be installed in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
// the object in the young generation.  This method claims the right
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
// to install the forwarding pointer before it copies the object,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
// thus avoiding the need to undo the copy as in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
// copy_to_survivor_space_avoiding_with_undo.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
27899
17754211a7ab 8066133: Fix missing reivew changes for JDK-8065972
brutisso
parents: 27895
diff changeset
  1129
oop ParNewGeneration::copy_to_survivor_space(
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
        ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  // In the sequential version, this assert also says that the object is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  // not forwarded.  That might not be the case here.  It is the case that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  // the caller observed it to be not forwarded at some time in the past.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  assert(is_in_reserved(old), "shouldn't be scavenging this oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  // The sequential code read "old->age()" below.  That doesn't work here,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  // since the age is in the mark word, and that might be overwritten with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  // a forwarding pointer by a parallel thread.  So we must save the mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  // word in a local and then analyze it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  oopDesc dummyOld;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  dummyOld.set_mark(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  assert(!dummyOld.is_forwarded(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
         "should not be called with forwarding pointer mark word.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  oop new_obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  oop forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  // Try allocating obj in to-space (unless too old)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  if (dummyOld.age() < tenuring_threshold()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
    new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
    if (new_obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
      set_survivor_overflow(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  if (new_obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
    // Either to-space is full or we decided to promote
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
    // try allocating obj tenured
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
    // Attempt to install a null forwarding pointer (atomically),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
    // to claim the right to install the real forwarding pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
    forward_ptr = old->forward_to_atomic(ClaimedForwardPtr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
    if (forward_ptr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
      // someone else beat us to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
        return real_forwardee(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
28630
f140942b6fd8 8061259: ParNew promotion failed is serialized on a lock
brutisso
parents: 27905
diff changeset
  1168
    if (!_promotion_failed) {
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29327
diff changeset
  1169
      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
  1170
                                      old, m, sz);
28630
f140942b6fd8 8061259: ParNew promotion failed is serialized on a lock
brutisso
parents: 27905
diff changeset
  1171
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    if (new_obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
      // promotion failed, forward to self
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
      _promotion_failed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
      new_obj = old;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
      preserve_mark_if_necessary(old, m);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1179
      par_scan_state->register_promotion_failure(sz);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    old->forward_to(new_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    forward_ptr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
    // Is in to-space; do copying ourselves.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
    Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 30155
diff changeset
  1187
    assert(GenCollectedHeap::heap()->is_in_reserved(new_obj), "illegal forwarding pointer value.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    forward_ptr = old->forward_to_atomic(new_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    // Restore the mark word copied above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
    new_obj->set_mark(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    // Increment age if obj still in new generation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
    new_obj->incr_age();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    par_scan_state->age_table()->add(new_obj, sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  assert(new_obj != NULL, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1197
#ifndef PRODUCT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1198
  // 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
  1199
  // information.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1200
  if (TraceScavenge) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1201
    gclog_or_tty->print_cr("{%s %s " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1202
       is_in_reserved(new_obj) ? "copying" : "tenuring",
29799
3ad47a56094a 8076072: parNew: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29792
diff changeset
  1203
       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
  1204
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1205
#endif
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1206
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  if (forward_ptr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
    oop obj_to_push = new_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
      // Length field used as index of next element to be scanned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
      // Real length can be obtained from real_forwardee()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
      arrayOop(old)->set_length(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
      obj_to_push = old;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
      assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
             "push forwarded object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    // 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
  1218
    bool simulate_overflow = false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1219
    NOT_PRODUCT(
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1220
      if (ParGCWorkQueueOverflowALot && should_simulate_overflow()) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1221
        // simulate a stack overflow
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1222
        simulate_overflow = true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1223
      }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1224
    )
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1225
    if (simulate_overflow || !par_scan_state->work_queue()->push(obj_to_push)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
      // Add stats for overflow pushes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
      if (Verbose && PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
        gclog_or_tty->print("queue overflow!\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
      }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1230
      push_on_overflow_list(old, par_scan_state);
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
  1231
      TASKQUEUE_STATS_ONLY(par_scan_state->taskqueue_stats().record_overflow(0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
    return new_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  // Oops.  Someone beat us to it.  Undo the allocation.  Where did we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  // allocate it?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  if (is_in_reserved(new_obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    // Must be in to_space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    assert(to()->is_in_reserved(new_obj), "Checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
    if (forward_ptr == ClaimedForwardPtr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
      // Wait to get the real forwarding pointer value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
      forward_ptr = real_forwardee(old);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  return forward_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1252
#ifndef PRODUCT
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1253
// It's OK to call this multi-threaded;  the worst thing
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1254
// 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
  1255
// spaced simulated overflows, but that's OK, in fact
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1256
// probably good as it would exercise the overflow code
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1257
// under contention.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1258
bool ParNewGeneration::should_simulate_overflow() {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1259
  if (_overflow_counter-- <= 0) { // just being defensive
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1260
    _overflow_counter = ParGCWorkQueueOverflowInterval;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1261
    return true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1262
  } else {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1263
    return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1264
  }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1265
}
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1266
#endif
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1267
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1268
// 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
  1269
// 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
  1270
// 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
  1271
// 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
  1272
// 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
  1273
// 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
  1274
// 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
  1275
// 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
  1276
// 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
  1277
// 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
  1278
// 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
  1279
// 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
  1280
// 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
  1281
// 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
  1282
// 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
  1283
// 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
  1284
// 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
  1285
// (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
  1286
// 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
  1287
// as we were made painfully aware not long ago, see 6786503).
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19286
diff changeset
  1288
#define BUSY (cast_to_oop<intptr_t>(0x1aff1aff))
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1289
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
  1290
  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
  1291
  if (ParGCUseLocalOverflow) {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1292
    // 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
  1293
    // overflow stack.
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1294
    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
  1295
  } else {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1296
    assert(!UseCompressedOops, "Error");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1297
    // 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
  1298
    // 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
  1299
    // 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
  1300
    // 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
  1301
    // and should be fixed. XXX FIX ME !!!
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1302
#ifndef PRODUCT
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1303
    Atomic::inc_ptr(&_num_par_pushes);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1304
    assert(_num_par_pushes > 0, "Tautology");
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1305
#endif
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1306
    if (from_space_obj->forwardee() == from_space_obj) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12630
diff changeset
  1307
      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
  1308
      listhead->forward_to(from_space_obj);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1309
      from_space_obj = listhead;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1310
    }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1311
    oop observed_overflow_list = _overflow_list;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1312
    oop cur_overflow_list;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1313
    do {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1314
      cur_overflow_list = observed_overflow_list;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1315
      if (cur_overflow_list != BUSY) {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1316
        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
  1317
      } else {
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1318
        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
  1319
      }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1320
      observed_overflow_list =
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1321
        (oop)Atomic::cmpxchg_ptr(from_space_obj, &_overflow_list, cur_overflow_list);
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1322
    } while (cur_overflow_list != observed_overflow_list);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1326
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
  1327
  bool res;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1328
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1329
  if (ParGCUseLocalOverflow) {
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1330
    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
  1331
  } else {
2362
5e1bfddf919e 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 2346
diff changeset
  1332
    assert(!UseCompressedOops, "Error");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1333
    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
  1334
  }
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1335
  return res;
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1336
}
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1337
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1338
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1339
// *NOTE*: The overflow list manipulation code here and
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1340
// in CMSCollector:: are very similar in shape,
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1341
// except that in the CMS case we thread the objects
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1342
// directly into the list via their mark word, and do
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1343
// not need to deal with special cases below related
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1344
// to chunking of object arrays and promotion failure
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1345
// handling.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1346
// CR 6797058 has been filed to attempt consolidation of
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1347
// the common code.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1348
// Because of the common code, if you make any changes in
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1349
// the code below, please check the CMS version to see if
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1350
// similar changes might be needed.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1351
// See CMSCollector::par_take_from_overflow_list() for
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1352
// more extensive documentation comments.
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1353
bool ParNewGeneration::take_from_overflow_list_work(ParScanThreadState* par_scan_state) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
  ObjToScanQueue* work_q = par_scan_state->work_queue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  // How many to take?
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1356
  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
  1357
                                 (size_t)ParGCDesiredObjsFromOverflowList);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
  1359
  assert(!UseCompressedOops, "Error");
2346
3aa355016e90 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 2105
diff changeset
  1360
  assert(par_scan_state->overflow_stack() == NULL, "Error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  if (_overflow_list == NULL) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  // Otherwise, there was something there; try claiming the list.
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19286
diff changeset
  1364
  oop prefix = cast_to_oop(Atomic::xchg_ptr(BUSY, &_overflow_list));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1365
  // Trim off a prefix of at most objsFromOverflow items
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1366
  Thread* tid = Thread::current();
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1367
  size_t spin_count = (size_t)ParallelGCThreads;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1368
  size_t sleep_time_millis = MAX2((size_t)1, objsFromOverflow/100);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1369
  for (size_t spin = 0; prefix == BUSY && spin < spin_count; spin++) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1370
    // someone grabbed it before we did ...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1371
    // ... we spin for a short while...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1372
    os::sleep(tid, sleep_time_millis, false);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1373
    if (_overflow_list == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1374
      // nothing left to take
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1375
      return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1376
    } else if (_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1377
     // try and grab the prefix
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19286
diff changeset
  1378
     prefix = cast_to_oop(Atomic::xchg_ptr(BUSY, &_overflow_list));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1379
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
  }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1381
  if (prefix == NULL || prefix == BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1382
     // Nothing to take or waited long enough
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1383
     if (prefix == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1384
       // 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
  1385
       // and it is still the same value.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1386
       (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1387
     }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1388
     return false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1389
  }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1390
  assert(prefix != NULL && prefix != BUSY, "Error");
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1391
  size_t i = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  oop cur = prefix;
593
803947e176bd 6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents: 360
diff changeset
  1393
  while (i < objsFromOverflow && cur->klass_or_null() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1394
    i++; cur = cur->list_ptr_from_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
  // Reattach remaining (suffix) to overflow list
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1398
  if (cur->klass_or_null() == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1399
    // Write back the NULL in lieu of the BUSY we wrote
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1400
    // above and it is still the same value.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1401
    if (_overflow_list == BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1402
      (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
    }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1404
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1405
    assert(cur->klass_or_null() != (Klass*)(address)BUSY, "Error");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1406
    oop suffix = cur->list_ptr_from_klass();       // suffix will be put back on global list
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1407
    cur->set_klass_to_list_ptr(NULL);     // break off suffix
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1408
    // 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
  1409
    // 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
  1410
    // able to place back the suffix.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1411
    oop observed_overflow_list = _overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1412
    oop cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1413
    bool attached = false;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1414
    while (observed_overflow_list == BUSY || observed_overflow_list == NULL) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1415
      observed_overflow_list =
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1416
        (oop) Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1417
      if (cur_overflow_list == observed_overflow_list) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1418
        attached = true;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1419
        break;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1420
      } else cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1421
    }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1422
    if (!attached) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1423
      // 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
  1424
      // Find the last item of suffix list
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1425
      oop last = suffix;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1426
      while (last->klass_or_null() != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1427
        last = last->list_ptr_from_klass();
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1428
      }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1429
      // Atomically prepend suffix to current overflow list
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1430
      observed_overflow_list = _overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1431
      do {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1432
        cur_overflow_list = observed_overflow_list;
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1433
        if (cur_overflow_list != BUSY) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1434
          // Do the splice ...
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1435
          last->set_klass_to_list_ptr(cur_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1436
        } else { // cur_overflow_list == BUSY
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1437
          last->set_klass_to_list_ptr(NULL);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1438
        }
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1439
        observed_overflow_list =
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1440
          (oop)Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1441
      } while (cur_overflow_list != observed_overflow_list);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
  // 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
  1446
  assert(prefix != NULL && prefix != BUSY, "program logic");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  cur = prefix;
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1448
  ssize_t n = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  while (cur != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
    oop obj_to_push = cur->forwardee();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13466
diff changeset
  1451
    oop next        = cur->list_ptr_from_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
    cur->set_klass(obj_to_push->klass());
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1453
    // 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
  1454
    // 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
  1455
    if (!is_in_reserved(cur)) {
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1456
      // 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
  1457
      // with promotion failure.
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1458
      oopDesc* f = cur;
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27251
diff changeset
  1459
      FREE_C_HEAP_ARRAY(oopDesc, f);
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1460
    } else if (par_scan_state->should_be_partially_scanned(obj_to_push, cur)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
      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
  1462
      obj_to_push = cur;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
    }
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1464
    bool ok = work_q->push(obj_to_push);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1465
    assert(ok, "Should have succeeded");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
    cur = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
    n++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  }
6252
dce68ee3d184 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 6067
diff changeset
  1469
  TASKQUEUE_STATS_ONLY(par_scan_state->note_overflow_refill(n));
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1470
#ifndef PRODUCT
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1471
  assert(_num_par_pushes >= n, "Too many pops?");
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1472
  Atomic::add_ptr(-(intptr_t)n, &_num_par_pushes);
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1473
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
}
1910
386106352d02 6786503: Overflow list performance can be improved
ysr
parents: 1668
diff changeset
  1476
#undef BUSY
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 15215
diff changeset
  1478
void ParNewGeneration::ref_processor_init() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
  if (_ref_processor == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
    // Allocate and initialize a reference processor
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1481
    _ref_processor =
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1482
      new ReferenceProcessor(_reserved,                  // span
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1483
                             ParallelRefProcEnabled && (ParallelGCThreads > 1), // mt processing
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1484
                             (int) ParallelGCThreads,    // mt processing degree
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1485
                             refs_discovery_is_mt(),     // mt discovery
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1486
                             (int) ParallelGCThreads,    // mt discovery degree
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7658
diff changeset
  1487
                             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
  1488
                             NULL);                      // is_alive_non_header
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
const char* ParNewGeneration::name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
  return "par new generation";
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
}