Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_x86_64.cc210 Location length_loc = locations->InAt(1); in EmitNativeCode() local
216 if (!length_loc.IsValid()) { in EmitNativeCode()
249 length_loc, in EmitNativeCode()
5992 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
5996 if (length_loc.IsConstant()) { in VisitBoundsCheck()
5997 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
6044 codegen_->GenerateIntCompare(length_loc, index_loc); in VisitBoundsCheck()
Dcode_generator_x86.cc159 Location length_loc = locations->InAt(1); in EmitNativeCode() local
165 if (!length_loc.IsValid()) { in EmitNativeCode()
204 length_loc, in EmitNativeCode()
6693 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
6697 if (length_loc.IsConstant()) { in VisitBoundsCheck()
6698 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
6745 codegen_->GenerateIntCompare(length_loc, index_loc); in VisitBoundsCheck()
Dcode_generator_arm64.cc3045 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
3053 if (length_loc.IsConstant()) { in VisitBoundsCheck()
3054 int64_t length = Int64FromLocation(length_loc); in VisitBoundsCheck()
Dcode_generator_arm_vixl.cc7170 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
7172 if (length_loc.IsConstant()) { in VisitBoundsCheck()
7173 int32_t length = Int32ConstantFrom(length_loc); in VisitBoundsCheck()
7197 __ Cmp(RegisterFrom(length_loc), InputOperandAt(instruction, 0)); in VisitBoundsCheck()