use of org.graalvm.compiler.lir.aarch64.AArch64ReinterpretOp in project graal by oracle.
the class AArch64ArithmeticLIRGenerator method emitReinterpret.
@Override
public Value emitReinterpret(LIRKind to, Value inputVal) {
ValueKind<?> from = inputVal.getValueKind();
if (to.equals(from)) {
return inputVal;
}
Variable result = getLIRGen().newVariable(to);
getLIRGen().append(new AArch64ReinterpretOp(result, getLIRGen().asAllocatable(inputVal)));
return result;
}
Aggregations