From 51e6d0a336d9cf43020b4d2801661175a731983e Mon Sep 17 00:00:00 2001 From: Malcolm Jestadt Date: Tue, 26 Jul 2022 15:14:13 -0400 Subject: [PATCH] SPU LLVM: Add integer compare optimization for FCMGT --- rpcs3/Emu/Cell/SPURecompiler.cpp | 34 +++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPURecompiler.cpp b/rpcs3/Emu/Cell/SPURecompiler.cpp index 92712a9237..d84b48bc07 100644 --- a/rpcs3/Emu/Cell/SPURecompiler.cpp +++ b/rpcs3/Emu/Cell/SPURecompiler.cpp @@ -8641,12 +8641,44 @@ public: const auto a = value(ci->getOperand(0)); const auto b = value(ci->getOperand(1)); + const value_t ab[2]{a, b}; + + std::bitset<2> safe_int_compare(0); + + for (u32 i = 0; i < 2; i++) + { + if (auto [ok, data] = get_const_vector(ab[i].value, m_pos, __LINE__ + i); ok) + { + safe_int_compare.set(i); + + for (u32 j = 0; j < 4; j++) + { + const u32 value = data._u32[j]; + const u8 exponent = static_cast(value >> 23); + + if ((value & 0x7fffffffu) >= 0x7f7fffffu || !exponent) + { + // See above + safe_int_compare.reset(i); + } + } + } + } + const auto ma = eval(fabs(a)); const auto mb = eval(fabs(b)); + const auto mai = eval(bitcast(ma)); + const auto mbi = eval(bitcast(mb)); + + if (safe_int_compare.any()) + { + return eval(sext(mai > mbi)); + } + if (g_cfg.core.spu_approx_xfloat) { - return eval(sext(fcmp_uno(ma > mb) & (bitcast(ma) > bitcast(mb)))); + return eval(sext(fcmp_uno(ma > mb) & (mai > mbi))); } else {