vmPSOperations.cpp 3.2 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28 29 30 31 32
#include "precompiled.hpp"
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.inline.hpp"
#include "gc_implementation/parallelScavenge/psMarkSweep.hpp"
#include "gc_implementation/parallelScavenge/psScavenge.hpp"
#include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
#include "gc_implementation/parallelScavenge/vmPSOperations.hpp"
#include "memory/gcLocker.inline.hpp"
#include "utilities/dtrace.hpp"
D
duke 已提交
33 34

// The following methods are used by the parallel scavenge collector
35
VM_ParallelGCFailedAllocation::VM_ParallelGCFailedAllocation(size_t word_size,
36
                                                             uint gc_count) :
37 38
    VM_CollectForAllocation(word_size, gc_count, GCCause::_allocation_failure) {
  assert(word_size != 0, "An allocation should always be requested with this operation.");
D
duke 已提交
39 40 41
}

void VM_ParallelGCFailedAllocation::doit() {
42
  SvcGCMarker sgcm(SvcGCMarker::MINOR);
D
duke 已提交
43 44 45 46 47

  ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap();
  assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "must be a ParallelScavengeHeap");

  GCCauseSetter gccs(heap, _gc_cause);
48
  _result = heap->failed_mem_allocate(_word_size);
D
duke 已提交
49 50 51 52 53 54

  if (_result == NULL && GC_locker::is_active_and_needs_gc()) {
    set_gc_locked();
  }
}

55 56 57 58 59
static bool is_cause_full(GCCause::Cause cause) {
  return (cause != GCCause::_gc_locker) && (cause != GCCause::_wb_young_gc)
         DEBUG_ONLY(&& (cause != GCCause::_scavenge_alot));
}

D
duke 已提交
60
// Only used for System.gc() calls
61 62
VM_ParallelGCSystemGC::VM_ParallelGCSystemGC(uint gc_count,
                                             uint full_gc_count,
D
duke 已提交
63
                                             GCCause::Cause gc_cause) :
64
  VM_GC_Operation(gc_count, gc_cause, full_gc_count, is_cause_full(gc_cause))
D
duke 已提交
65 66 67 68
{
}

void VM_ParallelGCSystemGC::doit() {
69
  SvcGCMarker sgcm(SvcGCMarker::FULL);
D
duke 已提交
70 71 72 73 74 75

  ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap();
  assert(heap->kind() == CollectedHeap::ParallelScavengeHeap,
    "must be a ParallelScavengeHeap");

  GCCauseSetter gccs(heap, _gc_cause);
76
  if (!_full) {
D
duke 已提交
77 78 79
    // If (and only if) the scavenge fails, this will invoke a full gc.
    heap->invoke_scavenge();
  } else {
80
    heap->do_full_collection(false);
D
duke 已提交
81 82
  }
}