hotspot/src/share/vm/memory/sharedHeap.cpp
author jmasa
Wed, 14 Dec 2011 13:34:57 -0800
changeset 11396 917d8673b5ef
parent 11174 fccee5238e70
child 13728 882756847a04
permissions -rw-r--r--
7121618: Change type of number of GC workers to unsigned int. Summary: Change variables representing the number of GC workers to uint from int and size_t. Change the parameter in work(int i) to work(uint worker_id). Reviewed-by: brutisso, tonyp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8728
diff changeset
     2
 * Copyright (c) 2000, 2011, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
SharedHeap* SharedHeap::_sh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// The set of potentially parallel tasks in strong root scanning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
enum SH_process_strong_roots_tasks {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  SH_PS_Universe_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  SH_PS_JNIHandles_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  SH_PS_ObjectSynchronizer_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  SH_PS_FlatProfiler_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  SH_PS_Management_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  SH_PS_SystemDictionary_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  SH_PS_jvmti_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  SH_PS_StringTable_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  SH_PS_CodeCache_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Leave this one last.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  SH_PS_NumElements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
SharedHeap::SharedHeap(CollectorPolicy* policy_) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  CollectedHeap(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _collector_policy(policy_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _perm_gen(NULL), _rem_set(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _strong_roots_parity(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    61
  _workers(NULL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    vm_exit_during_initialization("Failed necessary allocation.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  _sh = this;  // ch is static, should be set only once.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if ((UseParNewGC ||
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    68
      (UseConcMarkSweepGC && CMSParallelRemarkEnabled) ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    69
       UseG1GC) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      ParallelGCThreads > 0) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    71
    _workers = new FlexibleWorkGang("Parallel GC Threads", ParallelGCThreads,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    72
                            /* are_GC_task_threads */true,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    73
                            /* are_ConcurrentGC_threads */false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    if (_workers == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      vm_exit_during_initialization("Failed necessary allocation.");
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    76
    } else {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    77
      _workers->initialize_workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    82
int SharedHeap::n_termination() {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    83
  return _process_strong_tasks->n_threads();
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    84
}
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    85
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    86
void SharedHeap::set_n_termination(int t) {
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10524
diff changeset
    87
  _process_strong_tasks->set_n_threads(t);
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
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    90
bool SharedHeap::heap_lock_held_for_gc() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    91
  Thread* t = Thread::current();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    92
  return    Heap_lock->owned_by_self()
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    93
         || (   (t->is_GC_task_thread() ||  t->is_VM_thread())
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    94
             && _thread_holds_heap_lock_for_gc);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    95
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
    97
void SharedHeap::set_par_threads(uint t) {
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    98
  assert(t == 0 || !UseSerialGC, "Cannot have parallel threads");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  _n_par_threads = t;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   100
  _process_strong_tasks->set_n_threads(t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
class AssertIsPermClosure: public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   105
  virtual void do_oop(oop* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    assert((*p) == NULL || (*p)->is_perm(), "Referent should be perm.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   108
  virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
static AssertIsPermClosure assert_is_perm_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   112
#ifdef ASSERT
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   113
class AssertNonScavengableClosure: public OopClosure {
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   114
public:
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   115
  virtual void do_oop(oop* p) {
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   116
    assert(!Universe::heap()->is_in_partial_collection(*p),
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   117
      "Referent should not be scavengable.");  }
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   118
  virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   119
};
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   120
static AssertNonScavengableClosure assert_is_non_scavengable_closure;
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   121
#endif
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   122
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
void SharedHeap::change_strong_roots_parity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Also set the new collection parity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _strong_roots_parity++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  if (_strong_roots_parity == 3) _strong_roots_parity = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   133
SharedHeap::StrongRootsScope::StrongRootsScope(SharedHeap* outer, bool activate)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   134
  : MarkScope(activate)
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
  if (_active) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   137
    outer->change_strong_roots_parity();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   138
  }
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
SharedHeap::StrongRootsScope::~StrongRootsScope() {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   142
  // nothing particular
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   143
}
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   144
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   145
void SharedHeap::process_strong_roots(bool activate_scope,
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   146
                                      bool collecting_perm_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                                      ScanningOption so,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                                      OopClosure* roots,
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   149
                                      CodeBlobClosure* code_roots,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                      OopsInGenClosure* perm_blk) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   151
  StrongRootsScope srs(this, activate_scope);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // General strong roots.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   153
  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
   154
  // _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
   155
  // 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
   156
  // 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
   157
  // is executing in another GC worker.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    Universe::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // Consider perm-gen discovered lists to be strong.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    perm_gen()->ref_processor()->weak_oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Global (strong) JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    JNIHandles::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // All threads execute this; the individual threads are task groups.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  if (ParallelGCThreads > 0) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   168
    Threads::possibly_parallel_oops_do(roots, code_roots);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  } else {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   170
    Threads::oops_do(roots, code_roots);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    ObjectSynchronizer::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    FlatProfiler::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    Management::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    JvmtiExport::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    if (so & SO_AllClasses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      SystemDictionary::oops_do(roots);
9342
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8921
diff changeset
   184
    } else if (so & SO_SystemClasses) {
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8921
diff changeset
   185
      SystemDictionary::always_strong_oops_do(roots);
456b8d0486b5 7039089: G1: changeset for 7037276 broke heap verification, and related cleanups
ysr
parents: 8921
diff changeset
   186
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  if (!_process_strong_tasks->is_task_claimed(SH_PS_StringTable_oops_do)) {
8728
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   190
    if (so & SO_Strings || (!collecting_perm_gen && !JavaObjectsInPerm)) {
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   191
      StringTable::oops_do(roots);
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   192
    }
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   193
    if (JavaObjectsInPerm) {
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   194
      // Verify the string table contents are in the perm gen
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   195
      NOT_PRODUCT(StringTable::oops_do(&assert_is_perm_closure));
3f1bcd33068e 6962931: move interned strings out of the perm gen
jcoomes
parents: 8076
diff changeset
   196
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   200
    if (so & SO_CodeCache) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   201
      // (Currently, CMSCollector uses this to do intermediate-strength collections.)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   202
      assert(collecting_perm_gen, "scanning all of code cache");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   203
      assert(code_roots != NULL, "must supply closure for code cache");
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   204
      if (code_roots != NULL) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   205
        CodeCache::blobs_do(code_roots);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   206
      }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   207
    } else if (so & (SO_SystemClasses|SO_AllClasses)) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   208
      if (!collecting_perm_gen) {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   209
        // If we are collecting from class statics, but we are not going to
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   210
        // visit all of the CodeCache, collect from the non-perm roots if any.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   211
        // This makes the code cache function temporarily as a source of strong
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   212
        // roots for oops, until the next major collection.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   213
        //
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   214
        // If collecting_perm_gen is true, we require that this phase will call
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   215
        // CodeCache::do_unloading.  This will kill off nmethods with expired
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   216
        // weak references, such as stale invokedynamic targets.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   217
        CodeCache::scavenge_root_nmethods_do(code_roots);
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   218
      }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   219
    }
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   220
    // 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
   221
    // movement by a scavenging collection.
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 9342
diff changeset
   222
    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
   223
    DEBUG_ONLY(CodeCache::asserted_non_scavengable_nmethods_do(&assert_code_is_non_scavengable));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  if (!collecting_perm_gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // All threads perform this; coordination is handled internally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    rem_set()->younger_refs_iterate(perm_gen(), perm_blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  _process_strong_tasks->all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
class AlwaysTrueClosure: public BoolObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  void do_object(oop p) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  bool do_object_b(oop p) { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
static AlwaysTrueClosure always_true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
class SkipAdjustingSharedStrings: public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  OopClosure* _clo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  SkipAdjustingSharedStrings(OopClosure* clo) : _clo(clo) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   246
  virtual void do_oop(oop* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    oop o = (*p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    if (!o->is_shared_readwrite()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      _clo->do_oop(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   252
  virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// Unmarked shared Strings in the StringTable (which got there due to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
// being in the constant pools of as-yet unloaded shared classes) were
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// not marked and therefore did not have their mark words preserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
// These entries are also deliberately not purged from the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
// table during unloading of unmarked strings. If an identity hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
// code was computed for any of these objects, it will not have been
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
// cleared to zero during the forwarding process or by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
// RecursiveAdjustSharedObjectClosure, and will be confused by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
// adjusting process as a forwarding pointer. We need to skip
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
// forwarding StringTable entries which contain unmarked shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// Strings. Actually, since shared strings won't be moving, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
// just skip adjusting any shared entries in the string table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
void SharedHeap::process_weak_roots(OopClosure* root_closure,
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   269
                                    CodeBlobClosure* code_roots,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
                                    OopClosure* non_root_closure) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Global (weak) JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  JNIHandles::weak_oops_do(&always_true, root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2105
diff changeset
   274
  CodeCache::blobs_do(code_roots);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if (UseSharedSpaces && !DumpSharedSpaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    SkipAdjustingSharedStrings skip_closure(root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    StringTable::oops_do(&skip_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    StringTable::oops_do(root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
void SharedHeap::set_barrier_set(BarrierSet* bs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  _barrier_set = bs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Cached barrier set for fast access in oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  oopDesc::set_bs(bs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
void SharedHeap::post_initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  ref_processing_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
void SharedHeap::ref_processing_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  perm_gen()->ref_processor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
// Some utilities.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   298
void SharedHeap::print_size_transition(outputStream* out,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   299
                                       size_t bytes_before,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                                       size_t bytes_after,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
                                       size_t capacity) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   302
  out->print(" %d%s->%d%s(%d%s)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
             byte_size_in_proper_unit(bytes_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
             proper_unit_for_byte_size(bytes_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
             byte_size_in_proper_unit(bytes_after),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
             proper_unit_for_byte_size(bytes_after),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
             byte_size_in_proper_unit(capacity),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
             proper_unit_for_byte_size(capacity));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
}