src/share/vm/runtime/commandLineFlagConstraintList.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8112746 Sdiff src/share/vm/runtime

src/share/vm/runtime/commandLineFlagConstraintList.hpp

Print this page




  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTLIST_HPP
  26 #define SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTLIST_HPP
  27 
  28 #include "runtime/globals.hpp"
  29 #include "utilities/growableArray.hpp"
  30 
  31 /*
  32  * Here we have a mechanism for extracting constraints (as custom functions) for flags,
  33  * which otherwise can not be expressed via simple range check, specified in flag macro tables.
  34  *
  35  * An example of a constraint is "flag1 < flag2" where both flag1 and flag2 can change.
  36  *
  37  * See runtime "runtime/commandLineFlagConstraintsCompiler.hpp",
  38  * "runtime/commandLineFlagConstraintsGC.hpp" and
  39  * "runtime/commandLineFlagConstraintsRuntime.hpp" for the functions themselves.
  40  */
  41 
  42 typedef Flag::Error (*CommandLineFlagConstraintFunc_bool)(bool verbose, bool* value);
  43 typedef Flag::Error (*CommandLineFlagConstraintFunc_int)(bool verbose, int* value);
  44 typedef Flag::Error (*CommandLineFlagConstraintFunc_intx)(bool verbose, intx* value);
  45 typedef Flag::Error (*CommandLineFlagConstraintFunc_uint)(bool verbose, uint* value);
  46 typedef Flag::Error (*CommandLineFlagConstraintFunc_uintx)(bool verbose, uintx* value);
  47 typedef Flag::Error (*CommandLineFlagConstraintFunc_uint64_t)(bool verbose, uint64_t* value);
  48 typedef Flag::Error (*CommandLineFlagConstraintFunc_size_t)(bool verbose, size_t* value);
  49 typedef Flag::Error (*CommandLineFlagConstraintFunc_double)(bool verbose, double* value);
  50 
  51 class CommandLineFlagConstraint : public CHeapObj<mtInternal> {
  52 public:
  53   // During VM initialization, constraint validation will be done order of ConstraintType.
  54   enum ConstraintType {
  55     // Will be validated during argument processing (Arguments::parse_argument).
  56     AtParse         = 0,
  57     // Will be validated by CommandLineFlags::check_constraints_of_after_ergo().
  58     AfterErgo      = 1,
  59     // Will be validated by CommandLineFlags::check_constraints_of_after_memory_init().
  60     AfterMemoryInit = 2
  61   };
  62 
  63 private:
  64   const char* _name;
  65   ConstraintType _validate_type;
  66 
  67 public:
  68   // the "name" argument must be a string literal
  69   CommandLineFlagConstraint(const char* name, ConstraintType type) { _name=name; _validate_type=type; };
  70   ~CommandLineFlagConstraint() {};
  71   const char* name() const { return _name; }
  72   ConstraintType type() const { return _validate_type; }
  73   virtual Flag::Error apply_bool(bool* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  74   virtual Flag::Error apply_int(int* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  75   virtual Flag::Error apply_intx(intx* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  76   virtual Flag::Error apply_uint(uint* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  77   virtual Flag::Error apply_uintx(uintx* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  78   virtual Flag::Error apply_uint64_t(uint64_t* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  79   virtual Flag::Error apply_size_t(size_t* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  80   virtual Flag::Error apply_double(double* value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  81 };
  82 
  83 class CommandLineFlagConstraintList : public AllStatic {
  84 private:
  85   static GrowableArray<CommandLineFlagConstraint*>* _constraints;
  86   // Latest constraint validation type.
  87   static CommandLineFlagConstraint::ConstraintType _validating_type;
  88 public:
  89   static void init();
  90   static int length() { return (_constraints != NULL) ? _constraints->length() : 0; }
  91   static CommandLineFlagConstraint* at(int i) { return (_constraints != NULL) ? _constraints->at(i) : NULL; }
  92   static CommandLineFlagConstraint* find_if_needs_check(const char* name);
  93   static void add(CommandLineFlagConstraint* constraint) { _constraints->append(constraint); }
  94   // True if 'AfterErgo' or later constraint functions are validated.
  95   static bool validated_after_ergo() { return _validating_type >= CommandLineFlagConstraint::AfterErgo; };
  96   static bool check_constraints(CommandLineFlagConstraint::ConstraintType type);
  97 };
  98 
  99 #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTLIST_HPP */


  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTLIST_HPP
  26 #define SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTLIST_HPP
  27 
  28 #include "runtime/globals.hpp"
  29 #include "utilities/growableArray.hpp"
  30 
  31 /*
  32  * Here we have a mechanism for extracting constraints (as custom functions) for flags,
  33  * which otherwise can not be expressed via simple range check, specified in flag macro tables.
  34  *
  35  * An example of a constraint is "flag1 < flag2" where both flag1 and flag2 can change.
  36  *
  37  * See runtime "runtime/commandLineFlagConstraintsCompiler.hpp",
  38  * "runtime/commandLineFlagConstraintsGC.hpp" and
  39  * "runtime/commandLineFlagConstraintsRuntime.hpp" for the functions themselves.
  40  */
  41 
  42 typedef Flag::Error (*CommandLineFlagConstraintFunc_bool)(bool value, bool verbose);
  43 typedef Flag::Error (*CommandLineFlagConstraintFunc_int)(int value, bool verbose);
  44 typedef Flag::Error (*CommandLineFlagConstraintFunc_intx)(intx value, bool verbose);
  45 typedef Flag::Error (*CommandLineFlagConstraintFunc_uint)(uint value, bool verbose);
  46 typedef Flag::Error (*CommandLineFlagConstraintFunc_uintx)(uintx value, bool verbose);
  47 typedef Flag::Error (*CommandLineFlagConstraintFunc_uint64_t)(uint64_t value, bool verbose);
  48 typedef Flag::Error (*CommandLineFlagConstraintFunc_size_t)(size_t value, bool verbose);
  49 typedef Flag::Error (*CommandLineFlagConstraintFunc_double)(double value, bool verbose);
  50 
  51 class CommandLineFlagConstraint : public CHeapObj<mtInternal> {
  52 public:
  53   // During VM initialization, constraint validation will be done order of ConstraintType.
  54   enum ConstraintType {
  55     // Will be validated during argument processing (Arguments::parse_argument).
  56     AtParse         = 0,
  57     // Will be validated by CommandLineFlags::check_constraints_of_after_ergo().
  58     AfterErgo      = 1,
  59     // Will be validated by CommandLineFlags::check_constraints_of_after_memory_init().
  60     AfterMemoryInit = 2
  61   };
  62 
  63 private:
  64   const char* _name;
  65   ConstraintType _validate_type;
  66 
  67 public:
  68   // the "name" argument must be a string literal
  69   CommandLineFlagConstraint(const char* name, ConstraintType type) { _name=name; _validate_type=type; };
  70   ~CommandLineFlagConstraint() {};
  71   const char* name() const { return _name; }
  72   ConstraintType type() const { return _validate_type; }
  73   virtual Flag::Error apply_bool(bool value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  74   virtual Flag::Error apply_int(int value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  75   virtual Flag::Error apply_intx(intx value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  76   virtual Flag::Error apply_uint(uint value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  77   virtual Flag::Error apply_uintx(uintx value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  78   virtual Flag::Error apply_uint64_t(uint64_t value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  79   virtual Flag::Error apply_size_t(size_t value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  80   virtual Flag::Error apply_double(double value, bool verbose = true) { ShouldNotReachHere(); return Flag::ERR_OTHER; };
  81 };
  82 
  83 class CommandLineFlagConstraintList : public AllStatic {
  84 private:
  85   static GrowableArray<CommandLineFlagConstraint*>* _constraints;
  86   // Latest constraint validation type.
  87   static CommandLineFlagConstraint::ConstraintType _validating_type;
  88 public:
  89   static void init();
  90   static int length() { return (_constraints != NULL) ? _constraints->length() : 0; }
  91   static CommandLineFlagConstraint* at(int i) { return (_constraints != NULL) ? _constraints->at(i) : NULL; }
  92   static CommandLineFlagConstraint* find_if_needs_check(const char* name);
  93   static void add(CommandLineFlagConstraint* constraint) { _constraints->append(constraint); }
  94   // True if 'AfterErgo' or later constraint functions are validated.
  95   static bool validated_after_ergo() { return _validating_type >= CommandLineFlagConstraint::AfterErgo; };
  96   static bool check_constraints(CommandLineFlagConstraint::ConstraintType type);
  97 };
  98 
  99 #endif /* SHARE_VM_RUNTIME_COMMANDLINEFLAGCONSTRAINTLIST_HPP */
src/share/vm/runtime/commandLineFlagConstraintList.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File