Searched refs:remove_last_inst (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | graph.cpp | 233 void Graph::RemovePredecessors(BasicBlock *block, bool remove_last_inst) in RemovePredecessors() argument 236 if (remove_last_inst && !pred->IsTryBegin() && !pred->IsTryEnd()) { in RemovePredecessors() 278 void Graph::DisconnectBlock(BasicBlock *block, bool remove_last_inst, bool fix_dom_tree) in DisconnectBlock() argument 281 RemovePredecessors(block, remove_last_inst); in DisconnectBlock() 301 void Graph::DisconnectBlockRec(BasicBlock *block, bool remove_last_inst, bool fix_dom_tree) in DisconnectBlockRec() argument 317 DisconnectBlock(block, remove_last_inst, fix_dom_tree); in DisconnectBlockRec() 319 DisconnectBlockRec(succ, remove_last_inst, fix_dom_tree); in DisconnectBlockRec()
|
H A D | graph.h | 190 void DisconnectBlock(BasicBlock *block, bool remove_last_inst = true, bool fix_dom_tree = true); 191 void DisconnectBlockRec(BasicBlock *block, bool remove_last_inst = true, bool fix_dom_tree = true); 202 void RemovePredecessors(BasicBlock *block, bool remove_last_inst = true);
|
Completed in 4 milliseconds