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.cc205 Location length_loc = locations->InAt(1); in EmitNativeCode() local
213 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode()
215 if (length_loc.Equals(locations->InAt(0))) { in EmitNativeCode()
217 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(2)); in EmitNativeCode()
219 __ movl(length_loc.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
221 __ shrl(length_loc.AsRegister<CpuRegister>(), Immediate(1)); in EmitNativeCode()
231 length_loc, in EmitNativeCode()
5641 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
5645 if (length_loc.IsConstant()) { in VisitBoundsCheck()
5646 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
[all …]
Dcode_generator_x86.cc159 Location length_loc = locations->InAt(1); in EmitNativeCode() local
167 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode()
169 if (length_loc.Equals(locations->InAt(0))) { in EmitNativeCode()
171 length_loc = Location::RegisterLocation(calling_convention.GetRegisterAt(2)); in EmitNativeCode()
173 __ movl(length_loc.AsRegister<Register>(), array_len); in EmitNativeCode()
175 __ shrl(length_loc.AsRegister<Register>(), Immediate(1)); in EmitNativeCode()
182 length_loc, in EmitNativeCode()
6306 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
6310 if (length_loc.IsConstant()) { in VisitBoundsCheck()
6311 int32_t length = CodeGenerator::GetInt32ValueOf(length_loc.GetConstant()); in VisitBoundsCheck()
[all …]
Dcode_generator_arm64.cc2842 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
2850 if (length_loc.IsConstant()) { in VisitBoundsCheck()
2851 int64_t length = Int64FromLocation(length_loc); in VisitBoundsCheck()
Dcode_generator_arm_vixl.cc6904 Location length_loc = locations->InAt(1); in VisitBoundsCheck() local
6906 if (length_loc.IsConstant()) { in VisitBoundsCheck()
6907 int32_t length = Int32ConstantFrom(length_loc); in VisitBoundsCheck()
6931 __ Cmp(RegisterFrom(length_loc), InputOperandAt(instruction, 0)); in VisitBoundsCheck()