Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dx86_memory_gen.cc36 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()
Dcode_generator_x86_64.cc211 Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); in EmitNativeCode() local
218 __ movl(length_loc.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
5553 Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); in VisitBoundsCheck() local
5558 __ movl(length_reg, array_len); in VisitBoundsCheck()
5567 __ cmpl(array_len, Immediate(value)); in VisitBoundsCheck()
5569 __ cmpl(array_len, index_loc.AsRegister<CpuRegister>()); in VisitBoundsCheck()
Dcode_generator_x86.cc165 Address array_len(array_loc.AsRegister<Register>(), len_offset); in EmitNativeCode() local
172 __ movl(length_loc.AsRegister<Register>(), array_len); in EmitNativeCode()
6241 Address array_len(array_loc.AsRegister<Register>(), len_offset); in VisitBoundsCheck() local
6246 __ movl(length_reg, array_len); in VisitBoundsCheck()
6255 __ cmpl(array_len, Immediate(value)); in VisitBoundsCheck()
6257 __ cmpl(array_len, index_loc.AsRegister<Register>()); in VisitBoundsCheck()
/art/runtime/mirror/
Dthrowable.cc89 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()