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_arm_vixl.cc | 99 const Location& copy_length, in GenSystemArrayCopyEndAddress() argument 109 if (copy_length.IsConstant()) { in GenSystemArrayCopyEndAddress() 110 int32_t constant = Int32ConstantFrom(copy_length); in GenSystemArrayCopyEndAddress() 113 __ Add(end, base, Operand(RegisterFrom(copy_length), vixl32::LSL, element_size_shift)); in GenSystemArrayCopyEndAddress()
|
D | intrinsics_x86.cc | 2472 const Location& copy_length, in GenSystemArrayCopyEndAddress() argument 2482 if (copy_length.IsConstant()) { in GenSystemArrayCopyEndAddress() 2483 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyEndAddress() 2486 __ leal(end, Address(base, copy_length.AsRegister<Register>(), scale_factor, 0)); in GenSystemArrayCopyEndAddress()
|
D | intrinsics_arm64.cc | 2096 const Location& copy_length, in GenSystemArrayCopyAddresses() argument 2123 if (copy_length.IsConstant()) { in GenSystemArrayCopyAddresses() 2124 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue(); in GenSystemArrayCopyAddresses() 2127 __ Add(src_end, src_base, Operand(XRegisterFrom(copy_length), LSL, element_size_shift)); in GenSystemArrayCopyAddresses()
|