Searched refs:dest_pos (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Dintrinsics_arm.cc1295 HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); local
1301 if (dest_pos != nullptr && !assembler_->ShifterOperandCanAlwaysHold(dest_pos->GetValue())) {
1388 Location dest_pos = locations->InAt(3); local
1404 if (dest_pos.IsConstant()) {
1405 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue();
1416 || (src_pos_constant >= dest_pos.GetConstant()->AsIntConstant()->GetValue()));
1422 __ cmp(dest_pos.AsRegister<Register>(), ShifterOperand(src_pos_constant));
1430 if (dest_pos.IsConstant()) {
1431 int32_t dest_pos_constant = dest_pos
[all...]
H A Dintrinsics_arm64.cc1949 HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); local
1953 (dest_pos != nullptr && dest_pos->GetValue() < 0)) {
1971 if (src_pos != nullptr && dest_pos != nullptr && src_pos->GetValue() < dest_pos->GetValue()) {
1986 // arraycopy(Object src, int src_pos, Object dest, int dest_pos, int length).
2009 Location dest_pos = locations->InAt(3); local
2024 if (dest_pos.IsConstant()) {
2025 int32_t dest_pos_constant = dest_pos.GetConstant()->AsIntConstant()->GetValue();
2035 || (src_pos_constant >= dest_pos
[all...]
H A Dintrinsics_x86_64.cc941 HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); local
945 (dest_pos != nullptr && dest_pos->GetValue() < 0)) {
963 // arraycopy(Object src, int src_pos, Object dest, int dest_pos, int length).
1049 Location dest_pos = locations->InAt(3); local
1086 CheckPosition(assembler, dest_pos, dest, length, slow_path, src_base, dest_base);
1109 if (dest_pos.IsConstant()) {
1110 int32_t dest_pos_const = dest_pos.GetConstant()->AsIntConstant()->GetValue();
1113 __ leal(dest_base, Address(dest, dest_pos.AsRegister<CpuRegister>(),
1144 Location dest_pos local
[all...]
H A Dcode_generator.cc1252 HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); local
1256 (dest_pos != nullptr && dest_pos->GetValue() < 0)) {
1274 if (src_pos != nullptr && dest_pos != nullptr && src_pos->GetValue() < dest_pos->GetValue()) {
1289 // arraycopy(Object src, int src_pos, Object dest, int dest_pos, int length).
H A Dintrinsics_x86.cc1079 HIntConstant* dest_pos = invoke->InputAt(3)->AsIntConstant(); local
1084 + ((dest_pos != nullptr) ? 1 : 0)
1095 (dest_pos != nullptr && dest_pos->GetValue() < 0)) {

Completed in 120 milliseconds