Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dbounds_check_elimination.cc141 static bool Equal(HInstruction* instruction1, HInstruction* instruction2) { in Equal() argument
142 if (instruction1 == instruction2) { in Equal()
146 if (instruction1 == nullptr || instruction2 == nullptr) { in Equal()
153 instruction1 = FromArrayLengthToArray(instruction1); in Equal()
155 return instruction1 == instruction2; in Equal()
Dnodes.cc685 bool HInstructionList::FoundBefore(const HInstruction* instruction1, in FoundBefore() argument
687 DCHECK_EQ(instruction1->GetBlock(), instruction2->GetBlock()); in FoundBefore()
689 if (it.Current() == instruction1) { in FoundBefore()
Dnodes.h89 bool FoundBefore(const HInstruction* instruction1,