2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-01-09 06:30:07 +00:00
|
|
|
|
|
|
|
#include "shader_recompiler/frontend/ir/basic_block.h"
|
2021-04-21 03:35:47 +00:00
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
2021-01-09 06:30:07 +00:00
|
|
|
#include "shader_recompiler/ir_opt/passes.h"
|
|
|
|
|
|
|
|
namespace Shader::Optimization {
|
2022-10-25 04:57:25 +00:00
|
|
|
|
|
|
|
void DeadCodeEliminationPass(IR::Program& program) {
|
2021-01-09 06:30:07 +00:00
|
|
|
// We iterate over the instructions in reverse order.
|
|
|
|
// This is because removing an instruction reduces the number of uses for earlier instructions.
|
2022-10-25 04:57:25 +00:00
|
|
|
for (IR::Block* const block : program.post_order_blocks) {
|
|
|
|
auto it{block->end()};
|
|
|
|
while (it != block->begin()) {
|
|
|
|
--it;
|
|
|
|
if (!it->HasUses() && !it->MayHaveSideEffects()) {
|
|
|
|
it->Invalidate();
|
|
|
|
it = block->Instructions().erase(it);
|
2022-03-22 05:22:21 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-09 06:30:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader::Optimization
|