Lines Matching refs:GetVRegLong

409     SetVRegLong(A(), GetVRegLong(B()));  in MOVE_WIDE()
414 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_FROM16()
419 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_16()
481 result.SetJ(GetVRegLong(A())); in RETURN_WIDE()
867 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG()
967 return HandleAPut<mirror::LongArray>(GetVRegLong(A())); in APUT_WIDE()
1246 SetVRegLong(A(), -GetVRegLong(B())); in NEG_LONG()
1251 SetVRegLong(A(), ~GetVRegLong(B())); in NOT_LONG()
1281 SetVReg(A(), GetVRegLong(B())); in LONG_TO_INT()
1286 SetVRegFloat(A(), GetVRegLong(B())); in LONG_TO_FLOAT()
1291 SetVRegDouble(A(), GetVRegLong(B())); in LONG_TO_DOUBLE()
1402 SetVRegLong(A(), SafeAdd(GetVRegLong(B()), GetVRegLong(C()))); in ADD_LONG()
1407 SetVRegLong(A(), SafeSub(GetVRegLong(B()), GetVRegLong(C()))); in SUB_LONG()
1412 SetVRegLong(A(), SafeMul(GetVRegLong(B()), GetVRegLong(C()))); in MUL_LONG()
1417 return DoLongDivide(shadow_frame, A(), GetVRegLong(B()), GetVRegLong(C())); in DIV_LONG()
1421 return DoLongRemainder(shadow_frame, A(), GetVRegLong(B()), GetVRegLong(C())); in REM_LONG()
1425 SetVRegLong(A(), GetVRegLong(B()) & GetVRegLong(C())); in AND_LONG()
1430 SetVRegLong(A(), GetVRegLong(B()) | GetVRegLong(C())); in OR_LONG()
1435 SetVRegLong(A(), GetVRegLong(B()) ^ GetVRegLong(C())); in XOR_LONG()
1440 SetVRegLong(A(), GetVRegLong(B()) << (GetVReg(C()) & 0x3f)); in SHL_LONG()
1445 SetVRegLong(A(), GetVRegLong(B()) >> (GetVReg(C()) & 0x3f)); in SHR_LONG()
1450 SetVRegLong(A(), static_cast<uint64_t>(GetVRegLong(B())) >> (GetVReg(C()) & 0x3f)); in USHR_LONG()
1570 SetVRegLong(vregA, SafeAdd(GetVRegLong(vregA), GetVRegLong(B()))); in ADD_LONG_2ADDR()
1576 SetVRegLong(vregA, SafeSub(GetVRegLong(vregA), GetVRegLong(B()))); in SUB_LONG_2ADDR()
1582 SetVRegLong(vregA, SafeMul(GetVRegLong(vregA), GetVRegLong(B()))); in MUL_LONG_2ADDR()
1588 return DoLongDivide(shadow_frame, vregA, GetVRegLong(vregA), GetVRegLong(B())); in DIV_LONG_2ADDR()
1593 return DoLongRemainder(shadow_frame, vregA, GetVRegLong(vregA), GetVRegLong(B())); in REM_LONG_2ADDR()
1598 SetVRegLong(vregA, GetVRegLong(vregA) & GetVRegLong(B())); in AND_LONG_2ADDR()
1604 SetVRegLong(vregA, GetVRegLong(vregA) | GetVRegLong(B())); in OR_LONG_2ADDR()
1610 SetVRegLong(vregA, GetVRegLong(vregA) ^ GetVRegLong(B())); in XOR_LONG_2ADDR()
1616 SetVRegLong(vregA, GetVRegLong(vregA) << (GetVReg(B()) & 0x3f)); in SHL_LONG_2ADDR()
1622 SetVRegLong(vregA, GetVRegLong(vregA) >> (GetVReg(B()) & 0x3f)); in SHR_LONG_2ADDR()
1628 SetVRegLong(vregA, static_cast<uint64_t>(GetVRegLong(vregA)) >> (GetVReg(B()) & 0x3f)); in USHR_LONG_2ADDR()
1877 int64_t GetVRegLong(size_t i) const { return shadow_frame.GetVRegLong(i); } in GetVRegLong() function