hotspot/src/share/vm/memory/sharedHeap.cpp
author ysr
Thu, 05 Jun 2008 15:57:56 -0700
changeset 1374 4c24294029a9
parent 360 21d113ecbf6a
child 1388 3677f5f3d66b
permissions -rw-r--r--
6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_sharedHeap.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
SharedHeap* SharedHeap::_sh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// The set of potentially parallel tasks in strong root scanning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
enum SH_process_strong_roots_tasks {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  SH_PS_Universe_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  SH_PS_JNIHandles_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  SH_PS_ObjectSynchronizer_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  SH_PS_FlatProfiler_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  SH_PS_Management_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  SH_PS_SystemDictionary_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  SH_PS_jvmti_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  SH_PS_vmSymbols_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  SH_PS_SymbolTable_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  SH_PS_StringTable_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  SH_PS_CodeCache_oops_do,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // Leave this one last.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  SH_PS_NumElements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
SharedHeap::SharedHeap(CollectorPolicy* policy_) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  CollectedHeap(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _collector_policy(policy_),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _perm_gen(NULL), _rem_set(NULL),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _strong_roots_parity(0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _process_strong_tasks(new SubTasksDone(SH_PS_NumElements)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _workers(NULL), _n_par_threads(0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (_process_strong_tasks == NULL || !_process_strong_tasks->valid()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    vm_exit_during_initialization("Failed necessary allocation.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _sh = this;  // ch is static, should be set only once.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if ((UseParNewGC ||
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    60
      (UseConcMarkSweepGC && CMSParallelRemarkEnabled) ||
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    61
       UseG1GC) &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      ParallelGCThreads > 0) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    63
    _workers = new WorkGang("Parallel GC Threads", ParallelGCThreads,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    64
                            /* are_GC_task_threads */true,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    65
                            /* are_ConcurrentGC_threads */false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    if (_workers == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      vm_exit_during_initialization("Failed necessary allocation.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    72
bool SharedHeap::heap_lock_held_for_gc() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    73
  Thread* t = Thread::current();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    74
  return    Heap_lock->owned_by_self()
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    75
         || (   (t->is_GC_task_thread() ||  t->is_VM_thread())
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    76
             && _thread_holds_heap_lock_for_gc);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    77
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void SharedHeap::set_par_threads(int t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _n_par_threads = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _process_strong_tasks->set_par_threads(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
class AssertIsPermClosure: public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
public:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    86
  virtual void do_oop(oop* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    assert((*p) == NULL || (*p)->is_perm(), "Referent should be perm.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    89
  virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
static AssertIsPermClosure assert_is_perm_closure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void SharedHeap::change_strong_roots_parity() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Also set the new collection parity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(_strong_roots_parity >= 0 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  _strong_roots_parity++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  if (_strong_roots_parity == 3) _strong_roots_parity = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  assert(_strong_roots_parity >= 1 && _strong_roots_parity <= 2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
         "Not in range.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
void SharedHeap::process_strong_roots(bool collecting_perm_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                      ScanningOption so,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                      OopClosure* roots,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                                      OopsInGenClosure* perm_blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // General strong roots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  if (n_par_threads() == 0) change_strong_roots_parity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (!_process_strong_tasks->is_task_claimed(SH_PS_Universe_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    Universe::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    ReferenceProcessor::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    // Consider perm-gen discovered lists to be strong.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    perm_gen()->ref_processor()->weak_oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Global (strong) JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  if (!_process_strong_tasks->is_task_claimed(SH_PS_JNIHandles_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    JNIHandles::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // All threads execute this; the individual threads are task groups.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  if (ParallelGCThreads > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    Threads::possibly_parallel_oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    Threads::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if (!_process_strong_tasks-> is_task_claimed(SH_PS_ObjectSynchronizer_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    ObjectSynchronizer::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  if (!_process_strong_tasks->is_task_claimed(SH_PS_FlatProfiler_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    FlatProfiler::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  if (!_process_strong_tasks->is_task_claimed(SH_PS_Management_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    Management::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (!_process_strong_tasks->is_task_claimed(SH_PS_jvmti_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    JvmtiExport::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  if (!_process_strong_tasks->is_task_claimed(SH_PS_SystemDictionary_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    if (so & SO_AllClasses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      SystemDictionary::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      if (so & SO_SystemClasses) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
        SystemDictionary::always_strong_oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  if (!_process_strong_tasks->is_task_claimed(SH_PS_SymbolTable_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    if (so & SO_Symbols) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      SymbolTable::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    // Verify if the symbol table contents are in the perm gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    NOT_PRODUCT(SymbolTable::oops_do(&assert_is_perm_closure));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  if (!_process_strong_tasks->is_task_claimed(SH_PS_StringTable_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
     if (so & SO_Strings) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
       StringTable::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    // Verify if the string table contents are in the perm gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    NOT_PRODUCT(StringTable::oops_do(&assert_is_perm_closure));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (!_process_strong_tasks->is_task_claimed(SH_PS_CodeCache_oops_do)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
     if (so & SO_CodeCache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
       CodeCache::oops_do(roots);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // Verify if the code cache contents are in the perm gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    NOT_PRODUCT(CodeCache::oops_do(&assert_is_perm_closure));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Roots that should point only into permanent generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    OopClosure* blk = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    if (collecting_perm_gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      blk = roots;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      debug_only(blk = &assert_is_perm_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    if (blk != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      if (!_process_strong_tasks->is_task_claimed(SH_PS_vmSymbols_oops_do))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
        vmSymbols::oops_do(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (!collecting_perm_gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    // All threads perform this; coordination is handled internally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    rem_set()->younger_refs_iterate(perm_gen(), perm_blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  _process_strong_tasks->all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
class AlwaysTrueClosure: public BoolObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void do_object(oop p) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  bool do_object_b(oop p) { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
static AlwaysTrueClosure always_true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
class SkipAdjustingSharedStrings: public OopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  OopClosure* _clo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  SkipAdjustingSharedStrings(OopClosure* clo) : _clo(clo) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   200
  virtual void do_oop(oop* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    oop o = (*p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    if (!o->is_shared_readwrite()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      _clo->do_oop(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   206
  virtual void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// Unmarked shared Strings in the StringTable (which got there due to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
// being in the constant pools of as-yet unloaded shared classes) were
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
// not marked and therefore did not have their mark words preserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
// These entries are also deliberately not purged from the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
// table during unloading of unmarked strings. If an identity hash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
// code was computed for any of these objects, it will not have been
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// cleared to zero during the forwarding process or by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
// RecursiveAdjustSharedObjectClosure, and will be confused by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// adjusting process as a forwarding pointer. We need to skip
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// forwarding StringTable entries which contain unmarked shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// Strings. Actually, since shared strings won't be moving, we can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// just skip adjusting any shared entries in the string table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
void SharedHeap::process_weak_roots(OopClosure* root_closure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
                                    OopClosure* non_root_closure) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // Global (weak) JNI handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  JNIHandles::weak_oops_do(&always_true, root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  CodeCache::oops_do(non_root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  SymbolTable::oops_do(root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (UseSharedSpaces && !DumpSharedSpaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    SkipAdjustingSharedStrings skip_closure(root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    StringTable::oops_do(&skip_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    StringTable::oops_do(root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
void SharedHeap::set_barrier_set(BarrierSet* bs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  _barrier_set = bs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // Cached barrier set for fast access in oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  oopDesc::set_bs(bs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
void SharedHeap::post_initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  ref_processing_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
void SharedHeap::ref_processing_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  perm_gen()->ref_processor_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void SharedHeap::fill_region_with_object(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // Disable the posting of JVMTI VMObjectAlloc events as we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // don't want the filling of tlabs with filler arrays to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // reported to the profiler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  NoJvmtiVMObjectAllocMark njm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // Disable low memory detector because there is no real allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  LowMemoryDetectorDisabler lmd_dis;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // It turns out that post_allocation_setup_array takes a handle, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // call below contains an implicit conversion.  Best to free that handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // as soon as possible.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  size_t word_size = mr.word_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  size_t aligned_array_header_size =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    align_object_size(typeArrayOopDesc::header_size(T_INT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  if (word_size >= aligned_array_header_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    const size_t array_length =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      pointer_delta(mr.end(), mr.start()) -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      typeArrayOopDesc::header_size(T_INT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    const size_t array_length_words =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
      array_length * (HeapWordSize/sizeof(jint));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    post_allocation_setup_array(Universe::intArrayKlassObj(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                                mr.start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
                                mr.word_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
                                (int)array_length_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    HeapWord* elt_words = (mr.start() + typeArrayOopDesc::header_size(T_INT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    Copy::fill_to_words(elt_words, array_length, 0xDEAFBABE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    assert(word_size == (size_t)oopDesc::header_size(), "Unaligned?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    post_allocation_setup_obj(SystemDictionary::object_klass(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
                              mr.start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
                              mr.word_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// Some utilities.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   292
void SharedHeap::print_size_transition(outputStream* out,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   293
                                       size_t bytes_before,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                                       size_t bytes_after,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
                                       size_t capacity) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   296
  out->print(" %d%s->%d%s(%d%s)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
             byte_size_in_proper_unit(bytes_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
             proper_unit_for_byte_size(bytes_before),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
             byte_size_in_proper_unit(bytes_after),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
             proper_unit_for_byte_size(bytes_after),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
             byte_size_in_proper_unit(capacity),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
             proper_unit_for_byte_size(capacity));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
}