Searched defs:gc_count_before (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dvm_operations_g1.cpp38 unsigned int gc_count_before,
40 : VM_G1OperationWithAllocRequest(gc_count_before, word_size,
60 unsigned int gc_count_before,
65 : VM_G1OperationWithAllocRequest(gc_count_before, word_size, gc_cause),
37 VM_G1CollectForAllocation( unsigned int gc_count_before, size_t word_size) argument
59 VM_G1IncCollectionPause( unsigned int gc_count_before, size_t word_size, bool should_initiate_conc_mark, double target_pause_time_ms, GCCause::Cause gc_cause) argument
H A Dvm_operations_g1.hpp45 VM_G1OperationWithAllocRequest(unsigned int gc_count_before, argument
48 : VM_GC_Operation(gc_count_before, gc_cause),
56 VM_G1CollectFull(unsigned int gc_count_before, argument
59 : VM_GC_Operation(gc_count_before, cause, full_gc_count_before) { }
69 VM_G1CollectForAllocation(unsigned int gc_count_before,
85 VM_G1IncCollectionPause(unsigned int gc_count_before,
H A Dg1CollectedHeap.cpp871 unsigned int gc_count_before; local
875 result = attempt_allocation(word_size, &gc_count_before);
877 result = attempt_allocation_humongous(word_size, &gc_count_before);
884 VM_G1CollectForAllocation op(gc_count_before, word_size);
934 unsigned int gc_count_before; local
970 gc_count_before = total_collections();
978 result = do_collection_pause(word_size, gc_count_before, &succeeded);
1059 unsigned int gc_count_before; local
1084 gc_count_before = total_collections();
1096 result = do_collection_pause(word_size, gc_count_before,
2581 unsigned int gc_count_before; local
3634 do_collection_pause(size_t word_size, unsigned int gc_count_before, bool* succeeded) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DpermGen.cpp55 unsigned int gc_count_before, full_gc_count_before; local
97 gc_count_before = SharedHeap::heap()->total_collections();
102 VM_GenCollectForPermanentAllocation op(size, gc_count_before, full_gc_count_before,
H A DcollectorPolicy.cpp569 unsigned int gc_count_before; // read inside the Heap_lock locked region local
621 gc_count_before = Universe::heap()->total_collections();
626 gc_count_before);
H A DgenCollectedHeap.cpp841 unsigned int gc_count_before = total_collections(); local
845 VM_GenCollectFull op(gc_count_before, full_gc_count_before,
882 unsigned int gc_count_before = total_collections(); local
885 VM_GenCollectFullConcurrent op(gc_count_before, full_gc_count_before, cause);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DvmCMSOperations.hpp133 VM_GenCollectFullConcurrent(unsigned int gc_count_before, argument
136 : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true /* full */),
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DvmGCOperations.hpp87 VM_GC_Operation(unsigned int gc_count_before, argument
93 _gc_count_before = gc_count_before;
166 unsigned int gc_count_before)
167 : VM_GC_Operation(gc_count_before, GCCause::_allocation_failure),
185 VM_GenCollectFull(unsigned int gc_count_before, argument
189 : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true /* full */),
202 unsigned int gc_count_before,
205 : VM_GC_Operation(gc_count_before, gc_cause, full_gc_count_before, true),
164 VM_GenCollectForAllocation(size_t size, bool tlab, unsigned int gc_count_before) argument
201 VM_GenCollectForPermanentAllocation(size_t size, unsigned int gc_count_before, unsigned int full_gc_count_before, GCCause::Cause gc_cause) argument

Completed in 66 milliseconds