vmPSOperations.cpp 3.1 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 35

// The following methods are used by the parallel scavenge collector
VM_ParallelGCFailedAllocation::VM_ParallelGCFailedAllocation(size_t size,
36
                                                             uint gc_count) :
B
brutisso 已提交
37
  VM_GC_Operation(gc_count, GCCause::_allocation_failure),
D
duke 已提交
38 39 40 41 42 43
  _size(size),
  _result(NULL)
{
}

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

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

  GCCauseSetter gccs(heap, _gc_cause);
50
  _result = heap->failed_mem_allocate(_size);
D
duke 已提交
51 52 53 54 55 56 57

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

// Only used for System.gc() calls
58 59
VM_ParallelGCSystemGC::VM_ParallelGCSystemGC(uint gc_count,
                                             uint full_gc_count,
D
duke 已提交
60
                                             GCCause::Cause gc_cause) :
B
brutisso 已提交
61
  VM_GC_Operation(gc_count, gc_cause, full_gc_count, true /* full */)
D
duke 已提交
62 63 64 65
{
}

void VM_ParallelGCSystemGC::doit() {
66
  SvcGCMarker sgcm(SvcGCMarker::FULL);
D
duke 已提交
67 68 69 70 71 72

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

  GCCauseSetter gccs(heap, _gc_cause);
73
  if (_gc_cause == GCCause::_gc_locker || _gc_cause == GCCause::_wb_young_gc
D
duke 已提交
74 75 76 77
      DEBUG_ONLY(|| _gc_cause == GCCause::_scavenge_alot)) {
    // If (and only if) the scavenge fails, this will invoke a full gc.
    heap->invoke_scavenge();
  } else {
78
    heap->do_full_collection(false);
D
duke 已提交
79 80
  }
}