Lines Matching refs:dest_pos
928 HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); in VisitSystemArrayCopyChar() local
932 (dest_pos != nullptr && dest_pos->GetValue() < 0)) { in VisitSystemArrayCopyChar()
1033 Location dest_pos = locations->InAt(3); in VisitSystemArrayCopyChar() local
1070 CheckPosition(assembler, dest_pos, dest, length, slow_path, src_base); in VisitSystemArrayCopyChar()
1093 if (dest_pos.IsConstant()) { in VisitSystemArrayCopyChar()
1094 int32_t dest_pos_const = dest_pos.GetConstant()->AsIntConstant()->GetValue(); in VisitSystemArrayCopyChar()
1097 __ leal(dest_base, Address(dest, dest_pos.AsRegister<CpuRegister>(), in VisitSystemArrayCopyChar()
1176 Location dest_pos = locations->InAt(3); in VisitSystemArrayCopy() local
1197 if (dest_pos.IsConstant()) { in VisitSystemArrayCopy()
1198 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); in VisitSystemArrayCopy()
1211 __ cmpl(dest_pos.AsRegister<CpuRegister>(), Immediate(src_pos_constant)); in VisitSystemArrayCopy()
1219 if (dest_pos.IsConstant()) { in VisitSystemArrayCopy()
1220 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue(); in VisitSystemArrayCopy()
1224 __ cmpl(src_pos.AsRegister<CpuRegister>(), dest_pos.AsRegister<CpuRegister>()); in VisitSystemArrayCopy()
1263 dest_pos, in VisitSystemArrayCopy()
1414 GetAssembler(), type, src, src_pos, dest, dest_pos, length, temp1, temp2, temp3); in VisitSystemArrayCopy()