src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8078554 Sdiff src/share/vm/runtime

src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp

Print this page




  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP
  26 #define SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP
  27 
  28 #include "runtime/globals.hpp"
  29 #include "utilities/globalDefinitions.hpp"
  30 
  31 /*
  32  * Here we have compiler arguments constraints functions, which are called automatically
  33  * whenever flag's value changes. If the constraint fails the function should return
  34  * an appropriate error value.
  35  */
  36 
  37 Flag::Error AliasLevelConstraintFunc(intx value, bool verbose);
  38 
  39 Flag::Error CICompilerCountConstraintFunc(intx value, bool verbose);
  40 






























  41 #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP */


  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP
  26 #define SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP
  27 
  28 #include "runtime/globals.hpp"
  29 #include "utilities/globalDefinitions.hpp"
  30 
  31 /*
  32  * Here we have compiler arguments constraints functions, which are called automatically
  33  * whenever flag's value changes. If the constraint fails the function should return
  34  * an appropriate error value.
  35  */
  36 
  37 Flag::Error AliasLevelConstraintFunc(intx value, bool verbose);
  38 
  39 Flag::Error CICompilerCountConstraintFunc(intx value, bool verbose);
  40 
  41 Flag::Error AllocatePrefetchDistanceConstraintFunc(intx value, bool verbose);
  42 
  43 Flag::Error AllocatePrefetchInstrConstraintFunc(intx value, bool verbose);
  44 
  45 Flag::Error AllocatePrefetchStepSizeConstraintFunc(intx value, bool verbose);
  46 
  47 Flag::Error CompileThresholdConstraintFunc(intx value, bool verbose);
  48 
  49 Flag::Error OnStackReplacePercentageConstraintFunc(intx value, bool verbose);
  50 
  51 Flag::Error CodeCacheSegmentSizeConstraintFunc(uintx value, bool verbose);
  52 
  53 Flag::Error CompilerThreadPriorityConstraintFunc(intx value, bool verbose);
  54 
  55 Flag::Error CodeEntryAlignmentConstraintFunc(intx value, bool verbose);
  56 
  57 Flag::Error OptoLoopAlignmentConstraintFunc(intx value, bool verbose);
  58 
  59 Flag::Error ArraycopyDstPrefetchDistanceConstraintFunc(uintx value, bool verbose);
  60 
  61 Flag::Error ArraycopySrcPrefetchDistanceConstraintFunc(uintx value, bool verbose);
  62 
  63 Flag::Error TypeProfileLevelConstraintFunc(uintx value, bool verbose);
  64 
  65 #ifdef COMPILER2
  66 Flag::Error InteriorEntryAlignmentConstraintFunc(intx value, bool verbose);
  67 
  68 Flag::Error NodeLimitFudgeFactorConstraintFunc(intx value, bool verbose);
  69 #endif
  70 
  71 #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTSCOMPILER_HPP */
src/share/vm/runtime/commandLineFlagConstraintsCompiler.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File