Searched refs:copy_length (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | intrinsics_x86_64.cc | 1127 const Location& copy_length, in GenSystemArrayCopyAddresses() argument 1151 if (copy_length.IsConstant()) { in GenSystemArrayCopyAddresses() 1152 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyAddresses() 1155 __ leal(src_end, Address(src_base, copy_length.AsRegister<CpuRegister>(), scale_factor, 0)); in GenSystemArrayCopyAddresses()
|
D | intrinsics_arm64.cc | 2258 const Location& copy_length, in GenSystemArrayCopyAddresses() argument 2285 if (copy_length.IsConstant()) { in GenSystemArrayCopyAddresses() 2286 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyAddresses() 2289 __ Add(src_end, src_base, Operand(XRegisterFrom(copy_length), LSL, element_size_shift)); in GenSystemArrayCopyAddresses()
|
D | intrinsics_x86.cc | 2842 const Location& copy_length, in GenSystemArrayCopyEndAddress() argument 2852 if (copy_length.IsConstant()) { in GenSystemArrayCopyEndAddress() 2853 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyEndAddress() 2856 __ leal(end, Address(base, copy_length.AsRegister<Register>(), scale_factor, 0)); in GenSystemArrayCopyEndAddress()
|
D | intrinsics_arm_vixl.cc | 153 const Location& copy_length, in GenSystemArrayCopyEndAddress() argument 163 if (copy_length.IsConstant()) { in GenSystemArrayCopyEndAddress() 164 int32_t constant = Int32ConstantFrom(copy_length); in GenSystemArrayCopyEndAddress() 167 __ Add(end, base, Operand(RegisterFrom(copy_length), vixl32::LSL, element_size_shift)); in GenSystemArrayCopyEndAddress()
|