Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier.cc2158 static bool IsArrayLengthOf(HInstruction* potential_length, HInstruction* potential_array) { in IsArrayLengthOf() argument
2159 if (potential_length->IsArrayLength()) { in IsArrayLengthOf()
2160 return potential_length->InputAt(0) == potential_array; in IsArrayLengthOf()
2164 return potential_array->AsNewArray()->GetLength() == potential_length; in IsArrayLengthOf()