mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
Add range check or constraint where necessary. Reviewed-by: roland, thartmann
This commit is contained in:
parent
7ca0abe7ee
commit
fc2a5e9d53
14 changed files with 496 additions and 37 deletions
|
@ -38,4 +38,34 @@ Flag::Error AliasLevelConstraintFunc(intx value, bool verbose);
|
|||
|
||||
Flag::Error CICompilerCountConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error AllocatePrefetchDistanceConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error AllocatePrefetchInstrConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error AllocatePrefetchStepSizeConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error CompileThresholdConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error OnStackReplacePercentageConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error CodeCacheSegmentSizeConstraintFunc(uintx value, bool verbose);
|
||||
|
||||
Flag::Error CompilerThreadPriorityConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error CodeEntryAlignmentConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error OptoLoopAlignmentConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error ArraycopyDstPrefetchDistanceConstraintFunc(uintx value, bool verbose);
|
||||
|
||||
Flag::Error ArraycopySrcPrefetchDistanceConstraintFunc(uintx value, bool verbose);
|
||||
|
||||
Flag::Error TypeProfileLevelConstraintFunc(uintx value, bool verbose);
|
||||
|
||||
#ifdef COMPILER2
|
||||
Flag::Error InteriorEntryAlignmentConstraintFunc(intx value, bool verbose);
|
||||
|
||||
Flag::Error NodeLimitFudgeFactorConstraintFunc(intx value, bool verbose);
|
||||
#endif
|
||||
|
||||
#endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue