2020-04-20 16:12:19 +01:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2020 MerryMage
|
2020-04-23 15:25:11 +01:00
|
|
|
* SPDX-License-Identifier: 0BSD
|
2020-04-20 16:12:19 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/iterator_util.h"
|
|
|
|
#include "frontend/ir/basic_block.h"
|
|
|
|
#include "frontend/ir/opcodes.h"
|
|
|
|
#include "ir_opt/passes.h"
|
|
|
|
|
|
|
|
namespace Dynarmic::Optimization {
|
|
|
|
|
|
|
|
void IdentityRemovalPass(IR::Block& block) {
|
|
|
|
std::vector<IR::Inst*> to_invalidate;
|
|
|
|
|
|
|
|
auto iter = block.begin();
|
|
|
|
while (iter != block.end()) {
|
|
|
|
IR::Inst& inst = *iter;
|
|
|
|
|
|
|
|
const size_t num_args = inst.NumArgs();
|
|
|
|
for (size_t i = 0; i < num_args; i++) {
|
|
|
|
while (true) {
|
|
|
|
IR::Value arg = inst.GetArg(i);
|
|
|
|
if (!arg.IsIdentity())
|
|
|
|
break;
|
|
|
|
inst.SetArg(i, arg.GetInst()->GetArg(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 20:05:32 +01:00
|
|
|
if (inst.GetOpcode() == IR::Opcode::Identity || inst.GetOpcode() == IR::Opcode::Void) {
|
2020-04-20 16:12:19 +01:00
|
|
|
iter = block.Instructions().erase(inst);
|
|
|
|
to_invalidate.push_back(&inst);
|
|
|
|
} else {
|
|
|
|
++iter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (IR::Inst* inst : to_invalidate) {
|
|
|
|
inst->Invalidate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Dynarmic
|