Package | Description |
---|---|
org.jikesrvm.mm.mmtk | |
org.jikesrvm.options | |
org.mmtk.utility.options | |
org.mmtk.vm |
Provides classes that specify the interface between MMTk and the VM.
|
org.vmutil.options |
Modifier and Type | Method and Description |
---|---|
OptionSet |
Factory.getOptionSet() |
Modifier and Type | Class and Description |
---|---|
class |
OptionSet
Class to handle command-line arguments and options for GC.
|
Modifier and Type | Field and Description |
---|---|
static OptionSet |
Options.set |
Modifier and Type | Method and Description |
---|---|
abstract OptionSet |
Factory.getOptionSet()
Create or retrieve the OptionSet used for MMTk options.
|
Modifier and Type | Field and Description |
---|---|
protected OptionSet |
Option.set |
Constructor and Description |
---|
AddressOption(OptionSet set,
String name,
String desc,
Address defaultValue)
Create a new int option.
|
BooleanOption(OptionSet set,
String name,
String desc,
boolean defaultValue)
Create a new boolean option.
|
EnumOption(OptionSet set,
String name,
String description,
String[] values,
String defaultValue)
Create a new enumeration option.
|
FloatOption(OptionSet set,
String name,
String desc,
float defaultValue)
Create a new float option.
|
IntOption(OptionSet set,
String name,
String desc,
int defaultValue)
Create a new int option.
|
MicrosecondsOption(OptionSet set,
String name,
String desc,
int defaultUs)
Create a new microsecond option.
|
Option(OptionSet set,
int type,
String name,
String description)
Construct a new option.
|
PagesOption(OptionSet set,
String name,
String desc,
int defaultPages)
Create a new pages option.
|
StringOption(OptionSet set,
String name,
String desc,
String defaultValue)
Create a new string option.
|