< prev index next >

src/share/vm/runtime/commandLineFlagConstraintsGC.hpp

Print this page

        

*** 32,60 **** * Here we have GC arguments constraints functions, which are called automatically * whenever flag's value changes. If the constraint fails the function should return * an appropriate error value. */ Flag::Error YoungPLABSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error MinHeapFreeRatioConstraintFunc(uintx value, bool verbose); Flag::Error MaxHeapFreeRatioConstraintFunc(uintx value, bool verbose); ! Flag::Error MinMetaspaceFreeRatioConstraintFunc(uintx value, bool verbose); Flag::Error MaxMetaspaceFreeRatioConstraintFunc(uintx value, bool verbose); - Flag::Error InitialTenuringThresholdConstraintFunc(uintx value, bool verbose); Flag::Error MaxTenuringThresholdConstraintFunc(uintx value, bool verbose); #if INCLUDE_ALL_GCS Flag::Error G1NewSizePercentConstraintFunc(uintx value, bool verbose); Flag::Error G1MaxNewSizePercentConstraintFunc(uintx value, bool verbose); #endif // INCLUDE_ALL_GCS Flag::Error CMSOldPLABMinConstraintFunc(size_t value, bool verbose); ! Flag::Error CMSPrecleanDenominatorConstraintFunc(uintx value, bool verbose); Flag::Error CMSPrecleanNumeratorConstraintFunc(uintx value, bool verbose); ! Flag::Error SurvivorAlignmentInBytesConstraintFunc(intx value, bool verbose); #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP */ --- 32,77 ---- * Here we have GC arguments constraints functions, which are called automatically * whenever flag's value changes. If the constraint fails the function should return * an appropriate error value. */ + Flag::Error ParallelGCThreadsConstraintFunc(uint value, bool verbose); + Flag::Error ConcGCThreadsConstraintFunc(uint value, bool verbose); Flag::Error YoungPLABSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error OldPLABSizeConstraintFunc(size_t value, bool verbose); Flag::Error MinHeapFreeRatioConstraintFunc(uintx value, bool verbose); Flag::Error MaxHeapFreeRatioConstraintFunc(uintx value, bool verbose); ! Flag::Error SoftRefLRUPolicyMSPerMBConstraintFunc(intx value, bool verbose); Flag::Error MinMetaspaceFreeRatioConstraintFunc(uintx value, bool verbose); Flag::Error MaxMetaspaceFreeRatioConstraintFunc(uintx value, bool verbose); Flag::Error InitialTenuringThresholdConstraintFunc(uintx value, bool verbose); Flag::Error MaxTenuringThresholdConstraintFunc(uintx value, bool verbose); #if INCLUDE_ALL_GCS + Flag::Error G1RSetRegionEntriesConstraintFunc(intx value, bool verbose); + Flag::Error G1RSetSparseRegionEntriesConstraintFunc(intx value, bool verbose); + Flag::Error G1YoungSurvRateNumRegionsSummaryConstraintFunc(intx value, bool verbose); + Flag::Error G1HeapRegionSizeConstraintFunc(size_t value, bool verbose); Flag::Error G1NewSizePercentConstraintFunc(uintx value, bool verbose); Flag::Error G1MaxNewSizePercentConstraintFunc(uintx value, bool verbose); #endif // INCLUDE_ALL_GCS + Flag::Error ParGCStridesPerThreadConstraintFunc(uintx value, bool verbose); Flag::Error CMSOldPLABMinConstraintFunc(size_t value, bool verbose); ! Flag::Error CMSOldPLABMaxConstraintFunc(size_t value, bool verbose); Flag::Error CMSPrecleanDenominatorConstraintFunc(uintx value, bool verbose); Flag::Error CMSPrecleanNumeratorConstraintFunc(uintx value, bool verbose); ! Flag::Error CMSWorkQueueDrainThresholdConstraintFunc(uintx value, bool verbose); ! Flag::Error MaxGCPauseMillisConstraintFunc(uintx value, bool verbose); ! Flag::Error GCPauseIntervalMillisConstraintFunc(uintx value, bool verbose); ! Flag::Error InitialBootClassLoaderMetaspaceSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error InitialHeapSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error MaxHeapSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error NewSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error MinTLABSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error TLABSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error SurvivorRatioConstraintFunc(uintx value, bool verbose); ! Flag::Error MetaspaceSizeConstraintFunc(size_t value, bool verbose); ! Flag::Error MaxMetaspaceSizeConstraintFunc(size_t value, bool verbose); Flag::Error SurvivorAlignmentInBytesConstraintFunc(intx value, bool verbose); #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSGC_HPP */
< prev index next >