JSC.Options
Description:
Content:
Constants:
- public const string USE_DFG
Allows the DFG JIT to be used if true.
- public const string USE_FTL
Allows the FTL JIT to be used if true.
- public const string USE_JIT
Allows the executable pages to be allocated for JIT and thunks if true.
- public const string USE_LLINT
Allows the LLINT to be used if true.
Functions:
- public void @foreach (OptionsFunc function)
Iterates all available options calling
function
for each one. - public bool get_boolean (string option, out bool value)
Get
option
as a bool value. - public bool get_double (string option, out double value)
Get
option
as a double value. - public bool get_int (string option, out int value)
Get
option
as a int value. - public OptionGroup get_option_group ()
Create a OptionGroup to handle JSCOptions as command line arguments.
- public bool get_range_string (string option, out string value)
Get
option
as a range string. - public bool get_size (string option, out size_t value)
Get
option
as a size_t value. - public bool get_string (string option, out string value)
Get
option
as a string. - public bool get_uint (string option, out uint value)
Get
option
as a Signal value. - public bool set_boolean (string option, bool value)
Set
option
as a bool value. - public bool set_double (string option, double value)
Set
option
as a double value. - public bool set_int (string option, int value)
Set
option
as a int value. - public bool set_range_string (string option, string value)
Set
option
as a range string. - public bool set_size (string option, size_t value)
Set
option
as a size_t value. - public bool set_string (string option, string value)
Set
option
as a string. - public bool set_uint (string option, uint value)
Set
option
as a Signal value.