Searched refs:array_len (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | x86_memory_gen.cc | 36 HArrayLength* array_len = check->InputAt(1)->AsArrayLength(); in VisitBoundsCheck() local 39 if (array_len == nullptr) { in VisitBoundsCheck() 43 HInstruction* array = array_len->InputAt(0); in VisitBoundsCheck() 55 if (array_len->GetNextDisregardingMoves() != check) { in VisitBoundsCheck() 62 if (array_len->HasOnlyOneNonEnvironmentUse()) { in VisitBoundsCheck() 63 array_len->MarkEmittedAtUseSite(); in VisitBoundsCheck() 65 array_len->MoveBefore(check); in VisitBoundsCheck()
|
D | code_generator_x86_64.cc | 209 Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); in EmitNativeCode() local 216 __ movl(length_loc.AsRegister<CpuRegister>(), array_len); in EmitNativeCode() 5448 Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); in VisitBoundsCheck() local 5453 __ movl(length_reg, array_len); in VisitBoundsCheck() 5462 __ cmpl(array_len, Immediate(value)); in VisitBoundsCheck() 5464 __ cmpl(array_len, index_loc.AsRegister<CpuRegister>()); in VisitBoundsCheck()
|
D | code_generator_x86.cc | 163 Address array_len(array_loc.AsRegister<Register>(), len_offset); in EmitNativeCode() local 170 __ movl(length_loc.AsRegister<Register>(), array_len); in EmitNativeCode() 6103 Address array_len(array_loc.AsRegister<Register>(), len_offset); in VisitBoundsCheck() local 6108 __ movl(length_reg, array_len); in VisitBoundsCheck() 6117 __ cmpl(array_len, Immediate(value)); in VisitBoundsCheck() 6119 __ cmpl(array_len, index_loc.AsRegister<Register>()); in VisitBoundsCheck()
|
/art/runtime/mirror/ |
D | throwable.cc | 89 const int32_t array_len = trace->GetLength(); in GetStackDepth() local 90 DCHECK_GT(array_len, 0); in GetStackDepth() 92 return array_len - 1; in GetStackDepth() 113 const int32_t array_len = method_trace->GetLength(); in Dump() local 114 CHECK_EQ(array_len % 2, 0); in Dump() 115 const auto depth = array_len / 2; in Dump()
|