hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.cpp
author jprovino
Wed, 23 Jan 2013 13:02:39 -0500
changeset 15482 470d0b0c09f1
parent 13927 332925e36741
child 15484 7395ace8a11a
permissions -rw-r--r--
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS. Reviewed-by: coleenp, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
     2
 * Copyright (c) 2005, 2012, 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: 5542
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5542
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: 5542
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: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/classLoader.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_implementation/shared/vmGCOperations.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/gcLocker.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "oops/instanceRefKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "utilities/dtrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "utilities/preserveException.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13927
diff changeset
    39
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13927
diff changeset
    40
#if INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13927
diff changeset
    42
#endif // INCLUDE_ALL_GCS
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
    43
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    44
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
HS_DTRACE_PROBE_DECL1(hotspot, gc__begin, bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
HS_DTRACE_PROBE_DECL(hotspot, gc__end);
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    47
#endif /* !USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// The same dtrace probe can't be inserted in two different files, so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// have to call it here, so it's only in one file.  Can't create new probes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// for the other file anymore.   The dtrace probes have to remain stable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void VM_GC_Operation::notify_gc_begin(bool full) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    53
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  HS_DTRACE_PROBE1(hotspot, gc__begin, full);
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 5348
diff changeset
    55
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    56
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    57
  HOTSPOT_GC_BEGIN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    58
                   full);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    59
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
void VM_GC_Operation::notify_gc_end() {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    63
#ifndef USDT2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  HS_DTRACE_PROBE(hotspot, gc__end);
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 5348
diff changeset
    65
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    66
#else /* USDT2 */
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    67
  HOTSPOT_GC_END(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    68
);
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    69
#endif /* USDT2 */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
void VM_GC_Operation::acquire_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // we may enter this with pending exception set
13738
d67be49a5beb 7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents: 13728
diff changeset
    74
  InstanceRefKlass::acquire_pending_list_lock(&_pending_list_basic_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
void VM_GC_Operation::release_and_notify_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
13738
d67be49a5beb 7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents: 13728
diff changeset
    80
  InstanceRefKlass::release_and_notify_pending_list_lock(&_pending_list_basic_lock);
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
// Allocations may fail in several threads at about the same time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// resulting in multiple gc requests.  We only want to do one of them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// In case a GC locker is active and the need for a GC is already signalled,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// we want to skip this GC attempt altogether, without doing a futile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// safepoint operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
bool VM_GC_Operation::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  bool skip = (_gc_count_before != Universe::heap()->total_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (_full && skip) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    skip = (_full_gc_count_before != Universe::heap()->total_full_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  if (!skip && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    skip = Universe::heap()->is_maximal_no_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    assert(!(skip && (_gc_cause == GCCause::_gc_locker)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
           "GC_locker cannot be active when initiating GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  return skip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
bool VM_GC_Operation::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  assert(Thread::current()->is_Java_thread(), "just checking");
8295
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
   103
  assert(((_gc_cause != GCCause::_no_gc) &&
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
   104
          (_gc_cause != GCCause::_no_cause_specified)), "Illegal GCCause");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  acquire_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // If the GC count has changed someone beat us to the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Get the Heap_lock after the pending_list_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  Heap_lock->lock();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   110
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Check invocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (skip_operation()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // skip collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _prologue_succeeded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    _prologue_succeeded = true;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   119
    SharedHeap* sh = SharedHeap::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   120
    if (sh != NULL) sh->_thread_holds_heap_lock_for_gc = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return _prologue_succeeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
void VM_GC_Operation::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Release the Heap_lock first.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   129
  SharedHeap* sh = SharedHeap::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   130
  if (sh != NULL) sh->_thread_holds_heap_lock_for_gc = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
bool VM_GC_HeapInspection::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  if (Universe::heap()->supports_heap_inspection()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    return VM_GC_Operation::doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
bool VM_GC_HeapInspection::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  assert(Universe::heap()->supports_heap_inspection(), "huh?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
void VM_GC_HeapInspection::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  CollectedHeap* ch = Universe::heap();
5348
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   151
  ch->ensure_parsability(false); // must happen, even if collection does
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   152
                                 // not happen (e.g. due to GC_locker)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (_full_gc) {
5348
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   154
    // The collection attempt below would be skipped anyway if
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   155
    // the gc locker is held. The following dump may then be a tad
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   156
    // misleading to someone expecting only live objects to show
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   157
    // up in the dump (see CR 6944195). Just issue a suitable warning
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   158
    // in that case and do not attempt to do a collection.
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   159
    // The latter is a subtle point, because even a failed attempt
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   160
    // to GC will, in fact, induce one in the future, which we
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   161
    // probably want to avoid in this case because the GC that we may
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   162
    // be about to attempt holds value for us only
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   163
    // if it happens now and not if it happens in the eventual
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   164
    // future.
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   165
    if (GC_locker::is_active()) {
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   166
      warning("GC locker is held; pre-dump GC was skipped");
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   167
    } else {
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   168
      ch->collect_as_vm_thread(GCCause::_heap_inspection);
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   169
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1388
diff changeset
   171
  HeapInspection::heap_inspection(_out, _need_prologue /* need_prologue */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void VM_GenCollectForAllocation::doit() {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   176
  SvcGCMarker sgcm(SvcGCMarker::MINOR);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  _res = gch->satisfy_failed_allocation(_size, _tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  assert(gch->is_in_reserved_or_null(_res), "result not in heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  if (_res == NULL && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    set_gc_locked();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
void VM_GenCollectFull::doit() {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   189
  SvcGCMarker sgcm(SvcGCMarker::FULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  gch->do_full_collection(gch->must_clear_all_soft_refs(), _max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   195
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   196
void VM_CollectForMetadataAllocation::doit() {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   197
  SvcGCMarker sgcm(SvcGCMarker::FULL);
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   198
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   199
  CollectedHeap* heap = Universe::heap();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   200
  GCCauseSetter gccs(heap, _gc_cause);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   201
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   202
  // Check again if the space is available.  Another thread
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   203
  // may have similarly failed a metadata allocation and induced
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   204
  // a GC that freed space for the allocation.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   205
  if (!MetadataAllocationFailALot) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   206
    _result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   207
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   208
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   209
  if (_result == NULL) {
13927
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   210
    if (UseConcMarkSweepGC) {
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   211
      if (CMSClassUnloadingEnabled) {
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   212
        MetaspaceGC::set_should_concurrent_collect(true);
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   213
      }
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   214
      // For CMS expand since the collection is going to be concurrent.
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   215
      _result =
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   216
        _loader_data->metaspace_non_null()->expand_and_allocate(_size, _mdtype);
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   217
    }
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   218
    if (_result == NULL) {
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   219
      // Don't clear the soft refs.  This GC is for reclaiming metadata
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   220
      // and is unrelated to the fullness of the Java heap which should
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   221
      // be the criteria for clearing SoftReferences.
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   222
      if (Verbose && PrintGCDetails && UseConcMarkSweepGC) {
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   223
        gclog_or_tty->print_cr("\nCMS full GC for Metaspace");
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   224
      }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   225
      heap->collect_as_vm_thread(GCCause::_metadata_GC_threshold);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   226
      _result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   227
    }
13927
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   228
    if (_result == NULL && !UseConcMarkSweepGC /* CMS already tried */) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   229
      // If still failing, allow the Metaspace to expand.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   230
      // See delta_capacity_until_GC() for explanation of the
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   231
      // amount of the expansion.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   232
      // This should work unless there really is no more space
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   233
      // or a MaxMetaspaceSize has been specified on the command line.
13755
a00f5de57d30 7197557: NPG: nsk/sysdict/vm/stress/chain/chain004 hangs intermittently
jmasa
parents: 13738
diff changeset
   234
      _result =
a00f5de57d30 7197557: NPG: nsk/sysdict/vm/stress/chain/chain004 hangs intermittently
jmasa
parents: 13738
diff changeset
   235
        _loader_data->metaspace_non_null()->expand_and_allocate(_size, _mdtype);
a00f5de57d30 7197557: NPG: nsk/sysdict/vm/stress/chain/chain004 hangs intermittently
jmasa
parents: 13738
diff changeset
   236
13927
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   237
    }
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   238
    if (Verbose && PrintGCDetails && _result == NULL) {
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   239
      gclog_or_tty->print_cr("\nAfter Metaspace GC failed to allocate size "
332925e36741 7198873: NPG: VM Does not unload classes with UseConcMarkSweepGC
jmasa
parents: 13755
diff changeset
   240
                             SIZE_FORMAT, _size);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   241
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   242
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   243
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   244
  if (_result == NULL && GC_locker::is_active_and_needs_gc()) {
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   245
    set_gc_locked();
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   246
  }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   247
}