src/share/vm/gc_implementation/g1/vm_operations_g1.cpp

changeset 2445
7246a374a9f2
parent 2315
631f79e71e90
child 2708
1d1603768966
     1.1 --- a/src/share/vm/gc_implementation/g1/vm_operations_g1.cpp	Mon Jan 10 09:23:20 2011 -0800
     1.2 +++ b/src/share/vm/gc_implementation/g1/vm_operations_g1.cpp	Mon Jan 10 17:14:53 2011 -0500
     1.3 @@ -38,7 +38,6 @@
     1.4  }
     1.5  
     1.6  void VM_G1CollectForAllocation::doit() {
     1.7 -  JvmtiGCForAllocationMarker jgcm;
     1.8    G1CollectedHeap* g1h = G1CollectedHeap::heap();
     1.9    _result = g1h->satisfy_failed_allocation(_word_size, &_pause_succeeded);
    1.10    assert(_result == NULL || _pause_succeeded,
    1.11 @@ -46,7 +45,6 @@
    1.12  }
    1.13  
    1.14  void VM_G1CollectFull::doit() {
    1.15 -  JvmtiGCFullMarker jgcm;
    1.16    G1CollectedHeap* g1h = G1CollectedHeap::heap();
    1.17    GCCauseSetter x(g1h, _gc_cause);
    1.18    g1h->do_full_collection(false /* clear_all_soft_refs */);
    1.19 @@ -72,7 +70,6 @@
    1.20  }
    1.21  
    1.22  void VM_G1IncCollectionPause::doit() {
    1.23 -  JvmtiGCForAllocationMarker jgcm;
    1.24    G1CollectedHeap* g1h = G1CollectedHeap::heap();
    1.25    assert(!_should_initiate_conc_mark ||
    1.26    ((_gc_cause == GCCause::_gc_locker && GCLockerInvokesConcurrent) ||

mercurial