Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_x86.cc3928 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
3930 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86(instruction, index_loc, length_loc); in VisitBoundsCheck()
3932 if (length_loc.IsConstant()) { in VisitBoundsCheck()
3933 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
3953 Register length = length_loc.AsRegister<Register>(); in VisitBoundsCheck()
Dcode_generator_x86_64.cc3780 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
3782 new (GetGraph()->GetArena()) BoundsCheckSlowPathX86_64(instruction, index_loc, length_loc); in VisitBoundsCheck()
3784 if (length_loc.IsConstant()) { in VisitBoundsCheck()
3785 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
3805 CpuRegister length = length_loc.AsRegister<CpuRegister>(); in VisitBoundsCheck()