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

/art/test/482-checker-loop-back-edge-use/src/
H A DMain.java20 /// CHECK-START: void Main.loop1(boolean) liveness (after)
28 public static void loop1(boolean incoming) { method in class:Main
/art/compiler/optimizing/
H A Dsuperblock_cloner.cc73 // Returns a common predecessor of loop1 and loop2 in the loop tree or nullptr if it is the whole
75 static HLoopInformation* FindCommonLoop(HLoopInformation* loop1, HLoopInformation* loop2) { argument
76 if (loop1 != nullptr || loop2 != nullptr) {
80 if (loop1->IsIn(*loop2)) {
82 } else if (loop2->IsIn(*loop1)) {
83 return loop1;
85 HBasicBlock* block = CommonDominator::ForPair(loop1->GetHeader(), loop2->GetHeader());

Completed in 88 milliseconds