hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.cpp
author mlarsson
Fri, 13 Feb 2015 10:31:52 +0100
changeset 29079 832d35c45d0b
parent 25908 8adb2fb6fc3c
child 29081 c61eb4914428
permissions -rw-r--r--
8066771: Refactor VM GC operations caused by allocation failure Reviewed-by: brutisso, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25622
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
     2
 * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// The same dtrace probe can't be inserted in two different files, so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// have to call it here, so it's only in one file.  Can't create new probes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// for the other file anymore.   The dtrace probes have to remain stable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
void VM_GC_Operation::notify_gc_begin(bool full) {
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    48
  HOTSPOT_GC_BEGIN(
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 8295
diff changeset
    49
                   full);
22520
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 20734
diff changeset
    50
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
void VM_GC_Operation::notify_gc_end() {
22520
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 20734
diff changeset
    54
  HOTSPOT_GC_END();
b9e88eed82d7 8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents: 20734
diff changeset
    55
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void VM_GC_Operation::acquire_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // we may enter this with pending exception set
13738
d67be49a5beb 7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents: 13728
diff changeset
    60
  InstanceRefKlass::acquire_pending_list_lock(&_pending_list_basic_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
void VM_GC_Operation::release_and_notify_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
13738
d67be49a5beb 7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents: 13728
diff changeset
    66
  InstanceRefKlass::release_and_notify_pending_list_lock(&_pending_list_basic_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// Allocations may fail in several threads at about the same time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// resulting in multiple gc requests.  We only want to do one of them.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20734
diff changeset
    71
// In case a GC locker is active and the need for a GC is already signaled,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// we want to skip this GC attempt altogether, without doing a futile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// safepoint operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
bool VM_GC_Operation::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  bool skip = (_gc_count_before != Universe::heap()->total_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  if (_full && skip) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    skip = (_full_gc_count_before != Universe::heap()->total_full_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  if (!skip && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    skip = Universe::heap()->is_maximal_no_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    assert(!(skip && (_gc_cause == GCCause::_gc_locker)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
           "GC_locker cannot be active when initiating GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  return skip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
bool VM_GC_Operation::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  assert(Thread::current()->is_Java_thread(), "just checking");
8295
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
    89
  assert(((_gc_cause != GCCause::_no_gc) &&
a2b2a8a3aaee 7015169: GC Cause not always set
brutisso
parents: 7896
diff changeset
    90
          (_gc_cause != GCCause::_no_cause_specified)), "Illegal GCCause");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
23540
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    92
  // To be able to handle a GC the VM initialization needs to be completed.
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    93
  if (!is_init_completed()) {
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    94
    vm_exit_during_initialization(
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    95
      err_msg("GC triggered before VM initialization completed. Try increasing "
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    96
              "NewSize, current value " UINTX_FORMAT "%s.",
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    97
              byte_size_in_proper_unit(NewSize),
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    98
              proper_unit_for_byte_size(NewSize)));
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
    99
  }
06f7d6e1f654 8028498: runtime/SharedArchiveFile/CdsDifferentObjectAlignment.java asserts in RT_Baseline
sjohanss
parents: 22796
diff changeset
   100
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  acquire_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // If the GC count has changed someone beat us to the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Get the Heap_lock after the pending_list_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  Heap_lock->lock();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   105
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Check invocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  if (skip_operation()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // skip collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _prologue_succeeded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    _prologue_succeeded = true;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   114
    SharedHeap* sh = SharedHeap::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   115
    if (sh != NULL) sh->_thread_holds_heap_lock_for_gc = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  return _prologue_succeeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
void VM_GC_Operation::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Release the Heap_lock first.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   124
  SharedHeap* sh = SharedHeap::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   125
  if (sh != NULL) sh->_thread_holds_heap_lock_for_gc = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
bool VM_GC_HeapInspection::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  if (Universe::heap()->supports_heap_inspection()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    return VM_GC_Operation::doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
bool VM_GC_HeapInspection::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  assert(Universe::heap()->supports_heap_inspection(), "huh?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   143
bool VM_GC_HeapInspection::collect() {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   144
  if (GC_locker::is_active()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   145
    return false;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   146
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   147
  Universe::heap()->collect_as_vm_thread(GCCause::_heap_inspection);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   148
  return true;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   149
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   150
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
void VM_GC_HeapInspection::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  HandleMark hm;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   153
  Universe::heap()->ensure_parsability(false); // must happen, even if collection does
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   154
                                               // not happen (e.g. due to GC_locker)
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   155
                                               // or _full_gc being false
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  if (_full_gc) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   157
    if (!collect()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   158
      // The collection attempt was skipped because the gc locker is held.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   159
      // The following dump may then be a tad misleading to someone expecting
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   160
      // only live objects to show up in the dump (see CR 6944195). Just issue
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   161
      // a suitable warning in that case and do not attempt to do a collection.
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   162
      // The latter is a subtle point, because even a failed attempt
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   163
      // to GC will, in fact, induce one in the future, which we
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   164
      // probably want to avoid in this case because the GC that we may
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   165
      // be about to attempt holds value for us only
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   166
      // if it happens now and not if it happens in the eventual
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   167
      // future.
5348
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   168
      warning("GC locker is held; pre-dump GC was skipped");
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   169
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13927
diff changeset
   171
  HeapInspection inspect(_csv_format, _print_help, _print_class_stats,
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 13927
diff changeset
   172
                         _columns);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17109
diff changeset
   173
  inspect.heap_inspection(_out);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
void VM_GenCollectForAllocation::doit() {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   178
  SvcGCMarker sgcm(SvcGCMarker::MINOR);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  GCCauseSetter gccs(gch, _gc_cause);
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 25908
diff changeset
   182
  _result = gch->satisfy_failed_allocation(_word_size, _tlab);
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 25908
diff changeset
   183
  assert(gch->is_in_reserved_or_null(_result), "result not in heap");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
29079
832d35c45d0b 8066771: Refactor VM GC operations caused by allocation failure
mlarsson
parents: 25908
diff changeset
   185
  if (_result == NULL && GC_locker::is_active_and_needs_gc()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    set_gc_locked();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
void VM_GenCollectFull::doit() {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   191
  SvcGCMarker sgcm(SvcGCMarker::FULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  gch->do_full_collection(gch->must_clear_all_soft_refs(), _max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
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
   197
25908
8adb2fb6fc3c 8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents: 25622
diff changeset
   198
// Returns true iff concurrent GCs unloads metadata.
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   199
bool VM_CollectForMetadataAllocation::initiate_concurrent_GC() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   200
#if INCLUDE_ALL_GCS
25622
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   201
  if (UseConcMarkSweepGC && CMSClassUnloadingEnabled) {
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   202
    MetaspaceGC::set_should_concurrent_collect(true);
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   203
    return true;
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   204
  }
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   205
25908
8adb2fb6fc3c 8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents: 25622
diff changeset
   206
  if (UseG1GC && ClassUnloadingWithConcurrentMark) {
25622
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   207
    G1CollectedHeap* g1h = G1CollectedHeap::heap();
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   208
    g1h->g1_policy()->set_initiate_conc_mark_if_possible();
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   209
25622
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   210
    GCCauseSetter x(g1h, _gc_cause);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   211
25622
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   212
    // At this point we are supposed to start a concurrent cycle. We
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   213
    // will do so if one is not already in progress.
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   214
    bool should_start = g1h->g1_policy()->force_initial_mark_if_outside_cycle(_gc_cause);
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   215
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   216
    if (should_start) {
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   217
      double pause_target = g1h->g1_policy()->max_pause_time_ms();
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   218
      g1h->do_collection_pause_at_safepoint(pause_target);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   219
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   220
    return true;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   221
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   222
#endif
25622
058307bdb07c 8049831: Metadata Full GCs are not triggered when CMSClassUnloadingEnabled is turned off
stefank
parents: 25492
diff changeset
   223
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   224
  return false;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   225
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   226
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   227
static void log_metaspace_alloc_failure_for_concurrent_GC() {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   228
  if (Verbose && PrintGCDetails) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   229
    if (UseConcMarkSweepGC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   230
      gclog_or_tty->print_cr("\nCMS full GC for Metaspace");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   231
    } else if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   232
      gclog_or_tty->print_cr("\nG1 full GC for Metaspace");
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   233
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   234
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   235
}
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   236
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   237
void VM_CollectForMetadataAllocation::doit() {
7896
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   238
  SvcGCMarker sgcm(SvcGCMarker::FULL);
08aadd7aa3ee 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 7397
diff changeset
   239
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   240
  CollectedHeap* heap = Universe::heap();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   241
  GCCauseSetter gccs(heap, _gc_cause);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   242
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   243
  // 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
   244
  // 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
   245
  // a GC that freed space for the allocation.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   246
  if (!MetadataAllocationFailALot) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   247
    _result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype);
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   248
    if (_result != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   249
      return;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   250
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   251
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   252
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   253
  if (initiate_concurrent_GC()) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   254
    // For CMS and G1 expand since the collection is going to be concurrent.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   255
    _result = _loader_data->metaspace_non_null()->expand_and_allocate(_size, _mdtype);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   256
    if (_result != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   257
      return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   258
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   259
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   260
    log_metaspace_alloc_failure_for_concurrent_GC();
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   261
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   262
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   263
  // Don't clear the soft refs yet.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   264
  heap->collect_as_vm_thread(GCCause::_metadata_GC_threshold);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   265
  // After a GC try to allocate without expanding.  Could fail
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   266
  // and expansion will be tried below.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   267
  _result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   268
  if (_result != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   269
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   270
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   271
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   272
  // If still failing, allow the Metaspace to expand.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   273
  // See delta_capacity_until_GC() for explanation of the
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   274
  // amount of the expansion.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   275
  // This should work unless there really is no more space
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   276
  // or a MaxMetaspaceSize has been specified on the command line.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   277
  _result = _loader_data->metaspace_non_null()->expand_and_allocate(_size, _mdtype);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   278
  if (_result != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   279
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   280
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   281
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   282
  // If expansion failed, do a last-ditch collection and try allocating
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   283
  // again.  A last-ditch collection will clear softrefs.  This
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   284
  // behavior is similar to the last-ditch collection done for perm
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   285
  // gen when it was full and a collection for failed allocation
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   286
  // did not free perm gen space.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   287
  heap->collect_as_vm_thread(GCCause::_last_ditch_collection);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   288
  _result = _loader_data->metaspace_non_null()->allocate(_size, _mdtype);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   289
  if (_result != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   290
    return;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   291
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   292
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   293
  if (Verbose && PrintGCDetails) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   294
    gclog_or_tty->print_cr("\nAfter Metaspace GC failed to allocate size "
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   295
                           SIZE_FORMAT, _size);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   296
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   297
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   298
  if (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
   299
    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
   300
  }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   301
}