Skip
This commit is contained in:
@@ -8827,6 +8827,11 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
|
||||
{
|
||||
stats.single++;
|
||||
|
||||
if (true)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
add_pattern(inst_attr::reduced_loop, loop_pc - result.entry_point, 0, std::make_shared<reduced_loop_t>(pattern));
|
||||
|
||||
std::string regs = "{";
|
||||
|
||||
@@ -9343,7 +9343,7 @@ public:
|
||||
|
||||
const auto a = get_vr(op.ra);
|
||||
|
||||
if (auto [ok, x, y] = match_expr(a, match<u32[4]>() + match<u32[4]>()); ok)
|
||||
if (auto [ok, x, y] = match_expr(a, match<u32[4]>() + match<u32[4]>()); ok && false)
|
||||
{
|
||||
for (auto pair : std::initializer_list<std::pair<llvm_match_t<u32[4]>, llvm_match_t<u32[4]>>>{{x, y}, {y, x}})
|
||||
{
|
||||
@@ -9376,7 +9376,7 @@ public:
|
||||
{
|
||||
for (auto pair : std::initializer_list<std::pair<llvm_match_t<u32[4]>, llvm_match_t<u32[4]>>>{{x, y}, {y, x}})
|
||||
{
|
||||
if (auto [ok, data] = get_const_vector(pair.first.value, m_pos); ok)
|
||||
if (auto [ok, data] = get_const_vector(pair.first.value, m_pos); ok && false)
|
||||
{
|
||||
// "sign extend" offset addend
|
||||
const u64 addend = (data._u32[3] >= SPU_LS_SIZE) ? data._u32[3] | ~u64{SPU_LS_SIZE - 1} : data._u32[3];
|
||||
|
||||
Reference in New Issue
Block a user