CompilationRequest
.
Modifier and Type | Field and Description |
---|---|
private final String | failureMessage
A user readable description of the failure. |
private final int | inlinedBytecodes
Number of bytecodes inlined into the compilation, exclusive of the bytecodes in the root method. |
private final boolean | retry
Whether this is a transient failure where retrying would help. |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public static HotSpotCompilationRequestResult | |
public Object | getFailure()
Implements jdk. Determines if the compilation was successful. |
public String | |
public int | |
public boolean | |
public static HotSpotCompilationRequestResult | success(int
number of bytecodes inlined into the compilation, exclusive of the
bytecodes in the root method inlinedBytecodes)Creates a result representing a successful compilation. |
failureMessage | back to summary |
---|---|
private final String failureMessage A user readable description of the failure. This field is read by the VM. |
inlinedBytecodes | back to summary |
---|---|
private final int inlinedBytecodes Number of bytecodes inlined into the compilation, exclusive of the bytecodes in the root method. This field is read by the VM. |
retry | back to summary |
---|---|
private final boolean retry Whether this is a transient failure where retrying would help. This field is read by the VM. |
HotSpotCompilationRequestResult | back to summary |
---|---|
private HotSpotCompilationRequestResult(String failureMessage, boolean retry, int inlinedBytecodes) |
failure | back to summary |
---|---|
public static HotSpotCompilationRequestResult failure(String failureMessage, boolean retry) Creates a result representing a failed compilation.
|
getFailure | back to summary |
---|---|
public Object getFailure() Implements jdk. Doc from jdk. Determines if the compilation was successful.
|
getFailureMessage | back to summary |
---|---|
public String getFailureMessage() |
getInlinedBytecodes | back to summary |
---|---|
public int getInlinedBytecodes() |
getRetry | back to summary |
---|---|
public boolean getRetry() |
success | back to summary |
---|---|
public static HotSpotCompilationRequestResult success(int inlinedBytecodes) Creates a result representing a successful compilation.
|