basically write mem2reg

This commit is contained in:
2024-10-18 10:14:04 +00:00
parent c7470f2d45
commit c4ca99d7b1
4 changed files with 233 additions and 101 deletions

View File

@ -430,7 +430,7 @@ void IRBuilder::ActuralVisit(NewArrayExpr_ASTNode *node) {
}
auto dim_info = std::make_shared<AllocaAction>();
std::string dim_info_var = "%.var.local.tmp." + std::to_string(tmp_var_counter++);
std::string dim_info_var = "%.var.tmp." + std::to_string(tmp_var_counter++);
cur_alloca_block->actions.push_back(dim_info);
dim_info->num = dims_with_size;
dim_info->name_full = dim_info_var;

View File

@ -86,14 +86,17 @@ bool CFGNodeCollectionIsSame(const CFGNodeCollection &a, const CFGNodeCollection
CFGType BuildCFGForFunction(const std::shared_ptr<FunctionDefItem> &func) {
CFGType res;
auto init_block=func->init_block;
if (!func->init_block) {
throw std::runtime_error("Function does not have an init block");
// throw std::runtime_error("Function does not have an init block");
if(func->basic_blocks.size()==0) throw std::runtime_error("Function does not have any block");
init_block = func->basic_blocks[0];
}
res.label_to_block[func->init_block->label_full] = func->init_block.get();
res.label_to_block[init_block->label_full] = init_block.get();
res.nodes.push_back(std::make_shared<CFGNodeType>());
res.entry = res.nodes.back().get();
res.entry->corresponding_block = func->init_block.get();
res.block_to_node[func->init_block.get()] = res.entry;
res.entry->corresponding_block = init_block.get();
res.block_to_node[init_block.get()] = res.entry;
for (auto block_ptr : func->basic_blocks) {
res.label_to_block[block_ptr->label_full] = block_ptr.get();
res.nodes.push_back(std::make_shared<CFGNodeType>());

View File

@ -1,8 +1,10 @@
#include "mem2reg.h"
#include <memory>
#include <queue>
#include "IR/IR_basic.h"
#include "cfg.h"
void ConductMem2RegForFunction(const std::shared_ptr<FunctionDefItem> &func, const CFGType &cfg) {
void BuildDomForFunction(const std::shared_ptr<FunctionDefItem> &func, const CFGType &cfg) {
bool all_dom_unchanged;
CFGNodeCollection all_nodes;
for (auto &node : cfg.nodes) {
@ -43,10 +45,10 @@ void ConductMem2RegForFunction(const std::shared_ptr<FunctionDefItem> &func, con
cur->dom = new_dom;
}
}
} while (all_dom_unchanged);
} while (!all_dom_unchanged);
for (auto node : cfg.nodes) {
if (node.get() == cfg.entry) continue;
for (auto potential_predecessor : node->predecessors) {
for (auto potential_predecessor : node->dom) {
if (potential_predecessor->dom.size() + 1 == node->dom.size()) {
node->idom = potential_predecessor;
node->idom->successors_in_dom_tree.push_back(node.get());
@ -66,11 +68,213 @@ void ConductMem2RegForFunction(const std::shared_ptr<FunctionDefItem> &func, con
frontier_node->dom_frontier.push_back(node.get());
}
}
// debug
for (auto &node : cfg.nodes) {
std::cerr << node->corresponding_block->label_full << ":\n";
std::cerr << "\tdom:";
for (auto &dom_node : node->dom) {
std::cerr << ' ' << dom_node->corresponding_block->label_full;
}
if (node->idom) std::cerr << "\n\tidom: " << node->idom->corresponding_block->label_full;
std::cerr << "\n\tdom_frontier:";
for (auto &frontier_node : node->dom_frontier) {
std::cerr << ' ' << frontier_node->corresponding_block->label_full;
}
std::cerr << "\n\tcfg pred:";
for (auto &pred : node->predecessors) {
std::cerr << ' ' << pred->corresponding_block->label_full;
}
std::cerr << "\n\tsuccessors_in_dom_tree:";
for (auto &succ : node->successors_in_dom_tree) {
std::cerr << ' ' << succ->corresponding_block->label_full;
}
std::cerr << std::endl;
}
}
size_t InNodeReplace(CFGNodeType *cur_node, std::string origin_var_name, size_t &cur_version,
std::stack<std::string> &name_stk) {
size_t versions_pushed = 0;
BlockItem *cur_block = cur_node->corresponding_block;
std::vector<std::shared_ptr<ActionItem>> new_actions;
std::unordered_set<std::string> is_an_alias_generated_by_load;
if (cur_block->phi_map.find(origin_var_name) != cur_block->phi_map.end()) {
name_stk.push(cur_block->phi_map[origin_var_name]->result_full);
versions_pushed++;
}
for (auto act : cur_block->actions) {
if (std::dynamic_pointer_cast<JMPActionItem>(act))
throw std::runtime_error("JMPActionItem should not appear in actions");
if (auto alloca_act = std::dynamic_pointer_cast<AllocaAction>(act)) {
if (alloca_act->name_full == origin_var_name) {
// do nothing, just erase it
} else {
new_actions.push_back(alloca_act);
}
} else if (auto bin_act = std::dynamic_pointer_cast<BinaryOperationAction>(act)) {
if (is_an_alias_generated_by_load.find(bin_act->operand1_full) != is_an_alias_generated_by_load.end()) {
bin_act->operand1_full = name_stk.top();
}
if (is_an_alias_generated_by_load.find(bin_act->operand2_full) != is_an_alias_generated_by_load.end()) {
bin_act->operand2_full = name_stk.top();
}
new_actions.push_back(bin_act);
} else if (auto load_act = std::dynamic_pointer_cast<LoadAction>(act)) {
if (load_act->ptr_full == origin_var_name) {
// remove it
is_an_alias_generated_by_load.insert(load_act->result_full);
} else {
new_actions.push_back(load_act);
}
} else if (auto store_act = std::dynamic_pointer_cast<StoreAction>(act)) {
if (is_an_alias_generated_by_load.find(store_act->value_full) != is_an_alias_generated_by_load.end()) {
store_act->value_full = name_stk.top();
}
if (store_act->ptr_full == origin_var_name) {
// remove it
name_stk.push(store_act->value_full);
versions_pushed++;
} else {
new_actions.push_back(store_act);
}
} else if (auto get_act = std::dynamic_pointer_cast<GetElementPtrAction>(act)) {
new_actions.push_back(get_act);
if (is_an_alias_generated_by_load.find(get_act->ptr_full) != is_an_alias_generated_by_load.end()) {
get_act->ptr_full = name_stk.top();
}
for (auto &idx : get_act->indices) {
if (is_an_alias_generated_by_load.find(idx) != is_an_alias_generated_by_load.end()) {
idx = name_stk.top();
}
}
} else if (auto icmp_act = std::dynamic_pointer_cast<ICMPAction>(act)) {
if (is_an_alias_generated_by_load.find(icmp_act->operand1_full) != is_an_alias_generated_by_load.end()) {
icmp_act->operand1_full = name_stk.top();
}
if (is_an_alias_generated_by_load.find(icmp_act->operand2_full) != is_an_alias_generated_by_load.end()) {
icmp_act->operand2_full = name_stk.top();
}
new_actions.push_back(icmp_act);
} else if (auto phi_act = std::dynamic_pointer_cast<PhiItem>(act)) {
new_actions.push_back(phi_act);
for (auto &val : phi_act->values) {
if (is_an_alias_generated_by_load.find(val.first) != is_an_alias_generated_by_load.end()) {
val.first = name_stk.top();
}
}
} else if (auto call_act = std::dynamic_pointer_cast<CallItem>(act)) {
for (size_t i = 0; i < call_act->args_val_full.size(); i++) {
if (is_an_alias_generated_by_load.find(call_act->args_val_full[i]) != is_an_alias_generated_by_load.end()) {
call_act->args_val_full[i] = name_stk.top();
}
}
new_actions.push_back(call_act);
} else if (auto select_act = std::dynamic_pointer_cast<SelectItem>(act)) {
if (is_an_alias_generated_by_load.find(select_act->cond_full) != is_an_alias_generated_by_load.end()) {
select_act->cond_full = name_stk.top();
}
if (is_an_alias_generated_by_load.find(select_act->true_val_full) != is_an_alias_generated_by_load.end()) {
select_act->true_val_full = name_stk.top();
}
if (is_an_alias_generated_by_load.find(select_act->false_val_full) != is_an_alias_generated_by_load.end()) {
select_act->false_val_full = name_stk.top();
}
new_actions.push_back(select_act);
} else {
throw std::runtime_error("Unknown action type");
}
}
if (auto br_act = std::dynamic_pointer_cast<BRAction>(cur_block->exit_action)) {
if (is_an_alias_generated_by_load.find(br_act->cond) != is_an_alias_generated_by_load.end()) {
br_act->cond = name_stk.top();
}
} else if (auto ret_act = std::dynamic_pointer_cast<RETAction>(cur_block->exit_action)) {
if (is_an_alias_generated_by_load.find(ret_act->value) != is_an_alias_generated_by_load.end()) {
ret_act->value = name_stk.top();
}
}
cur_block->actions = new_actions;
return versions_pushed;
}
void DFSReplace(CFGNodeType *cur_node, std::string origin_var_name, size_t &cur_version,
std::stack<std::string> &name_stk) {
// std::cerr << "DFSReplace: " << cur_node->corresponding_block->label_full << std::endl;
size_t versions_pushed = 0;
// step 1: process current node
versions_pushed = InNodeReplace(cur_node, origin_var_name, cur_version, name_stk);
// step 2: process the phi commands in the successors in cfg
for (auto succ : cur_node->successors) {
if (succ->corresponding_block->phi_map.find(origin_var_name) != succ->corresponding_block->phi_map.end()) {
auto phi = succ->corresponding_block->phi_map[origin_var_name];
phi->values.push_back(std::make_pair(name_stk.top(), cur_node->corresponding_block->label_full));
}
}
// step 3: process the successors in dom tree
for (auto succ : cur_node->successors_in_dom_tree) {
DFSReplace(succ, origin_var_name, cur_version, name_stk);
}
// step 4: restore the stack
for (size_t i = 0; i < versions_pushed; i++) {
name_stk.pop();
}
}
void ConductMem2RegForFunction(const std::shared_ptr<FunctionDefItem> &func, const CFGType &cfg) {
BuildDomForFunction(func, cfg);
std::vector<std::string> all_local_vars;
std::unordered_map<std::string, size_t> var_to_version;
std::unordered_map<std::string, LLVMType> var_to_type;
for (auto act : cfg.entry->corresponding_block->actions) {
if (auto alloca_act = std::dynamic_pointer_cast<AllocaAction>(act)) {
if (alloca_act->num == 1 && alloca_act->name_full.substr(0, 12) == "%.var.local.") {
all_local_vars.push_back(alloca_act->name_full);
var_to_version[alloca_act->name_full] = 0;
var_to_type[alloca_act->name_full] = alloca_act->type;
}
}
}
std::unordered_map<std::string, std::vector<CFGNodeType *>> var_to_def_sites;
for (auto node : cfg.nodes) {
for (auto act : node->corresponding_block->actions) {
if (auto store_act = std::dynamic_pointer_cast<StoreAction>(act)) {
if (var_to_version.find(store_act->ptr_full) != var_to_version.end()) {
var_to_def_sites[store_act->ptr_full].push_back(node.get());
break;
}
}
}
}
for (const auto &var : all_local_vars) {
size_t &cur_version = var_to_version[var];
std::queue<CFGNodeType *> Q;
for (auto def_site : var_to_def_sites[var]) {
Q.push(def_site);
}
while (Q.size() > 0) {
CFGNodeType *cur_node = Q.front();
Q.pop();
for (auto frontier : cur_node->dom_frontier) {
if (frontier->corresponding_block->phi_map.find(var) != frontier->corresponding_block->phi_map.end()) continue;
auto new_phi = std::make_shared<PhiItem>();
frontier->corresponding_block->phi_map[var] = new_phi;
new_phi->result_full = var + ".v" + std::to_string(++cur_version);
new_phi->ty = var_to_type[var];
Q.push(frontier);
}
}
}
for (const auto &var : all_local_vars) {
size_t &cur_version = var_to_version[var];
std::stack<std::string> name_stk;
name_stk.push("0");
// std::cerr << "processing " << var << std::endl;
DFSReplace(cfg.entry, var, cur_version, name_stk);
}
}
std::shared_ptr<ModuleItem> Mem2Reg(std::shared_ptr<ModuleItem> src) {
auto res = std::make_shared<ModuleItem>(*src);
// auto res = std::make_shared<ModuleItem>(*src);
auto res = src;
for (auto &func : res->function_defs) {
func = std::make_shared<FunctionDefItem>(*func);
// func = std::make_shared<FunctionDefItem>(*func);
auto cfg = BuildCFGForFunction(func);
ConductMem2RegForFunction(func, cfg);
}