2018-01-23 14:21:10 +01:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2016 MerryMage
|
|
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
|
|
* General Public License version 2 or any later version.
|
|
|
|
*/
|
|
|
|
|
2018-02-18 16:08:32 +01:00
|
|
|
#include <type_traits>
|
2018-06-30 11:49:47 +02:00
|
|
|
#include <utility>
|
2018-02-18 16:08:32 +01:00
|
|
|
|
2018-02-18 13:54:39 +01:00
|
|
|
#include "backend_x64/abi.h"
|
2018-01-23 14:21:10 +01:00
|
|
|
#include "backend_x64/block_of_code.h"
|
|
|
|
#include "backend_x64/emit_x64.h"
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
2018-07-21 20:01:19 +02:00
|
|
|
#include "common/fp/fpcr.h"
|
|
|
|
#include "common/fp/fpsr.h"
|
2018-07-30 21:16:45 +02:00
|
|
|
#include "common/fp/info.h"
|
2018-06-30 11:49:47 +02:00
|
|
|
#include "common/fp/op.h"
|
2018-07-21 20:01:19 +02:00
|
|
|
#include "common/fp/rounding_mode.h"
|
2018-06-26 21:54:42 +02:00
|
|
|
#include "common/fp/util.h"
|
2018-06-30 11:49:47 +02:00
|
|
|
#include "common/mp/cartesian_product.h"
|
|
|
|
#include "common/mp/integer.h"
|
|
|
|
#include "common/mp/list.h"
|
|
|
|
#include "common/mp/lut.h"
|
|
|
|
#include "common/mp/to_tuple.h"
|
|
|
|
#include "common/mp/vlift.h"
|
|
|
|
#include "common/mp/vllift.h"
|
2018-01-23 14:21:10 +01:00
|
|
|
#include "frontend/ir/basic_block.h"
|
|
|
|
#include "frontend/ir/microinstruction.h"
|
|
|
|
#include "frontend/ir/opcodes.h"
|
|
|
|
|
2018-01-26 14:51:48 +01:00
|
|
|
namespace Dynarmic::BackendX64 {
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
using namespace Xbyak::util;
|
2018-06-30 11:49:47 +02:00
|
|
|
namespace mp = Dynarmic::Common::mp;
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
namespace {
|
|
|
|
|
2018-01-23 14:21:10 +01:00
|
|
|
constexpr u64 f32_negative_zero = 0x80000000u;
|
|
|
|
constexpr u64 f32_nan = 0x7fc00000u;
|
|
|
|
constexpr u64 f32_non_sign_mask = 0x7fffffffu;
|
|
|
|
|
|
|
|
constexpr u64 f64_negative_zero = 0x8000000000000000u;
|
|
|
|
constexpr u64 f64_nan = 0x7ff8000000000000u;
|
|
|
|
constexpr u64 f64_non_sign_mask = 0x7fffffffffffffffu;
|
|
|
|
|
|
|
|
constexpr u64 f64_penultimate_positive_denormal = 0x000ffffffffffffeu;
|
2018-07-15 18:03:35 +02:00
|
|
|
constexpr u64 f64_min_s32 = 0xc1e0000000000000u; // -2147483648 as a double
|
|
|
|
constexpr u64 f64_max_s32 = 0x41dfffffffc00000u; // 2147483647 as a double
|
|
|
|
constexpr u64 f64_min_u32 = 0x0000000000000000u; // 0 as a double
|
|
|
|
constexpr u64 f64_max_u32 = 0x41efffffffe00000u; // 4294967295 as a double
|
|
|
|
constexpr u64 f64_min_s64 = 0xc3e0000000000000u; // -2^63 as a double
|
|
|
|
constexpr u64 f64_max_s64_lim = 0x43e0000000000000u; // 2^63 as a double (actual maximum unrepresentable)
|
|
|
|
constexpr u64 f64_min_u64 = 0x0000000000000000u; // 0 as a double
|
|
|
|
constexpr u64 f64_max_u64_lim = 0x43f0000000000000u; // 2^64 as a double (actual maximum unrepresentable)
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-07-30 15:35:29 +02:00
|
|
|
template<size_t fsize, typename T>
|
2018-07-30 16:13:43 +02:00
|
|
|
T ChooseOnFsize([[maybe_unused]] T f32, [[maybe_unused]] T f64) {
|
2018-07-30 15:35:29 +02:00
|
|
|
static_assert(fsize == 32 || fsize == 64, "fsize must be either 32 or 64");
|
|
|
|
|
|
|
|
if constexpr (fsize == 32) {
|
|
|
|
return f32;
|
|
|
|
} else {
|
|
|
|
return f64;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define FCODE(NAME) (code.*ChooseOnFsize<fsize>(&Xbyak::CodeGenerator::NAME##s, &Xbyak::CodeGenerator::NAME##d))
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
void DenormalsAreZero(BlockOfCode& code, Xbyak::Xmm xmm_value, Xbyak::Reg64 gpr_scratch) {
|
2018-01-23 14:21:10 +01:00
|
|
|
Xbyak::Label end;
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
if constexpr (fsize == 32) {
|
|
|
|
code.movd(gpr_scratch.cvt32(), xmm_value);
|
|
|
|
code.and_(gpr_scratch.cvt32(), u32(0x7FFFFFFF));
|
|
|
|
code.sub(gpr_scratch.cvt32(), u32(1));
|
|
|
|
code.cmp(gpr_scratch.cvt32(), u32(0x007FFFFE));
|
|
|
|
} else {
|
|
|
|
auto mask = code.MConst(xword, f64_non_sign_mask);
|
|
|
|
mask.setBit(64);
|
|
|
|
auto penult_denormal = code.MConst(xword, f64_penultimate_positive_denormal);
|
|
|
|
penult_denormal.setBit(64);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movq(gpr_scratch, xmm_value);
|
|
|
|
code.and_(gpr_scratch, mask);
|
|
|
|
code.sub(gpr_scratch, u32(1));
|
|
|
|
code.cmp(gpr_scratch, penult_denormal);
|
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
// We need to report back whether we've found a denormal on input.
|
|
|
|
// SSE doesn't do this for us when SSE's DAZ is enabled.
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-02-03 15:28:57 +01:00
|
|
|
code.ja(end);
|
2018-07-31 16:32:14 +02:00
|
|
|
code.andps(xmm_value, code.MConst(xword, fsize == 32 ? f32_negative_zero : f64_negative_zero));
|
2018-02-03 15:28:57 +01:00
|
|
|
code.mov(dword[r15 + code.GetJitStateInfo().offsetof_FPSCR_IDC], u32(1 << 7));
|
|
|
|
code.L(end);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
void FlushToZero(BlockOfCode& code, Xbyak::Xmm xmm_value, Xbyak::Reg64 gpr_scratch) {
|
2018-01-23 14:21:10 +01:00
|
|
|
Xbyak::Label end;
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
if constexpr (fsize == 32) {
|
|
|
|
code.movd(gpr_scratch.cvt32(), xmm_value);
|
|
|
|
code.and_(gpr_scratch.cvt32(), u32(0x7FFFFFFF));
|
|
|
|
code.sub(gpr_scratch.cvt32(), u32(1));
|
|
|
|
code.cmp(gpr_scratch.cvt32(), u32(0x007FFFFE));
|
|
|
|
} else {
|
|
|
|
auto mask = code.MConst(xword, f64_non_sign_mask);
|
|
|
|
mask.setBit(64);
|
|
|
|
auto penult_denormal = code.MConst(xword, f64_penultimate_positive_denormal);
|
|
|
|
penult_denormal.setBit(64);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movq(gpr_scratch, xmm_value);
|
|
|
|
code.and_(gpr_scratch, mask);
|
|
|
|
code.sub(gpr_scratch, u32(1));
|
|
|
|
code.cmp(gpr_scratch, penult_denormal);
|
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-02-03 15:28:57 +01:00
|
|
|
code.ja(end);
|
|
|
|
code.pxor(xmm_value, xmm_value);
|
|
|
|
code.mov(dword[r15 + code.GetJitStateInfo().offsetof_FPSCR_UFC], u32(1 << 3));
|
|
|
|
code.L(end);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
void ZeroIfNaN(BlockOfCode& code, Xbyak::Xmm xmm_value, Xbyak::Xmm xmm_scratch) {
|
2018-07-15 18:03:35 +02:00
|
|
|
code.pxor(xmm_scratch, xmm_scratch);
|
2018-07-30 16:13:43 +02:00
|
|
|
FCODE(cmpords)(xmm_scratch, xmm_value); // true mask when ordered (i.e.: when not an NaN)
|
2018-07-15 18:03:35 +02:00
|
|
|
code.pand(xmm_value, xmm_scratch);
|
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
void PreProcessNaNs(BlockOfCode& code, Xbyak::Xmm a, Xbyak::Xmm b, Xbyak::Label& end) {
|
|
|
|
using FPT = mp::unsigned_integer_of_size<fsize>;
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-02-20 15:05:14 +01:00
|
|
|
Xbyak::Label nan;
|
2018-02-18 13:54:39 +01:00
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
FCODE(ucomis)(a, b);
|
2018-02-18 13:54:39 +01:00
|
|
|
code.jp(nan, code.T_NEAR);
|
|
|
|
code.SwitchToFarCode();
|
|
|
|
code.L(nan);
|
|
|
|
|
|
|
|
code.sub(rsp, 8);
|
|
|
|
ABI_PushCallerSaveRegistersAndAdjustStackExcept(code, HostLocXmmIdx(a.getIdx()));
|
|
|
|
code.movq(code.ABI_PARAM1, a);
|
|
|
|
code.movq(code.ABI_PARAM2, b);
|
2018-07-30 16:13:43 +02:00
|
|
|
code.CallFunction(static_cast<FPT(*)(FPT, FPT)>([](FPT a, FPT b) -> FPT {
|
2018-06-26 21:54:42 +02:00
|
|
|
return *FP::ProcessNaNs(a, b);
|
2018-02-18 13:54:39 +01:00
|
|
|
}));
|
|
|
|
code.movq(a, code.ABI_RETURN);
|
|
|
|
ABI_PopCallerSaveRegistersAndAdjustStackExcept(code, HostLocXmmIdx(a.getIdx()));
|
|
|
|
code.add(rsp, 8);
|
|
|
|
|
|
|
|
code.jmp(end, code.T_NEAR);
|
|
|
|
code.SwitchToNearCode();
|
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize, typename NaNHandler>
|
|
|
|
void PreProcessNaNs(BlockOfCode& code, Xbyak::Xmm a, Xbyak::Xmm b, Xbyak::Xmm c, Xbyak::Label& end, NaNHandler nan_handler) {
|
|
|
|
using FPT = mp::unsigned_integer_of_size<fsize>;
|
|
|
|
|
2018-06-06 21:03:12 +02:00
|
|
|
Xbyak::Label nan;
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
FCODE(ucomis)(a, b);
|
2018-06-06 21:03:12 +02:00
|
|
|
code.jp(nan, code.T_NEAR);
|
2018-07-30 16:13:43 +02:00
|
|
|
FCODE(ucomis)(c, c);
|
2018-06-06 21:03:12 +02:00
|
|
|
code.jp(nan, code.T_NEAR);
|
|
|
|
code.SwitchToFarCode();
|
|
|
|
code.L(nan);
|
|
|
|
|
|
|
|
code.sub(rsp, 8);
|
|
|
|
ABI_PushCallerSaveRegistersAndAdjustStackExcept(code, HostLocXmmIdx(a.getIdx()));
|
|
|
|
code.movq(code.ABI_PARAM1, a);
|
|
|
|
code.movq(code.ABI_PARAM2, b);
|
|
|
|
code.movq(code.ABI_PARAM3, c);
|
2018-07-30 16:13:43 +02:00
|
|
|
code.CallFunction(static_cast<FPT(*)(FPT, FPT, FPT)>(nan_handler));
|
2018-06-06 21:03:12 +02:00
|
|
|
code.movq(a, code.ABI_RETURN);
|
|
|
|
ABI_PopCallerSaveRegistersAndAdjustStackExcept(code, HostLocXmmIdx(a.getIdx()));
|
|
|
|
code.add(rsp, 8);
|
|
|
|
|
|
|
|
code.jmp(end, code.T_NEAR);
|
|
|
|
code.SwitchToNearCode();
|
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
void PostProcessNaNs(BlockOfCode& code, Xbyak::Xmm result, Xbyak::Xmm tmp) {
|
|
|
|
if constexpr (fsize == 32) {
|
|
|
|
code.movaps(tmp, result);
|
|
|
|
code.cmpunordps(tmp, tmp);
|
|
|
|
code.pslld(tmp, 31);
|
|
|
|
code.xorps(result, tmp);
|
|
|
|
} else {
|
|
|
|
code.movaps(tmp, result);
|
|
|
|
code.cmpunordpd(tmp, tmp);
|
|
|
|
code.psllq(tmp, 63);
|
|
|
|
code.xorps(result, tmp);
|
|
|
|
}
|
2018-02-18 13:54:39 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
void DefaultNaN(BlockOfCode& code, Xbyak::Xmm xmm_value) {
|
2018-01-23 14:21:10 +01:00
|
|
|
Xbyak::Label end;
|
2018-07-30 16:13:43 +02:00
|
|
|
FCODE(ucomis)(xmm_value, xmm_value);
|
2018-02-03 15:28:57 +01:00
|
|
|
code.jnp(end);
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movaps(xmm_value, code.MConst(xword, fsize == 32 ? f32_nan : f64_nan));
|
2018-02-03 15:28:57 +01:00
|
|
|
code.L(end);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
Xbyak::Label ProcessNaN(BlockOfCode& code, Xbyak::Xmm a) {
|
2018-02-18 13:54:39 +01:00
|
|
|
Xbyak::Label nan, end;
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
FCODE(ucomis)(a, a);
|
2018-02-18 13:54:39 +01:00
|
|
|
code.jp(nan, code.T_NEAR);
|
|
|
|
code.SwitchToFarCode();
|
|
|
|
code.L(nan);
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
code.orps(a, code.MConst(xword, fsize == 32 ? 0x00400000 : 0x0008'0000'0000'0000));
|
2018-02-18 13:54:39 +01:00
|
|
|
|
|
|
|
code.jmp(end, code.T_NEAR);
|
|
|
|
code.SwitchToNearCode();
|
|
|
|
return end;
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template <size_t fsize, typename Function>
|
|
|
|
void FPTwoOp(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst, Function fn) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
2018-02-18 13:54:39 +01:00
|
|
|
Xbyak::Label end;
|
|
|
|
|
2018-01-23 14:21:10 +01:00
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
2018-07-30 16:13:43 +02:00
|
|
|
Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DenormalsAreZero<fsize>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
2018-02-18 13:54:39 +01:00
|
|
|
if (ctx.AccurateNaN() && !ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
end = ProcessNaN<fsize>(code, result);
|
2018-02-18 13:54:39 +01:00
|
|
|
}
|
2018-02-18 16:08:32 +01:00
|
|
|
if constexpr (std::is_member_function_pointer_v<Function>) {
|
2018-07-30 16:13:43 +02:00
|
|
|
(code.*fn)(result, result);
|
2018-02-18 16:08:32 +01:00
|
|
|
} else {
|
2018-07-30 16:13:43 +02:00
|
|
|
fn(result);
|
2018-02-18 16:08:32 +01:00
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FlushToZero<fsize>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
if (ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DefaultNaN<fsize>(code, result);
|
2018-02-18 13:54:39 +01:00
|
|
|
} else if (ctx.AccurateNaN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
PostProcessNaNs<fsize>(code, result, ctx.reg_alloc.ScratchXmm());
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
2018-02-18 13:54:39 +01:00
|
|
|
code.L(end);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template <size_t fsize, typename PreprocessFunction, typename Function>
|
|
|
|
void FPThreeOp(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst, [[maybe_unused]] PreprocessFunction preprocess, Function fn) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
2018-02-18 13:54:39 +01:00
|
|
|
Xbyak::Label end;
|
|
|
|
|
2018-01-23 14:21:10 +01:00
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
Xbyak::Xmm operand = ctx.reg_alloc.UseScratchXmm(args[1]);
|
|
|
|
Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DenormalsAreZero<fsize>(code, result, gpr_scratch);
|
|
|
|
DenormalsAreZero<fsize>(code, operand, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
2018-07-31 16:32:14 +02:00
|
|
|
if constexpr(!std::is_same_v<PreprocessFunction, std::nullptr_t>) {
|
|
|
|
preprocess(result, operand, gpr_scratch, end);
|
|
|
|
}
|
2018-02-18 13:54:39 +01:00
|
|
|
if (ctx.AccurateNaN() && !ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
PreProcessNaNs<fsize>(code, result, operand, end);
|
2018-02-18 13:54:39 +01:00
|
|
|
}
|
2018-02-18 16:08:32 +01:00
|
|
|
if constexpr (std::is_member_function_pointer_v<Function>) {
|
|
|
|
(code.*fn)(result, operand);
|
|
|
|
} else {
|
|
|
|
fn(result, operand);
|
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FlushToZero<fsize>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
if (ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DefaultNaN<fsize>(code, result);
|
2018-02-18 13:54:39 +01:00
|
|
|
} else if (ctx.AccurateNaN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
PostProcessNaNs<fsize>(code, result, operand);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
2018-02-18 13:54:39 +01:00
|
|
|
code.L(end);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-07-30 15:35:29 +02:00
|
|
|
template <size_t fsize, typename Function>
|
2018-07-30 16:13:43 +02:00
|
|
|
void FPThreeOp(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst, Function fn) {
|
|
|
|
FPThreeOp<fsize>(code, ctx, inst, nullptr, fn);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
template <size_t fsize, typename Function, typename NaNHandler>
|
|
|
|
void FPFourOp(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst, Function fn, NaNHandler nan_handler) {
|
2018-06-06 21:03:12 +02:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
Xbyak::Label end;
|
|
|
|
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
Xbyak::Xmm operand2 = ctx.reg_alloc.UseScratchXmm(args[1]);
|
|
|
|
Xbyak::Xmm operand3 = ctx.reg_alloc.UseScratchXmm(args[2]);
|
|
|
|
Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DenormalsAreZero<fsize>(code, result, gpr_scratch);
|
|
|
|
DenormalsAreZero<fsize>(code, operand2, gpr_scratch);
|
|
|
|
DenormalsAreZero<fsize>(code, operand3, gpr_scratch);
|
2018-06-06 21:03:12 +02:00
|
|
|
}
|
|
|
|
if (ctx.AccurateNaN() && !ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
PreProcessNaNs<fsize>(code, result, operand2, operand3, end, nan_handler);
|
2018-06-06 21:03:12 +02:00
|
|
|
}
|
|
|
|
fn(result, operand2, operand3);
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FlushToZero<fsize>(code, result, gpr_scratch);
|
2018-06-06 21:03:12 +02:00
|
|
|
}
|
|
|
|
if (ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DefaultNaN<fsize>(code, result);
|
2018-06-06 21:03:12 +02:00
|
|
|
} else if (ctx.AccurateNaN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
PostProcessNaNs<fsize>(code, result, operand2);
|
2018-06-06 21:03:12 +02:00
|
|
|
}
|
|
|
|
code.L(end);
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPAbs32(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
|
2018-02-20 15:04:11 +01:00
|
|
|
code.pand(result, code.MConst(xword, f32_non_sign_mask));
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPAbs64(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
|
2018-02-20 15:04:11 +01:00
|
|
|
code.pand(result, code.MConst(xword, f64_non_sign_mask));
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPNeg32(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
|
2018-02-20 15:04:11 +01:00
|
|
|
code.pxor(result, code.MConst(xword, f32_negative_zero));
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPNeg64(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
|
2018-02-20 15:04:11 +01:00
|
|
|
code.pxor(result, code.MConst(xword, f64_negative_zero));
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPAdd32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<32>(code, ctx, inst, &Xbyak::CodeGenerator::addss);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPAdd64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<64>(code, ctx, inst, &Xbyak::CodeGenerator::addsd);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPDiv32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<32>(code, ctx, inst, &Xbyak::CodeGenerator::divss);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPDiv64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<64>(code, ctx, inst, &Xbyak::CodeGenerator::divsd);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 15:35:29 +02:00
|
|
|
template<size_t fsize>
|
2018-07-30 16:13:43 +02:00
|
|
|
static void EmitFPMax(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 15:35:29 +02:00
|
|
|
if (ctx.FPSCR_DN()) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
const Xbyak::Xmm operand = ctx.reg_alloc.UseScratchXmm(args[1]);
|
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
const Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
|
|
|
DenormalsAreZero<fsize>(code, result, gpr_scratch);
|
|
|
|
DenormalsAreZero<fsize>(code, operand, gpr_scratch);
|
2018-02-18 16:08:32 +01:00
|
|
|
}
|
2018-07-30 15:35:29 +02:00
|
|
|
|
|
|
|
Xbyak::Label equal, end, nan;
|
|
|
|
|
|
|
|
FCODE(ucomis)(result, operand);
|
|
|
|
code.jz(equal, code.T_NEAR);
|
|
|
|
FCODE(maxs)(result, operand);
|
|
|
|
code.L(end);
|
|
|
|
|
|
|
|
code.SwitchToFarCode();
|
|
|
|
|
|
|
|
code.L(equal);
|
|
|
|
code.jp(nan);
|
2018-02-18 16:08:32 +01:00
|
|
|
code.andps(result, operand);
|
|
|
|
code.jmp(end);
|
2018-07-30 15:35:29 +02:00
|
|
|
|
|
|
|
code.L(nan);
|
|
|
|
code.movaps(result, code.MConst(xword, fsize == 32 ? f32_nan : f64_nan));
|
|
|
|
code.jmp(end);
|
|
|
|
|
|
|
|
code.SwitchToNearCode();
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FPThreeOp<fsize>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand){
|
|
|
|
Xbyak::Label equal, end;
|
|
|
|
FCODE(ucomis)(result, operand);
|
|
|
|
code.jz(equal);
|
|
|
|
FCODE(maxs)(result, operand);
|
|
|
|
code.jmp(end);
|
|
|
|
code.L(equal);
|
|
|
|
code.andps(result, operand);
|
2018-02-18 16:08:32 +01:00
|
|
|
code.L(end);
|
|
|
|
});
|
2018-02-11 17:43:47 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 15:35:29 +02:00
|
|
|
void EmitX64::EmitFPMax32(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPMax<32>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
2018-02-11 17:43:47 +01:00
|
|
|
void EmitX64::EmitFPMax64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 15:35:29 +02:00
|
|
|
EmitFPMax<64>(code, ctx, inst);
|
2018-02-11 17:43:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-20 15:05:14 +01:00
|
|
|
void EmitX64::EmitFPMaxNumeric32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<32>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand, Xbyak::Reg64 scratch, Xbyak::Label& end){
|
2018-02-20 15:05:14 +01:00
|
|
|
Xbyak::Label normal, normal_or_equal, result_is_result;
|
|
|
|
|
|
|
|
code.ucomiss(result, operand);
|
|
|
|
code.jnp(normal_or_equal);
|
|
|
|
// If operand == QNaN, result = result.
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movd(scratch.cvt32(), operand);
|
|
|
|
code.shl(scratch.cvt32(), 1);
|
|
|
|
code.cmp(scratch.cvt32(), 0xff800000u);
|
2018-02-20 15:05:14 +01:00
|
|
|
code.jae(result_is_result);
|
|
|
|
// If operand == SNaN, let usual NaN code handle it.
|
2018-07-30 16:13:43 +02:00
|
|
|
code.cmp(scratch.cvt32(), 0xff000000u);
|
2018-02-20 15:05:14 +01:00
|
|
|
code.ja(normal);
|
|
|
|
// If result == SNaN, && operand != NaN, result = result.
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movd(scratch.cvt32(), result);
|
|
|
|
code.shl(scratch.cvt32(), 1);
|
|
|
|
code.cmp(scratch.cvt32(), 0xff800000u);
|
2018-02-20 15:05:14 +01:00
|
|
|
code.jnae(result_is_result);
|
|
|
|
// If result == QNaN && operand != NaN, result = operand.
|
|
|
|
code.movaps(result, operand);
|
2018-03-27 09:21:18 +02:00
|
|
|
code.jmp(end, code.T_NEAR);
|
2018-02-20 15:05:14 +01:00
|
|
|
|
|
|
|
code.L(result_is_result);
|
|
|
|
code.movaps(operand, result);
|
|
|
|
code.jmp(normal);
|
|
|
|
|
|
|
|
code.L(normal_or_equal);
|
|
|
|
code.jnz(normal);
|
|
|
|
code.andps(operand, result);
|
|
|
|
code.L(normal);
|
|
|
|
}, &Xbyak::CodeGenerator::maxss);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPMaxNumeric64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<64>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand, Xbyak::Reg64 scratch, Xbyak::Label& end){
|
2018-02-20 15:05:14 +01:00
|
|
|
Xbyak::Label normal, normal_or_equal, result_is_result;
|
|
|
|
|
|
|
|
code.ucomisd(result, operand);
|
|
|
|
code.jnp(normal_or_equal);
|
|
|
|
// If operand == QNaN, result = result.
|
|
|
|
code.movq(scratch, operand);
|
|
|
|
code.shl(scratch, 1);
|
|
|
|
code.cmp(scratch, code.MConst(qword, 0xfff0'0000'0000'0000u));
|
|
|
|
code.jae(result_is_result);
|
|
|
|
// If operand == SNaN, let usual NaN code handle it.
|
|
|
|
code.cmp(scratch, code.MConst(qword, 0xffe0'0000'0000'0000u));
|
|
|
|
code.ja(normal);
|
|
|
|
// If result == SNaN, && operand != NaN, result = result.
|
|
|
|
code.movq(scratch, result);
|
|
|
|
code.shl(scratch, 1);
|
|
|
|
code.cmp(scratch, code.MConst(qword, 0xfff0'0000'0000'0000u));
|
|
|
|
code.jnae(result_is_result);
|
|
|
|
// If result == QNaN && operand != NaN, result = operand.
|
|
|
|
code.movaps(result, operand);
|
2018-03-27 09:21:18 +02:00
|
|
|
code.jmp(end, code.T_NEAR);
|
2018-02-20 15:05:14 +01:00
|
|
|
|
|
|
|
code.L(result_is_result);
|
|
|
|
code.movaps(operand, result);
|
|
|
|
code.jmp(normal);
|
|
|
|
|
|
|
|
code.L(normal_or_equal);
|
|
|
|
code.jnz(normal);
|
|
|
|
code.andps(operand, result);
|
|
|
|
code.L(normal);
|
|
|
|
}, &Xbyak::CodeGenerator::maxsd);
|
|
|
|
}
|
|
|
|
|
2018-07-30 15:35:29 +02:00
|
|
|
template<size_t fsize>
|
2018-07-30 16:13:43 +02:00
|
|
|
static void EmitFPMin(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 15:35:29 +02:00
|
|
|
if (ctx.FPSCR_DN()) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
const Xbyak::Xmm operand = ctx.reg_alloc.UseScratchXmm(args[1]);
|
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
const Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
|
|
|
DenormalsAreZero<fsize>(code, result, gpr_scratch);
|
|
|
|
DenormalsAreZero<fsize>(code, operand, gpr_scratch);
|
2018-07-30 15:35:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Xbyak::Label equal, end, nan;
|
|
|
|
|
|
|
|
FCODE(ucomis)(result, operand);
|
|
|
|
code.jz(equal, code.T_NEAR);
|
|
|
|
FCODE(mins)(result, operand);
|
|
|
|
code.L(end);
|
|
|
|
|
|
|
|
code.SwitchToFarCode();
|
|
|
|
|
|
|
|
code.L(equal);
|
|
|
|
code.jp(nan);
|
2018-02-18 16:08:32 +01:00
|
|
|
code.orps(result, operand);
|
|
|
|
code.jmp(end);
|
2018-07-30 15:35:29 +02:00
|
|
|
|
|
|
|
code.L(nan);
|
|
|
|
code.movaps(result, code.MConst(xword, fsize == 32 ? f32_nan : f64_nan));
|
|
|
|
code.jmp(end);
|
|
|
|
|
|
|
|
code.SwitchToNearCode();
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FPThreeOp<fsize>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand){
|
|
|
|
Xbyak::Label equal, end;
|
|
|
|
FCODE(ucomis)(result, operand);
|
|
|
|
code.jz(equal);
|
|
|
|
FCODE(mins)(result, operand);
|
|
|
|
code.jmp(end);
|
|
|
|
code.L(equal);
|
|
|
|
code.orps(result, operand);
|
2018-02-18 16:08:32 +01:00
|
|
|
code.L(end);
|
|
|
|
});
|
2018-02-11 17:43:47 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 15:35:29 +02:00
|
|
|
void EmitX64::EmitFPMin32(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPMin<32>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
2018-02-11 17:43:47 +01:00
|
|
|
void EmitX64::EmitFPMin64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 15:35:29 +02:00
|
|
|
EmitFPMin<64>(code, ctx, inst);
|
2018-02-11 17:43:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-20 15:08:46 +01:00
|
|
|
void EmitX64::EmitFPMinNumeric32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<32>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand, Xbyak::Reg64 scratch, Xbyak::Label& end){
|
2018-02-20 15:08:46 +01:00
|
|
|
Xbyak::Label normal, normal_or_equal, result_is_result;
|
|
|
|
|
|
|
|
code.ucomiss(result, operand);
|
|
|
|
code.jnp(normal_or_equal);
|
|
|
|
// If operand == QNaN, result = result.
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movd(scratch.cvt32(), operand);
|
|
|
|
code.shl(scratch.cvt32(), 1);
|
|
|
|
code.cmp(scratch.cvt32(), 0xff800000u);
|
2018-02-20 15:08:46 +01:00
|
|
|
code.jae(result_is_result);
|
|
|
|
// If operand == SNaN, let usual NaN code handle it.
|
2018-07-30 16:13:43 +02:00
|
|
|
code.cmp(scratch.cvt32(), 0xff000000u);
|
2018-02-20 15:08:46 +01:00
|
|
|
code.ja(normal);
|
|
|
|
// If result == SNaN, && operand != NaN, result = result.
|
2018-07-30 16:13:43 +02:00
|
|
|
code.movd(scratch.cvt32(), result);
|
|
|
|
code.shl(scratch.cvt32(), 1);
|
|
|
|
code.cmp(scratch.cvt32(), 0xff800000u);
|
2018-02-20 15:08:46 +01:00
|
|
|
code.jnae(result_is_result);
|
|
|
|
// If result == QNaN && operand != NaN, result = operand.
|
|
|
|
code.movaps(result, operand);
|
2018-03-29 13:45:33 +02:00
|
|
|
code.jmp(end, code.T_NEAR);
|
2018-02-20 15:08:46 +01:00
|
|
|
|
|
|
|
code.L(result_is_result);
|
|
|
|
code.movaps(operand, result);
|
|
|
|
code.jmp(normal);
|
|
|
|
|
|
|
|
code.L(normal_or_equal);
|
|
|
|
code.jnz(normal);
|
|
|
|
code.orps(operand, result);
|
|
|
|
code.L(normal);
|
|
|
|
}, &Xbyak::CodeGenerator::minss);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPMinNumeric64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<64>(code, ctx, inst, [&](Xbyak::Xmm result, Xbyak::Xmm operand, Xbyak::Reg64 scratch, Xbyak::Label& end){
|
2018-02-20 15:08:46 +01:00
|
|
|
Xbyak::Label normal, normal_or_equal, result_is_result;
|
|
|
|
|
|
|
|
code.ucomisd(result, operand);
|
|
|
|
code.jnp(normal_or_equal);
|
|
|
|
// If operand == QNaN, result = result.
|
|
|
|
code.movq(scratch, operand);
|
|
|
|
code.shl(scratch, 1);
|
|
|
|
code.cmp(scratch, code.MConst(qword, 0xfff0'0000'0000'0000u));
|
|
|
|
code.jae(result_is_result);
|
|
|
|
// If operand == SNaN, let usual NaN code handle it.
|
|
|
|
code.cmp(scratch, code.MConst(qword, 0xffe0'0000'0000'0000u));
|
|
|
|
code.ja(normal);
|
|
|
|
// If result == SNaN, && operand != NaN, result = result.
|
|
|
|
code.movq(scratch, result);
|
|
|
|
code.shl(scratch, 1);
|
|
|
|
code.cmp(scratch, code.MConst(qword, 0xfff0'0000'0000'0000u));
|
|
|
|
code.jnae(result_is_result);
|
|
|
|
// If result == QNaN && operand != NaN, result = operand.
|
|
|
|
code.movaps(result, operand);
|
2018-03-29 13:45:33 +02:00
|
|
|
code.jmp(end, code.T_NEAR);
|
2018-02-20 15:08:46 +01:00
|
|
|
|
|
|
|
code.L(result_is_result);
|
|
|
|
code.movaps(operand, result);
|
|
|
|
code.jmp(normal);
|
|
|
|
|
|
|
|
code.L(normal_or_equal);
|
|
|
|
code.jnz(normal);
|
|
|
|
code.orps(operand, result);
|
|
|
|
code.L(normal);
|
|
|
|
}, &Xbyak::CodeGenerator::minsd);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPMul32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<32>(code, ctx, inst, &Xbyak::CodeGenerator::mulss);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPMul64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<64>(code, ctx, inst, &Xbyak::CodeGenerator::mulsd);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 21:16:45 +02:00
|
|
|
template<size_t fsize>
|
|
|
|
static void EmitFPMulAdd(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
using FPT = mp::unsigned_integer_of_size<fsize>;
|
|
|
|
|
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tFMA)) {
|
|
|
|
FPFourOp<fsize>(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<FPT>::DefaultNaN();
|
|
|
|
}
|
|
|
|
return *FP::ProcessNaNs(a, b, c);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-23 17:23:05 +02:00
|
|
|
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());
|
|
|
|
#ifdef _WIN32
|
|
|
|
code.sub(rsp, 16 + ABI_SHADOW_SPACE);
|
|
|
|
code.lea(rax, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.mov(qword[rsp + ABI_SHADOW_SPACE], rax);
|
|
|
|
code.CallFunction(&FP::FPMulAdd<FPT>);
|
|
|
|
code.add(rsp, 16 + ABI_SHADOW_SPACE);
|
|
|
|
#else
|
|
|
|
code.lea(code.ABI_PARAM5, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.CallFunction(&FP::FPMulAdd<FPT>);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-06-06 21:03:12 +02:00
|
|
|
void EmitX64::EmitFPMulAdd32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 21:16:45 +02:00
|
|
|
EmitFPMulAdd<32>(code, ctx, inst);
|
2018-06-06 21:03:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPMulAdd64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 21:16:45 +02:00
|
|
|
EmitFPMulAdd<64>(code, ctx, inst);
|
2018-06-06 21:03:12 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 19:36:40 +02:00
|
|
|
template<typename FPT>
|
|
|
|
static void EmitFPRecipEstimate(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
ctx.reg_alloc.HostCall(inst, args[0]);
|
|
|
|
code.mov(code.ABI_PARAM2.cvt32(), ctx.FPCR());
|
|
|
|
code.lea(code.ABI_PARAM3, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.CallFunction(&FP::FPRecipEstimate<FPT>);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRecipEstimate32(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRecipEstimate<u32>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRecipEstimate64(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRecipEstimate<u64>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
2018-07-25 20:11:20 +02:00
|
|
|
template<typename FPT>
|
|
|
|
static void EmitFPRecipStepFused(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
ctx.reg_alloc.HostCall(inst, args[0], args[1]);
|
|
|
|
code.mov(code.ABI_PARAM3.cvt32(), ctx.FPCR());
|
|
|
|
code.lea(code.ABI_PARAM4, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.CallFunction(&FP::FPRecipStepFused<FPT>);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRecipStepFused32(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRecipStepFused<u32>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRecipStepFused64(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRecipStepFused<u64>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
2018-07-16 14:49:15 +02:00
|
|
|
static void EmitFPRound(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst, size_t fsize) {
|
2018-07-16 15:22:29 +02:00
|
|
|
const auto rounding = static_cast<FP::RoundingMode>(inst->GetArg(1).GetU8());
|
|
|
|
const bool exact = inst->GetArg(2).GetU1();
|
|
|
|
|
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tSSE41) && rounding != FP::RoundingMode::ToNearest_TieAwayFromZero && !exact) {
|
|
|
|
const int round_imm = [&]{
|
|
|
|
switch (rounding) {
|
|
|
|
case FP::RoundingMode::ToNearest_TieEven:
|
|
|
|
return 0b00;
|
|
|
|
case FP::RoundingMode::TowardsPlusInfinity:
|
|
|
|
return 0b10;
|
|
|
|
case FP::RoundingMode::TowardsMinusInfinity:
|
|
|
|
return 0b01;
|
|
|
|
case FP::RoundingMode::TowardsZero:
|
|
|
|
return 0b11;
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}();
|
|
|
|
|
|
|
|
if (fsize == 64) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPTwoOp<64>(code, ctx, inst, [&](Xbyak::Xmm result) {
|
2018-07-16 15:22:29 +02:00
|
|
|
code.roundsd(result, result, round_imm);
|
|
|
|
});
|
|
|
|
} else {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPTwoOp<32>(code, ctx, inst, [&](Xbyak::Xmm result) {
|
2018-07-16 15:22:29 +02:00
|
|
|
code.roundss(result, result, round_imm);
|
|
|
|
});
|
|
|
|
}
|
2018-07-16 14:49:15 +02:00
|
|
|
|
2018-07-16 15:22:29 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-07-16 14:49:15 +02:00
|
|
|
|
|
|
|
using fsize_list = mp::list<mp::vlift<size_t(32)>, mp::vlift<size_t(64)>>;
|
|
|
|
using rounding_list = mp::list<
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::ToNearest_TieEven>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::TowardsPlusInfinity>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::TowardsMinusInfinity>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::TowardsZero>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::ToNearest_TieAwayFromZero>
|
|
|
|
>;
|
|
|
|
using exact_list = mp::list<mp::vlift<true>, mp::vlift<false>>;
|
|
|
|
|
|
|
|
using key_type = std::tuple<size_t, FP::RoundingMode, bool>;
|
2018-07-17 20:53:21 +02:00
|
|
|
using value_type = u64(*)(u64, FP::FPSR&, FP::FPCR);
|
2018-07-16 14:49:15 +02:00
|
|
|
|
|
|
|
static const auto lut = mp::GenerateLookupTableFromList<key_type, value_type>(
|
|
|
|
[](auto args) {
|
|
|
|
return std::pair<key_type, value_type>{
|
|
|
|
mp::to_tuple<decltype(args)>,
|
|
|
|
static_cast<value_type>(
|
2018-07-17 20:53:21 +02:00
|
|
|
[](u64 input, FP::FPSR& fpsr, FP::FPCR fpcr) {
|
2018-07-16 14:49:15 +02:00
|
|
|
constexpr auto t = mp::to_tuple<decltype(args)>;
|
|
|
|
constexpr size_t fsize = std::get<0>(t);
|
|
|
|
constexpr FP::RoundingMode rounding_mode = std::get<1>(t);
|
|
|
|
constexpr bool exact = std::get<2>(t);
|
|
|
|
using InputSize = mp::unsigned_integer_of_size<fsize>;
|
|
|
|
|
|
|
|
return FP::FPRoundInt<InputSize>(static_cast<InputSize>(input), fpcr, rounding_mode, exact, fpsr);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mp::cartesian_product<fsize_list, rounding_list, exact_list>{}
|
|
|
|
);
|
|
|
|
|
2018-07-16 15:22:29 +02:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
2018-07-16 14:49:15 +02:00
|
|
|
ctx.reg_alloc.HostCall(inst, args[0]);
|
|
|
|
code.lea(code.ABI_PARAM2, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.mov(code.ABI_PARAM3.cvt32(), ctx.FPCR());
|
|
|
|
code.CallFunction(lut.at(std::make_tuple(fsize, rounding, exact)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRoundInt32(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRound(code, ctx, inst, 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRoundInt64(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRound(code, ctx, inst, 64);
|
|
|
|
}
|
|
|
|
|
2018-07-22 19:18:22 +02:00
|
|
|
template<typename FPT>
|
2018-07-22 22:49:08 +02:00
|
|
|
static void EmitFPRSqrtEstimate(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
2018-07-22 19:18:22 +02:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
ctx.reg_alloc.HostCall(inst, args[0]);
|
|
|
|
code.mov(code.ABI_PARAM2.cvt32(), ctx.FPCR());
|
|
|
|
code.lea(code.ABI_PARAM3, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.CallFunction(&FP::FPRSqrtEstimate<FPT>);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRSqrtEstimate32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-22 22:49:08 +02:00
|
|
|
EmitFPRSqrtEstimate<u32>(code, ctx, inst);
|
2018-07-22 19:18:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRSqrtEstimate64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-22 22:49:08 +02:00
|
|
|
EmitFPRSqrtEstimate<u64>(code, ctx, inst);
|
2018-07-22 19:18:22 +02:00
|
|
|
}
|
|
|
|
|
2018-07-23 23:02:28 +02:00
|
|
|
template<typename FPT>
|
|
|
|
static void EmitFPRSqrtStepFused(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
ctx.reg_alloc.HostCall(inst, args[0], args[1]);
|
|
|
|
code.mov(code.ABI_PARAM3.cvt32(), ctx.FPCR());
|
|
|
|
code.lea(code.ABI_PARAM4, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.CallFunction(&FP::FPRSqrtStepFused<FPT>);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRSqrtStepFused32(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRSqrtStepFused<u32>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitX64::EmitFPRSqrtStepFused64(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
EmitFPRSqrtStepFused<u64>(code, ctx, inst);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPSqrt32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPTwoOp<32>(code, ctx, inst, &Xbyak::CodeGenerator::sqrtss);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPSqrt64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPTwoOp<64>(code, ctx, inst, &Xbyak::CodeGenerator::sqrtsd);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPSub32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<32>(code, ctx, inst, &Xbyak::CodeGenerator::subss);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPSub64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FPThreeOp<64>(code, ctx, inst, &Xbyak::CodeGenerator::subsd);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-02-05 13:16:01 +01:00
|
|
|
static Xbyak::Reg64 SetFpscrNzcvFromFlags(BlockOfCode& code, EmitContext& ctx) {
|
2018-01-23 14:21:10 +01:00
|
|
|
ctx.reg_alloc.ScratchGpr({HostLoc::RCX}); // shifting requires use of cl
|
2018-02-05 13:16:01 +01:00
|
|
|
Xbyak::Reg64 nzcv = ctx.reg_alloc.ScratchGpr();
|
|
|
|
|
|
|
|
// x64 flags ARM flags
|
|
|
|
// ZF PF CF NZCV
|
|
|
|
// Unordered 1 1 1 0011
|
|
|
|
// Greater than 0 0 0 0010
|
|
|
|
// Less than 0 0 1 1000
|
|
|
|
// Equal 1 0 0 0110
|
|
|
|
//
|
|
|
|
// Thus we can take use ZF:CF as an index into an array like so:
|
|
|
|
// x64 ARM ARM as x64
|
|
|
|
// ZF:CF NZCV NZ-----C-------V
|
|
|
|
// 0 0010 0000000100000000 = 0x0100
|
|
|
|
// 1 1000 1000000000000000 = 0x8000
|
|
|
|
// 2 0110 0100000100000000 = 0x4100
|
|
|
|
// 3 0011 0000000100000001 = 0x0101
|
|
|
|
|
|
|
|
code.mov(nzcv, 0x0101'4100'8000'0100);
|
2018-02-03 15:28:57 +01:00
|
|
|
code.sete(cl);
|
2018-02-05 13:16:01 +01:00
|
|
|
code.rcl(cl, 5); // cl = ZF:CF:0000
|
|
|
|
code.shr(nzcv, cl);
|
|
|
|
|
|
|
|
return nzcv;
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPCompare32(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm reg_a = ctx.reg_alloc.UseXmm(args[0]);
|
|
|
|
Xbyak::Xmm reg_b = ctx.reg_alloc.UseXmm(args[1]);
|
|
|
|
bool exc_on_qnan = args[2].GetImmediateU1();
|
|
|
|
|
|
|
|
if (exc_on_qnan) {
|
2018-02-03 15:28:57 +01:00
|
|
|
code.comiss(reg_a, reg_b);
|
2018-01-23 14:21:10 +01:00
|
|
|
} else {
|
2018-02-03 15:28:57 +01:00
|
|
|
code.ucomiss(reg_a, reg_b);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-02-05 13:16:01 +01:00
|
|
|
Xbyak::Reg64 nzcv = SetFpscrNzcvFromFlags(code, ctx);
|
|
|
|
ctx.reg_alloc.DefineValue(inst, nzcv);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPCompare64(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm reg_a = ctx.reg_alloc.UseXmm(args[0]);
|
|
|
|
Xbyak::Xmm reg_b = ctx.reg_alloc.UseXmm(args[1]);
|
|
|
|
bool exc_on_qnan = args[2].GetImmediateU1();
|
|
|
|
|
|
|
|
if (exc_on_qnan) {
|
2018-02-03 15:28:57 +01:00
|
|
|
code.comisd(reg_a, reg_b);
|
2018-01-23 14:21:10 +01:00
|
|
|
} else {
|
2018-02-03 15:28:57 +01:00
|
|
|
code.ucomisd(reg_a, reg_b);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-02-05 13:16:01 +01:00
|
|
|
Xbyak::Reg64 nzcv = SetFpscrNzcvFromFlags(code, ctx);
|
|
|
|
ctx.reg_alloc.DefineValue(inst, nzcv);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPSingleToDouble(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DenormalsAreZero<32>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
2018-02-03 15:28:57 +01:00
|
|
|
code.cvtss2sd(result, result);
|
2018-01-23 14:21:10 +01:00
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FlushToZero<64>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
if (ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DefaultNaN<64>(code, result);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPDoubleToSingle(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Xmm result = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
Xbyak::Reg64 gpr_scratch = ctx.reg_alloc.ScratchGpr();
|
|
|
|
|
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DenormalsAreZero<64>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
2018-02-03 15:28:57 +01:00
|
|
|
code.cvtsd2ss(result, result);
|
2018-01-23 14:21:10 +01:00
|
|
|
if (ctx.FPSCR_FTZ()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
FlushToZero<32>(code, result, gpr_scratch);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
if (ctx.FPSCR_DN()) {
|
2018-07-30 16:13:43 +02:00
|
|
|
DefaultNaN<32>(code, result);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-07-15 18:03:35 +02:00
|
|
|
static void EmitFPToFixed(BlockOfCode& code, EmitContext& ctx, IR::Inst* inst, size_t fsize, bool unsigned_, size_t isize) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const size_t fbits = args[1].GetImmediateU8();
|
|
|
|
const auto rounding = static_cast<FP::RoundingMode>(args[2].GetImmediateU8());
|
|
|
|
|
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tSSE41) && rounding != FP::RoundingMode::ToNearest_TieAwayFromZero){
|
|
|
|
const Xbyak::Xmm src = ctx.reg_alloc.UseScratchXmm(args[0]);
|
|
|
|
|
|
|
|
const int round_imm = [&]{
|
|
|
|
switch (rounding) {
|
|
|
|
case FP::RoundingMode::ToNearest_TieEven:
|
|
|
|
default:
|
|
|
|
return 0b00;
|
|
|
|
case FP::RoundingMode::TowardsPlusInfinity:
|
|
|
|
return 0b10;
|
|
|
|
case FP::RoundingMode::TowardsMinusInfinity:
|
|
|
|
return 0b01;
|
|
|
|
case FP::RoundingMode::TowardsZero:
|
|
|
|
return 0b11;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
|
|
|
const Xbyak::Xmm scratch = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const Xbyak::Reg64 result = ctx.reg_alloc.ScratchGpr().cvt64();
|
|
|
|
|
|
|
|
if (fsize == 64) {
|
|
|
|
if (fbits != 0) {
|
|
|
|
const u64 scale_factor = static_cast<u64>((fbits + 1023) << 52);
|
|
|
|
code.mulsd(src, code.MConst(xword, scale_factor));
|
|
|
|
}
|
|
|
|
|
|
|
|
code.roundsd(src, src, round_imm);
|
|
|
|
} else {
|
|
|
|
if (fbits != 0) {
|
|
|
|
const u32 scale_factor = static_cast<u32>((fbits + 127) << 23);
|
|
|
|
code.mulss(src, code.MConst(xword, scale_factor));
|
|
|
|
}
|
|
|
|
|
|
|
|
code.roundss(src, src, round_imm);
|
|
|
|
code.cvtss2sd(src, src);
|
|
|
|
}
|
|
|
|
|
2018-07-30 16:13:43 +02:00
|
|
|
ZeroIfNaN<64>(code, src, scratch);
|
|
|
|
|
2018-07-15 18:03:35 +02:00
|
|
|
if (isize == 64) {
|
|
|
|
Xbyak::Label saturate_max, end;
|
|
|
|
|
|
|
|
code.maxsd(src, code.MConst(xword, unsigned_ ? f64_min_u64 : f64_min_s64));
|
|
|
|
code.movsd(scratch, code.MConst(xword, unsigned_ ? f64_max_u64_lim : f64_max_s64_lim));
|
|
|
|
code.comisd(scratch, src);
|
|
|
|
code.jna(saturate_max, code.T_NEAR);
|
|
|
|
if (unsigned_) {
|
|
|
|
Xbyak::Label below_max;
|
|
|
|
|
|
|
|
code.movsd(scratch, code.MConst(xword, f64_max_s64_lim));
|
|
|
|
code.comisd(src, scratch);
|
|
|
|
code.jb(below_max);
|
|
|
|
code.subsd(src, scratch);
|
|
|
|
code.cvttsd2si(result, src);
|
|
|
|
code.btc(result, 63);
|
|
|
|
code.jmp(end);
|
|
|
|
code.L(below_max);
|
|
|
|
}
|
|
|
|
code.cvttsd2si(result, src); // 64 bit gpr
|
|
|
|
code.L(end);
|
|
|
|
|
|
|
|
code.SwitchToFarCode();
|
|
|
|
code.L(saturate_max);
|
|
|
|
code.mov(result, unsigned_ ? 0xFFFF'FFFF'FFFF'FFFF : 0x7FFF'FFFF'FFFF'FFFF);
|
|
|
|
code.jmp(end, code.T_NEAR);
|
|
|
|
code.SwitchToNearCode();
|
|
|
|
} else {
|
|
|
|
code.minsd(src, code.MConst(xword, unsigned_ ? f64_max_u32 : f64_max_s32));
|
|
|
|
code.maxsd(src, code.MConst(xword, unsigned_ ? f64_min_u32 : f64_min_s32));
|
|
|
|
code.cvttsd2si(result, src); // 64 bit gpr
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
using fsize_list = mp::list<mp::vlift<size_t(32)>, mp::vlift<size_t(64)>>;
|
|
|
|
using unsigned_list = mp::list<mp::vlift<true>, mp::vlift<false>>;
|
|
|
|
using isize_list = mp::list<mp::vlift<size_t(32)>, mp::vlift<size_t(64)>>;
|
|
|
|
using rounding_list = mp::list<
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::ToNearest_TieEven>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::TowardsPlusInfinity>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::TowardsMinusInfinity>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::TowardsZero>,
|
|
|
|
std::integral_constant<FP::RoundingMode, FP::RoundingMode::ToNearest_TieAwayFromZero>
|
|
|
|
>;
|
|
|
|
|
|
|
|
using key_type = std::tuple<size_t, bool, size_t, FP::RoundingMode>;
|
2018-07-17 20:53:21 +02:00
|
|
|
using value_type = u64(*)(u64, u8, FP::FPSR&, FP::FPCR);
|
2018-06-30 11:49:47 +02:00
|
|
|
|
|
|
|
static const auto lut = mp::GenerateLookupTableFromList<key_type, value_type>(
|
|
|
|
[](auto args) {
|
|
|
|
return std::pair<key_type, value_type>{
|
|
|
|
mp::to_tuple<decltype(args)>,
|
|
|
|
static_cast<value_type>(
|
2018-07-17 20:53:21 +02:00
|
|
|
[](u64 input, u8 fbits, FP::FPSR& fpsr, FP::FPCR fpcr) {
|
2018-06-30 11:49:47 +02:00
|
|
|
constexpr auto t = mp::to_tuple<decltype(args)>;
|
|
|
|
constexpr size_t fsize = std::get<0>(t);
|
|
|
|
constexpr bool unsigned_ = std::get<1>(t);
|
|
|
|
constexpr size_t isize = std::get<2>(t);
|
|
|
|
constexpr FP::RoundingMode rounding_mode = std::get<3>(t);
|
|
|
|
using InputSize = mp::unsigned_integer_of_size<fsize>;
|
|
|
|
|
|
|
|
return FP::FPToFixed<InputSize>(isize, static_cast<InputSize>(input), fbits, unsigned_, fpcr, rounding_mode, fpsr);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mp::cartesian_product<fsize_list, unsigned_list, isize_list, rounding_list>{}
|
|
|
|
);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
ctx.reg_alloc.HostCall(inst, args[0], args[1]);
|
|
|
|
code.lea(code.ABI_PARAM3, code.ptr[code.r15 + code.GetJitStateInfo().offsetof_fpsr_exc]);
|
|
|
|
code.mov(code.ABI_PARAM4.cvt32(), ctx.FPCR());
|
|
|
|
code.CallFunction(lut.at(std::make_tuple(fsize, unsigned_, isize, rounding)));
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPDoubleToFixedS32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 64, false, 32);
|
2018-06-30 11:49:47 +02:00
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPDoubleToFixedS64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 64, false, 64);
|
2018-06-30 11:49:47 +02:00
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPDoubleToFixedU32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 64, true, 32);
|
2018-06-30 11:49:47 +02:00
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPDoubleToFixedU64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 64, true, 64);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPSingleToFixedS32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 32, false, 32);
|
2018-06-30 11:49:47 +02:00
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPSingleToFixedS64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 32, false, 64);
|
2018-06-30 11:49:47 +02:00
|
|
|
}
|
2018-02-04 14:07:19 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPSingleToFixedU32(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 32, true, 32);
|
2018-06-30 11:49:47 +02:00
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
2018-06-30 11:49:47 +02:00
|
|
|
void EmitX64::EmitFPSingleToFixedU64(EmitContext& ctx, IR::Inst* inst) {
|
2018-07-15 18:03:35 +02:00
|
|
|
EmitFPToFixed(code, ctx, inst, 32, true, 64);
|
2018-01-23 14:21:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPS32ToSingle(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Reg32 from = ctx.reg_alloc.UseGpr(args[0]).cvt32();
|
|
|
|
Xbyak::Xmm to = ctx.reg_alloc.ScratchXmm();
|
|
|
|
bool round_to_nearest = args[1].GetImmediateU1();
|
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
2018-02-03 15:28:57 +01:00
|
|
|
code.cvtsi2ss(to, from);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, to);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPU32ToSingle(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
2018-07-09 23:46:31 +02:00
|
|
|
|
|
|
|
const Xbyak::Xmm to = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const bool round_to_nearest = args[1].GetImmediateU1();
|
2018-01-23 14:21:10 +01:00
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
2018-07-09 23:46:31 +02:00
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX512F)) {
|
2018-07-10 00:32:36 +02:00
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseGpr(args[0]);
|
2018-07-09 23:46:31 +02:00
|
|
|
code.vcvtusi2ss(to, to, from.cvt32());
|
|
|
|
} else {
|
|
|
|
// We are using a 64-bit GPR register to ensure we don't end up treating the input as signed
|
2018-07-10 00:32:36 +02:00
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseScratchGpr(args[0]);
|
2018-07-09 23:46:31 +02:00
|
|
|
code.mov(from.cvt32(), from.cvt32()); // TODO: Verify if this is necessary
|
|
|
|
code.cvtsi2ss(to, from);
|
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, to);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPS32ToDouble(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
Xbyak::Reg32 from = ctx.reg_alloc.UseGpr(args[0]).cvt32();
|
|
|
|
Xbyak::Xmm to = ctx.reg_alloc.ScratchXmm();
|
|
|
|
bool round_to_nearest = args[1].GetImmediateU1();
|
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
2018-02-03 15:28:57 +01:00
|
|
|
code.cvtsi2sd(to, from);
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, to);
|
|
|
|
}
|
|
|
|
|
2018-07-09 23:14:00 +02:00
|
|
|
void EmitX64::EmitFPS64ToDouble(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseGpr(args[0]);
|
|
|
|
const Xbyak::Xmm result = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const bool round_to_nearest = args[1].GetImmediateU1();
|
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
|
|
|
code.cvtsi2sd(result, from);
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-07-10 01:32:30 +02:00
|
|
|
void EmitX64::EmitFPS64ToSingle(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseGpr(args[0]);
|
|
|
|
const Xbyak::Xmm result = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const bool round_to_nearest = args[1].GetImmediateU1();
|
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
|
|
|
code.cvtsi2ss(result, from);
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:16:39 +01:00
|
|
|
void EmitX64::EmitFPU32ToDouble(EmitContext& ctx, IR::Inst* inst) {
|
2018-01-23 14:21:10 +01:00
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
2018-07-09 23:46:31 +02:00
|
|
|
|
|
|
|
const Xbyak::Xmm to = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const bool round_to_nearest = args[1].GetImmediateU1();
|
2018-01-23 14:21:10 +01:00
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
2018-07-09 23:46:31 +02:00
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX512F)) {
|
2018-07-10 00:32:36 +02:00
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseGpr(args[0]);
|
2018-07-09 23:46:31 +02:00
|
|
|
code.vcvtusi2sd(to, to, from.cvt32());
|
|
|
|
} else {
|
|
|
|
// We are using a 64-bit GPR register to ensure we don't end up treating the input as signed
|
2018-07-10 00:32:36 +02:00
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseScratchGpr(args[0]);
|
2018-07-09 23:46:31 +02:00
|
|
|
code.mov(from.cvt32(), from.cvt32()); // TODO: Verify if this is necessary
|
|
|
|
code.cvtsi2sd(to, from);
|
|
|
|
}
|
2018-01-23 14:21:10 +01:00
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, to);
|
|
|
|
}
|
|
|
|
|
2018-07-09 23:14:00 +02:00
|
|
|
void EmitX64::EmitFPU64ToDouble(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseGpr(args[0]);
|
|
|
|
const Xbyak::Xmm result = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const bool round_to_nearest = args[1].GetImmediateU1();
|
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX512F)) {
|
|
|
|
code.vcvtusi2sd(result, result, from);
|
|
|
|
} else {
|
|
|
|
const Xbyak::Xmm tmp = ctx.reg_alloc.ScratchXmm();
|
|
|
|
|
|
|
|
code.movq(tmp, from);
|
|
|
|
code.punpckldq(tmp, code.MConst(xword, 0x4530000043300000, 0));
|
|
|
|
code.subpd(tmp, code.MConst(xword, 0x4330000000000000, 0x4530000000000000));
|
|
|
|
code.pshufd(result, tmp, 0b01001110);
|
|
|
|
code.addpd(result, tmp);
|
2018-07-14 08:08:44 +02:00
|
|
|
if (ctx.FPSCR_RMode() == FP::RoundingMode::TowardsMinusInfinity) {
|
|
|
|
code.pand(result, code.MConst(xword, f64_non_sign_mask));
|
|
|
|
}
|
2018-07-09 23:14:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
2018-07-10 01:32:30 +02:00
|
|
|
|
|
|
|
void EmitX64::EmitFPU64ToSingle(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
auto args = ctx.reg_alloc.GetArgumentInfo(inst);
|
|
|
|
|
|
|
|
const Xbyak::Xmm result = ctx.reg_alloc.ScratchXmm();
|
|
|
|
const bool round_to_nearest = args[1].GetImmediateU1();
|
|
|
|
ASSERT_MSG(!round_to_nearest, "round_to_nearest unimplemented");
|
|
|
|
|
|
|
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX512F)) {
|
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseGpr(args[0]);
|
|
|
|
code.vcvtusi2ss(result, result, from);
|
|
|
|
} else {
|
|
|
|
const Xbyak::Reg64 from = ctx.reg_alloc.UseScratchGpr(args[0]);
|
|
|
|
code.pxor(result, result);
|
|
|
|
|
|
|
|
Xbyak::Label negative;
|
|
|
|
Xbyak::Label end;
|
|
|
|
|
|
|
|
code.test(from, from);
|
|
|
|
code.js(negative);
|
|
|
|
|
|
|
|
code.cvtsi2ss(result, from);
|
|
|
|
code.jmp(end);
|
|
|
|
|
|
|
|
code.L(negative);
|
|
|
|
const Xbyak::Reg64 tmp = ctx.reg_alloc.ScratchGpr();
|
|
|
|
code.mov(tmp, from);
|
|
|
|
code.shr(tmp, 1);
|
|
|
|
code.and_(from.cvt32(), 1);
|
|
|
|
code.or_(from, tmp);
|
|
|
|
code.cvtsi2ss(result, from);
|
|
|
|
code.addss(result, result);
|
|
|
|
|
|
|
|
code.L(end);
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.reg_alloc.DefineValue(inst, result);
|
|
|
|
}
|
2018-01-26 14:51:48 +01:00
|
|
|
} // namespace Dynarmic::BackendX64
|