Package | Description |
---|---|
org.jikesrvm.classloader |
Provides classes that implement the classloading system as well as
data types that represent Java entities like classes, fields, methods
and primitives.
|
org.jikesrvm.compilers.opt.inlining |
Modifier and Type | Field and Description |
---|---|
private static HashMapRVM<RVMMethod,Object> |
RVMMethod.annotationDefaults
A table mapping to values present in the method info tables of annotation
types.
|
private static HashMapRVM<NormalMethod,LocalVariableTable> |
NormalMethod.localVariableTables
the local variable table
|
private static HashMapRVM<NormalMethod,byte[]> |
NormalMethod.osrPrologues
Possible OSR record of osr prologue
|
private static HashMapRVM<NormalMethod,Integer> |
NormalMethod.savedOperandWords
Possibly OSR prologue may change the maximum stack height, remember the
original stack height
|
private static HashMapRVM<NormalMethod,byte[]> |
NormalMethod.synthesizedBytecodes
Possible OSR bytecode array consisting of prologue and original bytecodes
|
Modifier and Type | Field and Description |
---|---|
private HashMapRVM<RVMMethod,InvalidationDatabase.MethodSet> |
InvalidationDatabase.nonOverriddenHash
A mapping from RVMMethod to MethodSet: holds the set of methods which
depend on a particular method being "final"
|
private HashMapRVM<RVMClass,InvalidationDatabase.MethodSet> |
InvalidationDatabase.noSubclassHash
A mapping from RVMClass to MethodSet: holds the set of methods which
depend on a particular class being "final"
|
Modifier and Type | Method and Description |
---|---|
private <T> InvalidationDatabase.MethodSet |
InvalidationDatabase.findOrCreateMethodSet(HashMapRVM<T,InvalidationDatabase.MethodSet> hash,
T key)
Looks up the MethodSet corresponding to a given key in the database.
|