Modifier and Type | Class and Description |
---|---|
public static interface | OptoFactory.
A factory for abstract "constant" representations of objects. |
private static class | OptoFactory.
A constant factory that produces MethodHandle constants that drop an initial ThreadContext argument. |
Modifier and Type | Field and Description |
---|---|
private static final OptoFactory. | CONSTANT_FACTORY
The constant factory we'll be using for this run. |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
private static void | |
private static Boolean | |
public static Invalidator | |
public static final Object | Returns: a "constant" representation of this object appropriate to the current JVM and runtime modesthe class to which the constant should conform type, Object object)Create a new "constant" representation for this object, conforming to the given concrete type. |
public static Invalidator | |
public static Invalidator |
CONSTANT_FACTORY | back to summary |
---|---|
private static final OptoFactory. The constant factory we'll be using for this run. |
OptoFactory | back to summary |
---|---|
public OptoFactory() |
disableIndy | back to summary |
---|---|
private static void disableIndy() |
indyEnabled | back to summary |
---|---|
private static Boolean indyEnabled() |
newConstantInvalidator | back to summary |
---|---|
public static Invalidator newConstantInvalidator(Ruby runtime) |
newConstantWrapper | back to summary |
---|---|
public static final Object newConstantWrapper(Class<T> type, Object object) Create a new "constant" representation for this object, conforming to the given concrete type. This is currently only used by invokedynamic to cache "constant" method handle wrappers for common literal fixnums and symbols. |
newGlobalInvalidator | back to summary |
---|---|
public static Invalidator newGlobalInvalidator(int maxFailures) |
newMethodInvalidator | back to summary |
---|---|
public static Invalidator newMethodInvalidator(RubyModule module) |
Modifier and Type | Method and Description |
---|---|
public Object |
create | back to summary |
---|---|
public Object create(Class<T> type, Object object) Return a representation of a "constant" suitable for optimization in the current runtime. For invokedynamic, this produces a MethodHandles.constant wrapper around the given object, typed with the given type. |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public Object | create(Class<T>
the type to which the constant should conform type, Object the object which represents the constant's value object)Implements org. Return a representation of a "constant" suitable for optimization in the current runtime. |
MethodHandleConstantFactory | back to summary |
---|---|
private MethodHandleConstantFactory() |
create | back to summary |
---|---|
public Object create(Class<T> type, Object object) Implements org. Doc from org. Return a representation of a "constant" suitable for optimization in the current runtime. For invokedynamic, this produces a MethodHandles.constant wrapper around the given object, typed with the given type. |