Searched refs:block1 (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/
H A Dssa_transformation.cc290 * last element of the intersection of block1 and block2 dominators.
292 int MIRGraph::FindCommonParent(int block1, int block2) { argument
293 while (block1 != block2) {
294 while (block1 < block2) {
295 block1 = i_dom_list_[block1];
296 DCHECK_NE(block1, NOTVISITED);
298 while (block2 < block1) {
303 return block1;
H A Dmir_graph.h617 int FindCommonParent(int block1, int block2);

Completed in 56 milliseconds