Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dintrinsics_x86_64.cc771 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()
Dintrinsics_arm_vixl.cc99 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()
Dintrinsics_x86.cc2472 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()
Dintrinsics_arm64.cc2096 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()