use of org.graalvm.compiler.lir.amd64.AMD64Move.StackLeaOp in project graal by oracle.
the class AMD64LIRGenerator method emitAddress.
@Override
public Variable emitAddress(AllocatableValue stackslot) {
Variable result = newVariable(LIRKind.value(target().arch.getWordKind()));
append(new StackLeaOp(result, stackslot));
return result;
}
Aggregations