Home
last modified time | relevance | path

Searched refs:branch_bb (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/
Dmir_graph.h1027 bool IsBackEdge(BasicBlock* branch_bb, BasicBlockId target_bb_id) { in IsBackEdge() argument
1030 DCHECK_LT(branch_bb->id, topological_order_indexes_.size()); in IsBackEdge()
1031 return topological_order_indexes_[target_bb_id] <= topological_order_indexes_[branch_bb->id]; in IsBackEdge()
1034 bool IsSuspendCheckEdge(BasicBlock* branch_bb, BasicBlockId target_bb_id) { in IsSuspendCheckEdge() argument
1035 if (!IsBackEdge(branch_bb, target_bb_id)) { in IsSuspendCheckEdge()
1043 return (suspend_checks_in_loops_[branch_bb->id] & (1u << (target_depth - 1u))) == 0; in IsSuspendCheckEdge()
Dmir_optimization_test.cc454 bool IsBackEdge(BasicBlockId branch_bb, BasicBlockId target_bb) { in IsBackEdge() argument
455 BasicBlock* branch = cu_.mir_graph->GetBasicBlock(branch_bb); in IsBackEdge()
459 bool IsSuspendCheckEdge(BasicBlockId branch_bb, BasicBlockId target_bb) { in IsSuspendCheckEdge() argument
460 BasicBlock* branch = cu_.mir_graph->GetBasicBlock(branch_bb); in IsSuspendCheckEdge()