hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.cpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 7896 08aadd7aa3ee
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2005, 2010, 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 "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "utilities/dtrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "utilities/preserveException.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#ifndef SERIALGC
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
HS_DTRACE_PROBE_DECL1(hotspot, gc__begin, bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
HS_DTRACE_PROBE_DECL(hotspot, gc__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// The same dtrace probe can't be inserted in two different files, so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// have to call it here, so it's only in one file.  Can't create new probes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// for the other file anymore.   The dtrace probes have to remain stable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
void VM_GC_Operation::notify_gc_begin(bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  HS_DTRACE_PROBE1(hotspot, gc__begin, full);
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 5348
diff changeset
    51
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
void VM_GC_Operation::notify_gc_end() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  HS_DTRACE_PROBE(hotspot, gc__end);
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 5348
diff changeset
    56
  HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void VM_GC_Operation::acquire_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // we may enter this with pending exception set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  instanceRefKlass::acquire_pending_list_lock(&_pending_list_basic_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void VM_GC_Operation::release_and_notify_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  instanceRefKlass::release_and_notify_pending_list_lock(&_pending_list_basic_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// Allocations may fail in several threads at about the same time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// resulting in multiple gc requests.  We only want to do one of them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// In case a GC locker is active and the need for a GC is already signalled,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// we want to skip this GC attempt altogether, without doing a futile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// safepoint operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
bool VM_GC_Operation::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool skip = (_gc_count_before != Universe::heap()->total_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  if (_full && skip) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    skip = (_full_gc_count_before != Universe::heap()->total_full_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  if (!skip && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    skip = Universe::heap()->is_maximal_no_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    assert(!(skip && (_gc_cause == GCCause::_gc_locker)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
           "GC_locker cannot be active when initiating GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  return skip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
bool VM_GC_Operation::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  acquire_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // If the GC count has changed someone beat us to the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Get the Heap_lock after the pending_list_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  Heap_lock->lock();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    95
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Check invocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  if (skip_operation()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    // skip collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _prologue_succeeded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _prologue_succeeded = true;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   104
    SharedHeap* sh = SharedHeap::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   105
    if (sh != NULL) sh->_thread_holds_heap_lock_for_gc = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  return _prologue_succeeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void VM_GC_Operation::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Release the Heap_lock first.
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 = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
bool VM_GC_HeapInspection::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  if (Universe::heap()->supports_heap_inspection()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    return VM_GC_Operation::doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
bool VM_GC_HeapInspection::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(Universe::heap()->supports_heap_inspection(), "huh?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
void VM_GC_HeapInspection::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  CollectedHeap* ch = Universe::heap();
5348
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   136
  ch->ensure_parsability(false); // must happen, even if collection does
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   137
                                 // not happen (e.g. due to GC_locker)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  if (_full_gc) {
5348
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   139
    // The collection attempt below would be skipped anyway if
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   140
    // 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
   141
    // misleading to someone expecting only live objects to show
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   142
    // 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
   143
    // 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
   144
    // 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
   145
    // 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
   146
    // 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
   147
    // be about to attempt holds value for us only
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   148
    // 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
   149
    // future.
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   150
    if (GC_locker::is_active()) {
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   151
      warning("GC locker is held; pre-dump GC was skipped");
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   152
    } else {
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   153
      ch->collect_as_vm_thread(GCCause::_heap_inspection);
5141d36180d5 6897143: Stress test crashes during HeapInspection using ParallelGC.
kevinw
parents: 2141
diff changeset
   154
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 1388
diff changeset
   156
  HeapInspection::heap_inspection(_out, _need_prologue /* need_prologue */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
void VM_GenCollectForAllocation::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  JvmtiGCForAllocationMarker jgcm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  notify_gc_begin(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _res = gch->satisfy_failed_allocation(_size, _tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  assert(gch->is_in_reserved_or_null(_res), "result not in heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  if (_res == NULL && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    set_gc_locked();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  notify_gc_end();
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_GenCollectFull::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  JvmtiGCFullMarker jgcm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  notify_gc_begin(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  gch->do_full_collection(gch->must_clear_all_soft_refs(), _max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  notify_gc_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
}
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
   184
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   185
void VM_GenCollectForPermanentAllocation::doit() {
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   186
  JvmtiGCForAllocationMarker jgcm;
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   187
  notify_gc_begin(true);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   188
  SharedHeap* heap = (SharedHeap*)Universe::heap();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   189
  GCCauseSetter gccs(heap, _gc_cause);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   190
  switch (heap->kind()) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   191
    case (CollectedHeap::GenCollectedHeap): {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   192
      GenCollectedHeap* gch = (GenCollectedHeap*)heap;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   193
      gch->do_full_collection(gch->must_clear_all_soft_refs(),
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   194
                              gch->n_gens() - 1);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   195
      break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   196
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   197
#ifndef SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   198
    case (CollectedHeap::G1CollectedHeap): {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   199
      G1CollectedHeap* g1h = (G1CollectedHeap*)heap;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   200
      g1h->do_full_collection(_gc_cause == GCCause::_last_ditch_collection);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   201
      break;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   202
    }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   203
#endif // SERIALGC
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   204
    default:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   205
      ShouldNotReachHere();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   206
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   207
  _res = heap->perm_gen()->allocate(_size, false);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
   208
  assert(heap->is_in_reserved_or_null(_res), "result not in heap");
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
   209
  if (_res == NULL && GC_locker::is_active_and_needs_gc()) {
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   210
    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
   211
  }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   212
  notify_gc_end();
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   213
}