use of jdk.vm.ci.meta.VMConstant in project graal by oracle.
the class CompilationResultBuilder method recordInlineDataInCode.
public void recordInlineDataInCode(Constant data) {
assert data != null;
int pos = asm.position();
debug.log("Inline data in code: pos = %d, data = %s", pos, data);
if (data instanceof VMConstant) {
compilationResult.recordDataPatch(pos, new ConstantReference((VMConstant) data));
}
}
Aggregations