write phi elimination

This commit is contained in:
2024-10-19 02:47:51 +00:00
parent 0f016c8eb0
commit 2e94fba653
8 changed files with 101 additions and 16 deletions

View File

@ -0,0 +1,18 @@
#pragma once
#include "IR/IR_basic.h"
#include "cfg.h"
namespace opt {
class MoveInstruct : public ActionItem {
public:
std::string src_full;
std::string dest_full;
MoveInstruct() = default;
void RecursivePrint(std::ostream &os) const {
throw std::runtime_error("Move instruction is not an actual LLVM IR instruction");
}
};
} // namespace opt
std::shared_ptr<ModuleItem> PhiEliminate(std::shared_ptr<ModuleItem> src);