Home
last modified time | relevance | path

Searched refs:succ_id (Results 1 – 3 of 3) sorted by relevance

/art/compiler/dex/
Dglobal_value_numbering.h197 static bool HasNullCheckLastInsn(const BasicBlock* pred_bb, BasicBlockId succ_id) { in HasNullCheckLastInsn() argument
198 return pred_bb->BranchesToSuccessorOnlyIfNotZero(succ_id); in HasNullCheckLastInsn()
Dmir_graph.h468 bool BranchesToSuccessorOnlyIfNotZero(BasicBlockId succ_id) const { in BranchesToSuccessorOnlyIfNotZero() argument
473 return ((last_opcode == Instruction::IF_EQZ && fall_through == succ_id) || in BranchesToSuccessorOnlyIfNotZero()
474 (last_opcode == Instruction::IF_NEZ && taken == succ_id)) && in BranchesToSuccessorOnlyIfNotZero()
Dmir_graph.cc1046 int succ_id = 0; in DumpCFG() local
1050 succ_id, in DumpCFG()
1053 (succ_id != last_succ_id) ? " | " : " "); in DumpCFG()
1054 ++succ_id; in DumpCFG()
1063 succ_id = 0; in DumpCFG()
1069 bb->id, succ_id++, block_name2); in DumpCFG()