< prev index next >

hotspot/src/share/vm/gc_implementation/g1/g1AllocationContext.hpp

Print this page
rev 6912 : 8065227: Report allocation context stats at end of cleanup
Summary: Moved allocation context update from remark to the cleanup phase.
Reviewed-by: mgerdin, jmasa

*** 43,52 **** class AllocationContextStats: public StackObj { public: inline void clear() { } inline void update(bool full_gc) { } ! inline void update_at_remark() { } inline bool available() { return false; } }; #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1ALLOCATIONCONTEXT_HPP --- 43,52 ---- class AllocationContextStats: public StackObj { public: inline void clear() { } inline void update(bool full_gc) { } ! inline void update_after_mark() { } inline bool available() { return false; } }; #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1ALLOCATIONCONTEXT_HPP
< prev index next >