hotspot/src/share/vm/memory/sharedHeap.cpp
author drchase
Fri, 09 May 2014 16:50:54 -0400
changeset 24424 2658d7834c6e
parent 24092 e274d864545a
child 24429 4efc66ee325c
permissions -rw-r--r--
8037816: Fix for 8036122 breaks build with Xcode5/clang Summary: Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
     2
 * Copyright (c) 2000, 2014, 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: 3908
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3908
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: 3908
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: 6759
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    26
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    28
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    29
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    30
#include "memory/sharedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    31
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    32
#include "runtime/fprofiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    33
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    34
#include "services/management.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    35
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    36
#include "utilities/workgroup.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
    38
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24092
diff changeset
    39
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
SharedHeap* SharedHeap::_sh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// The set of potentially parallel tasks in strong root scanning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
enum SH_process_strong_roots_tasks {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  SH_PS_Universe_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  SH_PS_JNIHandles_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  SH_PS_ObjectSynchronizer_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  SH_PS_FlatProfiler_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  SH_PS_Management_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  SH_PS_SystemDictionary_oops_do,
17844
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
    50
  SH_PS_ClassLoaderDataGraph_oops_do,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  SH_PS_jvmti_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  SH_PS_CodeCache_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // Leave this one last.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  SH_PS_NumElements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
SharedHeap::SharedHeap(CollectorPolicy* policy_) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  CollectedHeap(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _collector_policy(policy_),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
    60
  _rem_set(NULL),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _strong_roots_parity(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    63
  _workers(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    vm_exit_during_initialization("Failed necessary allocation.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _sh = this;  // ch is static, should be set only once.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  if ((UseParNewGC ||
18996
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18091
diff changeset
    70
      (UseConcMarkSweepGC && (CMSParallelInitialMarkEnabled ||
05c86e558c94 6412968: CMS Long initial mark pauses
jmasa
parents: 18091
diff changeset
    71
                              CMSParallelRemarkEnabled)) ||
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    72
       UseG1GC) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      ParallelGCThreads > 0) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    74
    _workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    75
                            /* are_GC_task_threads */true,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    76
                            /* are_ConcurrentGC_threads */false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (_workers == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      vm_exit_during_initialization("Failed necessary allocation.");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    79
    } else {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    80
      _workers->initialize_workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    85
int SharedHeap::n_termination() {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    86
  return _process_strong_tasks->n_threads();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    87
}
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    88
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    89
void SharedHeap::set_n_termination(int t) {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    90
  _process_strong_tasks->set_n_threads(t);
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    91
}
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    92
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    93
bool SharedHeap::heap_lock_held_for_gc() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    94
  Thread* t = Thread::current();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    95
  return    Heap_lock->owned_by_self()
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    96
         || (   (t->is_GC_task_thread() ||  t->is_VM_thread())
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    97
             && _thread_holds_heap_lock_for_gc);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    98
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   100
void SharedHeap::set_par_threads(uint t) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   101
  assert(t == 0 || !UseSerialGC, "Cannot have parallel threads");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  _n_par_threads = t;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   103
  _process_strong_tasks->set_n_threads(t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   106
#ifdef ASSERT
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   107
class AssertNonScavengableClosure: public OopClosure {
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   108
public:
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   109
  virtual void do_oop(oop* p) {
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   110
    assert(!Universe::heap()->is_in_partial_collection(*p),
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   111
      "Referent should not be scavengable.");  }
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   112
  virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   113
};
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   114
static AssertNonScavengableClosure assert_is_non_scavengable_closure;
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   115
#endif
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   116
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void SharedHeap::change_strong_roots_parity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Also set the new collection parity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _strong_roots_parity++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  if (_strong_roots_parity == 3) _strong_roots_parity = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   127
SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* outer, bool activate)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   128
  : MarkScope(activate)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   129
{
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   130
  if (_active) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   131
    outer->change_strong_roots_parity();
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   132
    // Zero the claimed high water mark in the StringTable
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   133
    StringTable::clear_parallel_claimed_index();
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   134
  }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   135
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   136
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   137
SharedHeap::StrongRootsScope::~StrongRootsScope() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   138
  // nothing particular
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   139
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   140
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   141
void SharedHeap::process_strong_roots(bool activate_scope,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
                                      ScanningOption so,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
                                      OopClosure* roots,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
   144
                                      KlassClosure* klass_closure) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   145
  StrongRootsScope srs(this, activate_scope);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
   146
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // General strong roots.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   148
  assert(_strong_roots_parity != 0, "must have called prologue code");
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
   149
  // _n_termination for _process_strong_tasks should be set up stream
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
   150
  // in a method not running in a GC worker.  Otherwise the GC worker
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
   151
  // could be trying to change the termination condition while the task
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
   152
  // is executing in another GC worker.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    Universe::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Global (strong) JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    JNIHandles::oops_do(roots);
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   159
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   160
  CodeBlobToOopClosure code_roots(roots, true);
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   161
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   162
  CLDToOopClosure roots_from_clds(roots);
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   163
  // If we limit class scanning to SO_SystemClasses we need to apply a CLD closure to
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   164
  // CLDs which are strongly reachable from the thread stacks.
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   165
  CLDToOopClosure* roots_from_clds_p = ((so & SO_SystemClasses) ? &roots_from_clds : NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // All threads execute this; the individual threads are task groups.
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   167
  if (CollectedHeap::use_parallel_gc_threads()) {
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   168
    Threads::possibly_parallel_oops_do(roots, roots_from_clds_p, &code_roots);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  } else {
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   170
    Threads::oops_do(roots, roots_from_clds_p, &code_roots);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   172
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    ObjectSynchronizer::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    FlatProfiler::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    Management::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    JvmtiExport::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    if (so & SO_AllClasses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      SystemDictionary::oops_do(roots);
9342
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8921
diff changeset
   185
    } else if (so & SO_SystemClasses) {
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8921
diff changeset
   186
      SystemDictionary::always_strong_oops_do(roots);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
   187
    } else {
16370
4b75aa6388ab 8010121: Remove definition of ShouldNotReachHere2(msg)
neliasso
parents: 14582
diff changeset
   188
      fatal("We should always have selected either SO_AllClasses or SO_SystemClasses");
9342
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8921
diff changeset
   189
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
17844
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
   192
  if (!_process_strong_tasks->is_task_claimed(SH_PS_ClassLoaderDataGraph_oops_do)) {
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
   193
    if (so & SO_AllClasses) {
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   194
      ClassLoaderDataGraph::oops_do(roots, klass_closure, /* must_claim */ false);
17844
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
   195
    } else if (so & SO_SystemClasses) {
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   196
      ClassLoaderDataGraph::always_strong_oops_do(roots, klass_closure, /* must_claim */ true);
17844
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
   197
    }
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
   198
  }
28ca9179db98 8015268: NPG: 2.5% regression in young GC times on CRM Sales Opty
stefank
parents: 17625
diff changeset
   199
18091
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   200
  // All threads execute the following. A specific chunk of buckets
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   201
  // from the StringTable are the individual tasks.
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   202
  if (so & SO_Strings) {
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   203
    if (CollectedHeap::use_parallel_gc_threads()) {
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   204
      StringTable::possibly_parallel_oops_do(roots);
ddde9f0f414d 8015237: Parallelize string table scanning during strong root processing
johnc
parents: 17844
diff changeset
   205
    } else {
8728
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   206
      StringTable::oops_do(roots);
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   207
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   211
    if (so & SO_ScavengeCodeCache) {
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   212
      assert(&code_roots != NULL, "must supply closure for code cache");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
   213
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   214
      // We only visit parts of the CodeCache when scavenging.
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   215
      CodeCache::scavenge_root_nmethods_do(&code_roots);
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   216
    }
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   217
    if (so & SO_AllCodeCache) {
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   218
      assert(&code_roots != NULL, "must supply closure for code cache");
22550
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   219
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   220
      // CMSCollector uses this to do intermediate-strength collections.
820966182ab9 8032379: Remove the is_scavenging flag to process_strong_roots
mgerdin
parents: 21561
diff changeset
   221
      // We scan the entire code cache, since CodeCache::do_unloading is not called.
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   222
      CodeCache::blobs_do(&code_roots);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   223
    }
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   224
    // Verify that the code cache contents are not subject to
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   225
    // movement by a scavenging collection.
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   226
    DEBUG_ONLY(CodeBlobToOopClosure assert_code_is_non_scavengable(&assert_is_non_scavengable_closure, /*do_marking=*/ false));
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   227
    DEBUG_ONLY(CodeCache::asserted_non_scavengable_nmethods_do(&assert_code_is_non_scavengable));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  _process_strong_tasks->all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
class AlwaysTrueClosure: public BoolObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  bool do_object_b(oop p) { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
static AlwaysTrueClosure always_true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22550
diff changeset
   239
void SharedHeap::process_weak_roots(OopClosure* root_closure) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Global (weak) JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  JNIHandles::weak_oops_do(&always_true, root_closure);
17105
25b392a7740d 8012687: Remove unused is_root checks and closures
stefank
parents: 16370
diff changeset
   242
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
void SharedHeap::set_barrier_set(BarrierSet* bs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  _barrier_set = bs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // Cached barrier set for fast access in oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  oopDesc::set_bs(bs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
void SharedHeap::post_initialize() {
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 18996
diff changeset
   251
  CollectedHeap::post_initialize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  ref_processing_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11396
diff changeset
   255
void SharedHeap::ref_processing_init() {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// Some utilities.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   258
void SharedHeap::print_size_transition(outputStream* out,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   259
                                       size_t bytes_before,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
                                       size_t bytes_after,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
                                       size_t capacity) {
24092
e274d864545a 8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents: 22883
diff changeset
   262
  out->print(" " SIZE_FORMAT "%s->" SIZE_FORMAT "%s(" SIZE_FORMAT "%s)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
             byte_size_in_proper_unit(bytes_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
             proper_unit_for_byte_size(bytes_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
             byte_size_in_proper_unit(bytes_after),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
             proper_unit_for_byte_size(bytes_after),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
             byte_size_in_proper_unit(capacity),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
             proper_unit_for_byte_size(capacity));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}