public static enum IntrinsicContext.CompilationContext extends Enum<IntrinsicContext.CompilationContext>
Enum Constant and Description |
---|
INLINE_AFTER_PARSING
An intrinsic is being processed when inlining an
Invoke in an existing graph. |
INLINE_DURING_PARSING
An intrinsic is being processed when parsing an invoke bytecode that calls the
intrinsified method.
|
ROOT_COMPILATION
An intrinsic is the root of compilation.
|
Modifier and Type | Method and Description |
---|---|
static IntrinsicContext.CompilationContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntrinsicContext.CompilationContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntrinsicContext.CompilationContext INLINE_DURING_PARSING
public static final IntrinsicContext.CompilationContext INLINE_AFTER_PARSING
Invoke
in an existing graph.public static final IntrinsicContext.CompilationContext ROOT_COMPILATION
public static IntrinsicContext.CompilationContext[] values()
for (IntrinsicContext.CompilationContext c : IntrinsicContext.CompilationContext.values()) System.out.println(c);
public static IntrinsicContext.CompilationContext valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null