package org.graalvm.compiler.lir.amd64;
import static jdk.vm.ci.code.ValueUtil.asRegister;
import org.graalvm.compiler.asm.Label;
import org.graalvm.compiler.asm.amd64.AMD64Address;
import org.graalvm.compiler.asm.amd64.AMD64Assembler.ConditionFlag;
import org.graalvm.compiler.asm.amd64.AMD64MacroAssembler;
import org.graalvm.compiler.core.common.LIRKind;
import org.graalvm.compiler.lir.LIRInstructionClass;
import org.graalvm.compiler.lir.Opcode;
import org.graalvm.compiler.lir.asm.CompilationResultBuilder;
import jdk.vm.ci.amd64.AMD64;
import jdk.vm.ci.amd64.AMD64Kind;
import jdk.vm.ci.meta.AllocatableValue;
public enum AMD64Arithmetic {
FREM,
DREM;
public static class FPDivRemOp extends AMD64LIRInstruction {
public static final LIRInstructionClass<FPDivRemOp> TYPE = LIRInstructionClass.create(FPDivRemOp.class);
@Opcode private final AMD64Arithmetic opcode;
@Def protected AllocatableValue result;
@Use protected AllocatableValue x;
@Use protected AllocatableValue y;
@Temp protected AllocatableValue raxTemp;
public FPDivRemOp(AMD64Arithmetic opcode, AllocatableValue result, AllocatableValue x, AllocatableValue y) {
super(TYPE);
this.opcode = opcode;
this.result = result;
this.raxTemp = AMD64.rax.asValue(LIRKind.value(AMD64Kind.DWORD));
this.x = x;
this.y = y;
}
@Override
public void emitCode(CompilationResultBuilder crb, AMD64MacroAssembler masm) {
AMD64Address tmp = new AMD64Address(AMD64.rsp);
masm.subq(AMD64.rsp, 8);
if (opcode == FREM) {
masm.movflt(tmp, asRegister(y));
masm.flds(tmp);
masm.movflt(tmp, asRegister(x));
masm.flds(tmp);
} else {
assert opcode == DREM;
masm.movdbl(tmp, asRegister(y));
masm.fldd(tmp);
masm.movdbl(tmp, asRegister(x));
masm.fldd(tmp);
}
Label label = new Label();
masm.bind(label);
masm.fprem();
masm.fwait();
masm.fnstswAX();
masm.testl(AMD64.rax, 0x400);
masm.jcc(ConditionFlag.NotZero, label);
masm.fxch(1);
masm.fpop();
if (opcode == FREM) {
masm.fstps(tmp);
masm.movflt(asRegister(result), tmp);
} else {
masm.fstpd(tmp);
masm.movdbl(asRegister(result), tmp);
}
masm.addq(AMD64.rsp, 8);
}
@Override
public void verify() {
super.verify();
assert (opcode.name().startsWith("F") && result.getPlatformKind() == AMD64Kind.SINGLE && x.getPlatformKind() == AMD64Kind.SINGLE && y.getPlatformKind() == AMD64Kind.SINGLE) ||
(opcode.name().startsWith("D") && result.getPlatformKind() == AMD64Kind.DOUBLE && x.getPlatformKind() == AMD64Kind.DOUBLE && y.getPlatformKind() == AMD64Kind.DOUBLE);
}
}
}