Home | History | Annotate | Download | only in optimizing

Lines Matching defs:src_pos

927   HIntConstant* src_pos = invoke->InputAt(1)->AsIntConstant();
931 if ((src_pos != nullptr && src_pos->GetValue() < 0) ||
949 // arraycopy(Object src, int src_pos, Object dest, int dest_pos, int length).
1031 Location src_pos = locations->InAt(1);
1067 CheckPosition(assembler, src_pos, src, length, slow_path, src_base);
1086 if (src_pos.IsConstant()) {
1087 int32_t src_pos_const = src_pos.GetConstant()->AsIntConstant()->GetValue();
1090 __ leal(src_base, Address(src, src_pos.AsRegister<CpuRegister>(),
1124 const Location& src_pos,
1137 if (src_pos.IsConstant()) {
1138 int32_t constant = src_pos.GetConstant()->AsIntConstant()->GetValue();
1141 __ leal(src_base, Address(src, src_pos.AsRegister<CpuRegister>(), scale_factor, data_offset));
1174 Location src_pos = locations->InAt(1);
1195 if (src_pos.IsConstant()) {
1196 int32_t src_pos_constant = src_pos.GetConstant()->AsIntConstant()->GetValue();
1221 __ cmpl(src_pos.AsRegister<CpuRegister>(), Immediate(dest_pos_constant));
1224 __ cmpl(src_pos.AsRegister<CpuRegister>(), dest_pos.AsRegister<CpuRegister>());
1254 src_pos,
1414 GetAssembler(), type, src, src_pos, dest, dest_pos, length, temp1, temp2, temp3);