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.cc196 Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); in EmitNativeCode() local
203 __ movl(length_loc.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
5116 Address array_len(array_loc.AsRegister<CpuRegister>(), len_offset); in VisitBoundsCheck() local
5121 __ movl(length_reg, array_len); in VisitBoundsCheck()
5130 __ cmpl(array_len, Immediate(value)); in VisitBoundsCheck()
5132 __ cmpl(array_len, index_loc.AsRegister<CpuRegister>()); in VisitBoundsCheck()
Dcode_generator_x86.cc145 Address array_len(array_loc.AsRegister<Register>(), len_offset); in EmitNativeCode() local
152 __ movl(length_loc.AsRegister<Register>(), array_len); in EmitNativeCode()
5683 Address array_len(array_loc.AsRegister<Register>(), len_offset); in VisitBoundsCheck() local
5688 __ movl(length_reg, array_len); in VisitBoundsCheck()
5697 __ cmpl(array_len, Immediate(value)); in VisitBoundsCheck()
5699 __ cmpl(array_len, index_loc.AsRegister<Register>()); in VisitBoundsCheck()
/art/runtime/mirror/
Dthrowable.cc83 const int32_t array_len = trace->GetLength(); in GetStackDepth() local
84 DCHECK_GT(array_len, 0); in GetStackDepth()
86 return array_len - 1; in GetStackDepth()
107 const int32_t array_len = method_trace->GetLength(); in Dump() local
108 CHECK_EQ(array_len % 2, 0); in Dump()
109 const auto depth = array_len / 2; in Dump()