Searched refs:copy_length (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | intrinsics_x86_64.cc | 771 const Location& copy_length, in GenSystemArrayCopyAddresses() argument 795 if (copy_length.IsConstant()) { in GenSystemArrayCopyAddresses() 796 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyAddresses() 799 __ leal(src_end, Address(src_base, copy_length.AsRegister<CpuRegister>(), scale_factor, 0)); in GenSystemArrayCopyAddresses()
|
D | intrinsics_x86.cc | 2575 const Location& copy_length, in GenSystemArrayCopyEndAddress() argument 2585 if (copy_length.IsConstant()) { in GenSystemArrayCopyEndAddress() 2586 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyEndAddress() 2589 __ leal(end, Address(base, copy_length.AsRegister<Register>(), scale_factor, 0)); in GenSystemArrayCopyEndAddress()
|
D | intrinsics_arm64.cc | 2469 const Location& copy_length, in GenSystemArrayCopyAddresses() argument 2496 if (copy_length.IsConstant()) { in GenSystemArrayCopyAddresses() 2497 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyAddresses() 2500 __ Add(src_end, src_base, Operand(XRegisterFrom(copy_length), LSL, element_size_shift)); in GenSystemArrayCopyAddresses()
|
D | intrinsics_arm_vixl.cc | 100 const Location& copy_length, in GenSystemArrayCopyEndAddress() argument 110 if (copy_length.IsConstant()) { in GenSystemArrayCopyEndAddress() 111 int32_t constant = Int32ConstantFrom(copy_length); in GenSystemArrayCopyEndAddress() 114 __ Add(end, base, Operand(RegisterFrom(copy_length), vixl32::LSL, element_size_shift)); in GenSystemArrayCopyEndAddress()
|