hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.cpp
author apetrusenko
Tue, 01 Apr 2008 15:13:47 +0400
changeset 386 7f121b1192f2
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
child 1374 4c24294029a9
permissions -rw-r--r--
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen Reviewed-by: ysr, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_vmGCOperations.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
HS_DTRACE_PROBE_DECL1(hotspot, gc__begin, bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
HS_DTRACE_PROBE_DECL(hotspot, gc__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// The same dtrace probe can't be inserted in two different files, so we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// have to call it here, so it's only in one file.  Can't create new probes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// for the other file anymore.   The dtrace probes have to remain stable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
void VM_GC_Operation::notify_gc_begin(bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  HS_DTRACE_PROBE1(hotspot, gc__begin, full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
void VM_GC_Operation::notify_gc_end() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  HS_DTRACE_PROBE(hotspot, gc__end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
void VM_GC_Operation::acquire_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // we may enter this with pending exception set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  instanceRefKlass::acquire_pending_list_lock(&_pending_list_basic_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
void VM_GC_Operation::release_and_notify_pending_list_lock() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  instanceRefKlass::release_and_notify_pending_list_lock(&_pending_list_basic_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// Allocations may fail in several threads at about the same time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// resulting in multiple gc requests.  We only want to do one of them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// In case a GC locker is active and the need for a GC is already signalled,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// we want to skip this GC attempt altogether, without doing a futile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// safepoint operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
bool VM_GC_Operation::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  bool skip = (_gc_count_before != Universe::heap()->total_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (_full && skip) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    skip = (_full_gc_count_before != Universe::heap()->total_full_collections());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  if (!skip && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    skip = Universe::heap()->is_maximal_no_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    assert(!(skip && (_gc_cause == GCCause::_gc_locker)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
           "GC_locker cannot be active when initiating GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  return skip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
bool VM_GC_Operation::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  acquire_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // If the GC count has changed someone beat us to the collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Get the Heap_lock after the pending_list_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Check invocations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (skip_operation()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // skip collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    _prologue_succeeded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    _prologue_succeeded = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  return _prologue_succeeded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
void VM_GC_Operation::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Release the Heap_lock first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  release_and_notify_pending_list_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
bool VM_GC_HeapInspection::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  if (Universe::heap()->supports_heap_inspection()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    return VM_GC_Operation::doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
bool VM_GC_HeapInspection::skip_operation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert(Universe::heap()->supports_heap_inspection(), "huh?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
void VM_GC_HeapInspection::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  CollectedHeap* ch = Universe::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  if (_full_gc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    ch->collect_as_vm_thread(GCCause::_heap_inspection);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // make the heap parsable (no need to retire TLABs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    ch->ensure_parsability(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  HeapInspection::heap_inspection(_out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
void VM_GenCollectForAllocation::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  JvmtiGCForAllocationMarker jgcm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  notify_gc_begin(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  _res = gch->satisfy_failed_allocation(_size, _tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  assert(gch->is_in_reserved_or_null(_res), "result not in heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (_res == NULL && GC_locker::is_active_and_needs_gc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    set_gc_locked();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  notify_gc_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
void VM_GenCollectFull::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  JvmtiGCFullMarker jgcm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  notify_gc_begin(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  GCCauseSetter gccs(gch, _gc_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  gch->do_full_collection(gch->must_clear_all_soft_refs(), _max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  notify_gc_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
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
   147
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   148
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
   149
  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
   150
  notify_gc_begin(true);
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   151
  GenCollectedHeap* gch = GenCollectedHeap::heap();
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   152
  GCCauseSetter gccs(gch, _gc_cause);
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   153
  gch->do_full_collection(gch->must_clear_all_soft_refs(),
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   154
                          gch->n_gens() - 1);
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   155
  _res = gch->perm_gen()->allocate(_size, false);
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   156
  assert(gch->is_in_reserved_or_null(_res), "result not in heap");
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   157
  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
   158
    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
   159
  }
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
   160
  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
   161
}