< prev index next >

src/share/vm/gc/g1/g1CollectedHeap.hpp

Print this page
rev 13070 : imported patch 8177544-full-gc-scope

*** 85,94 **** --- 85,95 ---- class nmethod; class Ticks; class WorkGang; class G1Allocator; class G1ArchiveAllocator; + class G1FullGCScope; class G1HeapVerifier; class G1HeapSizingPolicy; typedef OverflowTaskQueue<StarTask, mtGC> RefToScanQueue; typedef GenericTaskQueueSet<RefToScanQueue, mtGC> RefToScanQueueSet;
*** 508,517 **** --- 509,527 ---- // failed allocation request (including collection, expansion, etc.) HeapWord* satisfy_failed_allocation(size_t word_size, AllocationContext_t context, bool* succeeded); private: + // Internal helpers used during full GC to split it up to + // increase readability. + void do_full_collection_inner(G1FullGCScope* scope); + void abort_concurrent_cycle(); + void prepare_heap_for_full_collection(); + void reset_card_cache_and_queue(); + void verify_before_full_collection(bool explicit_gc); + void verify_after_full_collection(); + // Helper method for satisfy_failed_allocation() HeapWord* satisfy_failed_allocation_helper(size_t word_size, AllocationContext_t context, bool do_gc, bool clear_all_soft_refs,
< prev index next >