Lines Matching refs:GetVRegLong
393 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE()
398 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_FROM16()
403 SetVRegLong(A(), GetVRegLong(B())); in MOVE_WIDE_16()
460 result.SetJ(GetVRegLong(A())); in RETURN_WIDE()
792 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG()
892 return HandleAPut<mirror::LongArray>(GetVRegLong(A())); in APUT_WIDE()
1107 SetVRegLong(A(), -GetVRegLong(B())); in NEG_LONG()
1112 SetVRegLong(A(), ~GetVRegLong(B())); in NOT_LONG()
1142 SetVReg(A(), GetVRegLong(B())); in LONG_TO_INT()
1147 SetVRegFloat(A(), GetVRegLong(B())); in LONG_TO_FLOAT()
1152 SetVRegDouble(A(), GetVRegLong(B())); in LONG_TO_DOUBLE()
1255 SetVRegLong(A(), SafeAdd(GetVRegLong(B()), GetVRegLong(C()))); in ADD_LONG()
1260 SetVRegLong(A(), SafeSub(GetVRegLong(B()), GetVRegLong(C()))); in SUB_LONG()
1265 SetVRegLong(A(), SafeMul(GetVRegLong(B()), GetVRegLong(C()))); in MUL_LONG()
1270 return DoLongDivide(shadow_frame_, A(), GetVRegLong(B()), GetVRegLong(C())); in DIV_LONG()
1274 return DoLongRemainder(shadow_frame_, A(), GetVRegLong(B()), GetVRegLong(C())); in REM_LONG()
1278 SetVRegLong(A(), GetVRegLong(B()) & GetVRegLong(C())); in AND_LONG()
1283 SetVRegLong(A(), GetVRegLong(B()) | GetVRegLong(C())); in OR_LONG()
1288 SetVRegLong(A(), GetVRegLong(B()) ^ GetVRegLong(C())); in XOR_LONG()
1293 SetVRegLong(A(), GetVRegLong(B()) << (GetVReg(C()) & 0x3f)); in SHL_LONG()
1298 SetVRegLong(A(), GetVRegLong(B()) >> (GetVReg(C()) & 0x3f)); in SHR_LONG()
1303 SetVRegLong(A(), static_cast<uint64_t>(GetVRegLong(B())) >> (GetVReg(C()) & 0x3f)); in USHR_LONG()
1411 SetVRegLong(A(), SafeAdd(GetVRegLong(A()), GetVRegLong(B()))); in ADD_LONG_2ADDR()
1416 SetVRegLong(A(), SafeSub(GetVRegLong(A()), GetVRegLong(B()))); in SUB_LONG_2ADDR()
1421 SetVRegLong(A(), SafeMul(GetVRegLong(A()), GetVRegLong(B()))); in MUL_LONG_2ADDR()
1426 return DoLongDivide(shadow_frame_, A(), GetVRegLong(A()), GetVRegLong(B())); in DIV_LONG_2ADDR()
1430 return DoLongRemainder(shadow_frame_, A(), GetVRegLong(A()), GetVRegLong(B())); in REM_LONG_2ADDR()
1434 SetVRegLong(A(), GetVRegLong(A()) & GetVRegLong(B())); in AND_LONG_2ADDR()
1439 SetVRegLong(A(), GetVRegLong(A()) | GetVRegLong(B())); in OR_LONG_2ADDR()
1444 SetVRegLong(A(), GetVRegLong(A()) ^ GetVRegLong(B())); in XOR_LONG_2ADDR()
1449 SetVRegLong(A(), GetVRegLong(A()) << (GetVReg(B()) & 0x3f)); in SHL_LONG_2ADDR()
1454 SetVRegLong(A(), GetVRegLong(A()) >> (GetVReg(B()) & 0x3f)); in SHR_LONG_2ADDR()
1459 SetVRegLong(A(), static_cast<uint64_t>(GetVRegLong(A())) >> (GetVReg(B()) & 0x3f)); in USHR_LONG_2ADDR()
1780 int64_t GetVRegLong(size_t i) const { return shadow_frame_.GetVRegLong(i); } in GetVRegLong() function