summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/ir_opt/identity_removal_pass.cpp
blob: f9bb063fb19ce4e2c5b90bb18a17cd96f4b6c379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <vector>

#include "shader_recompiler/frontend/ir/basic_block.h"
#include "shader_recompiler/frontend/ir/microinstruction.h"
#include "shader_recompiler/ir_opt/passes.h"

namespace Shader::Optimization {

void IdentityRemovalPass(IR::Block& block) {
    std::vector<IR::Inst*> to_invalidate;

    for (auto inst = block.begin(); inst != block.end();) {
        const size_t num_args{inst->NumArgs()};
        for (size_t i = 0; i < num_args; ++i) {
            IR::Value arg;
            while ((arg = inst->Arg(i)).IsIdentity()) {
                inst->SetArg(i, arg.Inst()->Arg(0));
            }
        }
        if (inst->Opcode() == IR::Opcode::Identity || inst->Opcode() == IR::Opcode::Void) {
            to_invalidate.push_back(&*inst);
            inst = block.Instructions().erase(inst);
        } else {
            ++inst;
        }
    }

    for (IR::Inst* const inst : to_invalidate) {
        inst->Invalidate();
    }
}

} // namespace Shader::Optimization