From 2019d32743e7dd5c455c7d8facc4b328eae7ebf4 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Mon, 30 Jul 2018 20:16:45 +0100 Subject: [PATCH] emit_x64_floating_point: Deduplicate EmitFPMulAdd implementation --- src/backend_x64/emit_x64_floating_point.cpp | 47 +++++++++------------ 1 file changed, 19 insertions(+), 28 deletions(-) diff --git a/src/backend_x64/emit_x64_floating_point.cpp b/src/backend_x64/emit_x64_floating_point.cpp index e36d99d3..3b651f80 100644 --- a/src/backend_x64/emit_x64_floating_point.cpp +++ b/src/backend_x64/emit_x64_floating_point.cpp @@ -14,6 +14,7 @@ #include "common/common_types.h" #include "common/fp/fpcr.h" #include "common/fp/fpsr.h" +#include "common/fp/info.h" #include "common/fp/op.h" #include "common/fp/rounding_mode.h" #include "common/fp/util.h" @@ -648,8 +649,22 @@ void EmitX64::EmitFPMul64(EmitContext& ctx, IR::Inst* inst) { FPThreeOp<64>(code, ctx, inst, &Xbyak::CodeGenerator::mulsd); } -template -static void EmitFPMulAddFallback(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) { +template +static void EmitFPMulAdd(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) { + using FPT = mp::unsigned_integer_of_size; + + if (code.DoesCpuSupport(Xbyak::util::Cpu::tFMA)) { + FPFourOp(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand2, Xbyak::Xmm operand3) { + FCODE(vfmadd231s)(result, operand2, operand3); + }, [](FPT a, FPT b, FPT c) -> FPT { + if (FP::IsQNaN(a) && ((FP::IsInf(b) && FP::IsZero(c)) || (FP::IsZero(b) && FP::IsInf(c)))) { + return FP::FPInfo::DefaultNaN(); + } + return *FP::ProcessNaNs(a, b, c); + }); + return; + } + auto args = ctx.reg_alloc.GetArgumentInfo(inst); ctx.reg_alloc.HostCall(inst, args[0], args[1], args[2]); code.mov(code.ABI_PARAM4.cvt32(), ctx.FPCR()); @@ -666,35 +681,11 @@ static void EmitFPMulAddFallback(BlockOfCode& code, EmitContext& ctx, IR::Inst* } void EmitX64::EmitFPMulAdd32(EmitContext& ctx, IR::Inst* inst) { - if (code.DoesCpuSupport(Xbyak::util::Cpu::tFMA)) { - FPFourOp<32>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand2, Xbyak::Xmm operand3) { - code.vfmadd231ss(result, operand2, operand3); - }, [](u32 a, u32 b, u32 c) -> u32 { - if (FP::IsQNaN(a) && ((FP::IsInf(b) && FP::IsZero(c)) || (FP::IsZero(b) && FP::IsInf(c)))) { - return f32_nan; - } - return *FP::ProcessNaNs(a, b, c); - }); - return; - } - - EmitFPMulAddFallback(code, ctx, inst); + EmitFPMulAdd<32>(code, ctx, inst); } void EmitX64::EmitFPMulAdd64(EmitContext& ctx, IR::Inst* inst) { - if (code.DoesCpuSupport(Xbyak::util::Cpu::tFMA)) { - FPFourOp<64>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand2, Xbyak::Xmm operand3) { - code.vfmadd231sd(result, operand2, operand3); - }, [](u64 a, u64 b, u64 c) -> u64 { - if (FP::IsQNaN(a) && ((FP::IsInf(b) && FP::IsZero(c)) || (FP::IsZero(b) && FP::IsInf(c)))) { - return f64_nan; - } - return *FP::ProcessNaNs(a, b, c); - }); - return; - } - - EmitFPMulAddFallback(code, ctx, inst); + EmitFPMulAdd<64>(code, ctx, inst); } template