Home
last modified time | relevance | path

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

/art/compiler/dex/
Dmir_graph.cc2164 BasicBlock* result_bb = mir_graph->CreateNewBB(block_type); in Copy() local
2169 result_bb->fall_through = fall_through; in Copy()
2170 result_bb->taken = taken; in Copy()
2175 result_bb->successor_block_list_type = successor_block_list_type; in Copy()
2176 if (result_bb->successor_block_list_type != kNotUsed) { in Copy()
2177 result_bb->successor_blocks.reserve(successor_blocks.size()); in Copy()
2182 result_bb->successor_blocks.push_back(sbi_new); in Copy()
2187 result_bb->start_offset = start_offset; in Copy()
2195 result_bb->AppendMIR(copy); in Copy()
2198 return result_bb; in Copy()