#include "source/opt/workaround1209.h"
#include <list>
#include <memory>
#include <stack>
#include <utility>
namespace spvtools {
namespace opt {
Pass::Status Workaround1209::Process() {
bool modified = false;
modified = RemoveOpUnreachableInLoops();
return (modified ? Status::SuccessWithChange : Status::SuccessWithoutChange);
}
bool Workaround1209::RemoveOpUnreachableInLoops() {
bool modified = false;
for (auto& func : *get_module()) {
std::list<BasicBlock*> structured_order;
cfg()->ComputeStructuredOrder(&func, &*func.begin(), &structured_order);
std::stack<uint32_t> loop_merges;
for (BasicBlock* bb : structured_order) {
if (!loop_merges.empty() && bb->id() == loop_merges.top()) {
loop_merges.pop();
}
if (bb->tail()->opcode() == spv::Op::OpUnreachable) {
if (!loop_merges.empty()) {
context()->KillInst(&*bb->tail());
std::unique_ptr<Instruction> new_branch(
new Instruction(context(), spv::Op::OpBranch, 0, 0,
{{spv_operand_type_t::SPV_OPERAND_TYPE_ID,
{loop_merges.top()}}}));
context()->AnalyzeDefUse(&*new_branch);
bb->AddInstruction(std::move(new_branch));
modified = true;
}
} else {
if (bb->GetLoopMergeInst()) {
loop_merges.push(bb->MergeBlockIdIfAny());
}
}
}
}
return modified;
}
}
}