676 "generation and treats this as the maximum value when the heap " \
677 "is either completely full or completely empty. Par compact " \
678 "also has a smaller default value; see arguments.cpp. " \
679 "G1 full gc treats this as an allowed garbage threshold to skip " \
680 "compaction of heap regions, i.e. if a heap region has less " \
681 "garbage than this value, then the region will not be compacted" \
682 "during G1 full GC.") \
683 range(0, 100) \
684 \
685 product(uint, MarkSweepAlwaysCompactCount, 4, \
686 "How often should we fully compact the heap (ignoring the dead " \
687 "space parameters)") \
688 range(1, max_juint) \
689 \
690 develop(uintx, GCExpandToAllocateDelayMillis, 0, \
691 "Delay between expansion and allocation (in milliseconds)") \
692 \
693 product(uintx, GCDrainStackTargetSize, 64, \
694 "Number of entries we will try to leave on the stack " \
695 "during parallel gc") \
696 range(0, max_juint)
697
698 // end of GC_FLAGS
699
700 DECLARE_FLAGS(GC_FLAGS)
701
702 #endif // SHARE_GC_SHARED_GC_GLOBALS_HPP
|
676 "generation and treats this as the maximum value when the heap " \
677 "is either completely full or completely empty. Par compact " \
678 "also has a smaller default value; see arguments.cpp. " \
679 "G1 full gc treats this as an allowed garbage threshold to skip " \
680 "compaction of heap regions, i.e. if a heap region has less " \
681 "garbage than this value, then the region will not be compacted" \
682 "during G1 full GC.") \
683 range(0, 100) \
684 \
685 product(uint, MarkSweepAlwaysCompactCount, 4, \
686 "How often should we fully compact the heap (ignoring the dead " \
687 "space parameters)") \
688 range(1, max_juint) \
689 \
690 develop(uintx, GCExpandToAllocateDelayMillis, 0, \
691 "Delay between expansion and allocation (in milliseconds)") \
692 \
693 product(uintx, GCDrainStackTargetSize, 64, \
694 "Number of entries we will try to leave on the stack " \
695 "during parallel gc") \
696 range(0, max_juint) \
697 \
698 product(bool, UseAltGCForwarding, false, EXPERIMENTAL, \
699 "Use alternative GC forwarding that preserves object headers") \
700
701 // end of GC_FLAGS
702
703 DECLARE_FLAGS(GC_FLAGS)
704
705 #endif // SHARE_GC_SHARED_GC_GLOBALS_HPP
|