Lines Matching refs:GetVReg

495     int32_t index = GetVReg(C());  in HandleAGet()
511 int32_t index = GetVReg(C()); in HandleAPut()
552 SetVReg(A(), GetVReg(B())); in MOVE()
557 SetVReg(A(), GetVReg(B())); in MOVE_FROM16()
562 SetVReg(A(), GetVReg(B())); in MOVE_16()
628 result.SetI(GetVReg(A())); in RETURN()
877 int32_t length = GetVReg(B()); in NEW_ARRAY()
973 return HandleIf(GetVReg(A()) == GetVReg(B()), C()); in IF_EQ()
977 return HandleIf(GetVReg(A()) != GetVReg(B()), C()); in IF_NE()
981 return HandleIf(GetVReg(A()) < GetVReg(B()), C()); in IF_LT()
985 return HandleIf(GetVReg(A()) >= GetVReg(B()), C()); in IF_GE()
989 return HandleIf(GetVReg(A()) > GetVReg(B()), C()); in IF_GT()
993 return HandleIf(GetVReg(A()) <= GetVReg(B()), C()); in IF_LE()
997 return HandleIf(GetVReg(A()) == 0, B()); in IF_EQZ()
1001 return HandleIf(GetVReg(A()) != 0, B()); in IF_NEZ()
1005 return HandleIf(GetVReg(A()) < 0, B()); in IF_LTZ()
1009 return HandleIf(GetVReg(A()) >= 0, B()); in IF_GEZ()
1013 return HandleIf(GetVReg(A()) > 0, B()); in IF_GTZ()
1017 return HandleIf(GetVReg(A()) <= 0, B()); in IF_LEZ()
1049 return HandleAPut<mirror::BooleanArray>(GetVReg(A())); in APUT_BOOLEAN()
1053 return HandleAPut<mirror::ByteArray>(GetVReg(A())); in APUT_BYTE()
1057 return HandleAPut<mirror::CharArray>(GetVReg(A())); in APUT_CHAR()
1061 return HandleAPut<mirror::ShortArray>(GetVReg(A())); in APUT_SHORT()
1065 return HandleAPut<mirror::IntArray>(GetVReg(A())); in APUT()
1078 int32_t index = GetVReg(C()); in APUT_OBJECT()
1274 SetVReg(A(), -GetVReg(B())); in NEG_INT()
1279 SetVReg(A(), ~GetVReg(B())); in NOT_INT()
1304 SetVRegLong(A(), GetVReg(B())); in INT_TO_LONG()
1309 SetVRegFloat(A(), GetVReg(B())); in INT_TO_FLOAT()
1314 SetVRegDouble(A(), GetVReg(B())); in INT_TO_DOUBLE()
1364 SetVReg(A(), static_cast<int8_t>(GetVReg(B()))); in INT_TO_BYTE()
1369 SetVReg(A(), static_cast<uint16_t>(GetVReg(B()))); in INT_TO_CHAR()
1374 SetVReg(A(), static_cast<int16_t>(GetVReg(B()))); in INT_TO_SHORT()
1379 SetVReg(A(), SafeAdd(GetVReg(B()), GetVReg(C()))); in ADD_INT()
1384 SetVReg(A(), SafeSub(GetVReg(B()), GetVReg(C()))); in SUB_INT()
1389 SetVReg(A(), SafeMul(GetVReg(B()), GetVReg(C()))); in MUL_INT()
1394 return DoIntDivide(shadow_frame_, A(), GetVReg(B()), GetVReg(C())); in DIV_INT()
1398 return DoIntRemainder(shadow_frame_, A(), GetVReg(B()), GetVReg(C())); in REM_INT()
1402 SetVReg(A(), GetVReg(B()) << (GetVReg(C()) & 0x1f)); in SHL_INT()
1407 SetVReg(A(), GetVReg(B()) >> (GetVReg(C()) & 0x1f)); in SHR_INT()
1412 SetVReg(A(), static_cast<uint32_t>(GetVReg(B())) >> (GetVReg(C()) & 0x1f)); in USHR_INT()
1417 SetVReg(A(), GetVReg(B()) & GetVReg(C())); in AND_INT()
1422 SetVReg(A(), GetVReg(B()) | GetVReg(C())); in OR_INT()
1427 SetVReg(A(), GetVReg(B()) ^ GetVReg(C())); in XOR_INT()
1470 SetVRegLong(A(), GetVRegLong(B()) << (GetVReg(C()) & 0x3f)); in SHL_LONG()
1475 SetVRegLong(A(), GetVRegLong(B()) >> (GetVReg(C()) & 0x3f)); in SHR_LONG()
1480 SetVRegLong(A(), static_cast<uint64_t>(GetVRegLong(B())) >> (GetVReg(C()) & 0x3f)); in USHR_LONG()
1535 SetVReg(A(), SafeAdd(GetVReg(A()), GetVReg(B()))); in ADD_INT_2ADDR()
1540 SetVReg(A(), SafeSub(GetVReg(A()), GetVReg(B()))); in SUB_INT_2ADDR()
1545 SetVReg(A(), SafeMul(GetVReg(A()), GetVReg(B()))); in MUL_INT_2ADDR()
1550 return DoIntDivide(shadow_frame_, A(), GetVReg(A()), GetVReg(B())); in DIV_INT_2ADDR()
1554 return DoIntRemainder(shadow_frame_, A(), GetVReg(A()), GetVReg(B())); in REM_INT_2ADDR()
1558 SetVReg(A(), GetVReg(A()) << (GetVReg(B()) & 0x1f)); in SHL_INT_2ADDR()
1563 SetVReg(A(), GetVReg(A()) >> (GetVReg(B()) & 0x1f)); in SHR_INT_2ADDR()
1568 SetVReg(A(), static_cast<uint32_t>(GetVReg(A())) >> (GetVReg(B()) & 0x1f)); in USHR_INT_2ADDR()
1573 SetVReg(A(), GetVReg(A()) & GetVReg(B())); in AND_INT_2ADDR()
1578 SetVReg(A(), GetVReg(A()) | GetVReg(B())); in OR_INT_2ADDR()
1583 SetVReg(A(), GetVReg(A()) ^ GetVReg(B())); in XOR_INT_2ADDR()
1626 SetVRegLong(A(), GetVRegLong(A()) << (GetVReg(B()) & 0x3f)); in SHL_LONG_2ADDR()
1631 SetVRegLong(A(), GetVRegLong(A()) >> (GetVReg(B()) & 0x3f)); in SHR_LONG_2ADDR()
1636 SetVRegLong(A(), static_cast<uint64_t>(GetVRegLong(A())) >> (GetVReg(B()) & 0x3f)); in USHR_LONG_2ADDR()
1691 SetVReg(A(), SafeAdd(GetVReg(B()), C())); in ADD_INT_LIT16()
1696 SetVReg(A(), SafeSub(C(), GetVReg(B()))); in RSUB_INT()
1701 SetVReg(A(), SafeMul(GetVReg(B()), C())); in MUL_INT_LIT16()
1706 return DoIntDivide(shadow_frame_, A(), GetVReg(B()), C()); in DIV_INT_LIT16()
1710 return DoIntRemainder(shadow_frame_, A(), GetVReg(B()), C()); in REM_INT_LIT16()
1714 SetVReg(A(), GetVReg(B()) & C()); in AND_INT_LIT16()
1719 SetVReg(A(), GetVReg(B()) | C()); in OR_INT_LIT16()
1724 SetVReg(A(), GetVReg(B()) ^ C()); in XOR_INT_LIT16()
1729 SetVReg(A(), SafeAdd(GetVReg(B()), C())); in ADD_INT_LIT8()
1734 SetVReg(A(), SafeSub(C(), GetVReg(B()))); in RSUB_INT_LIT8()
1739 SetVReg(A(), SafeMul(GetVReg(B()), C())); in MUL_INT_LIT8()
1744 return DoIntDivide(shadow_frame_, A(), GetVReg(B()), C()); in DIV_INT_LIT8()
1748 return DoIntRemainder(shadow_frame_, A(), GetVReg(B()), C()); in REM_INT_LIT8()
1752 SetVReg(A(), GetVReg(B()) & C()); in AND_INT_LIT8()
1757 SetVReg(A(), GetVReg(B()) | C()); in OR_INT_LIT8()
1762 SetVReg(A(), GetVReg(B()) ^ C()); in XOR_INT_LIT8()
1767 SetVReg(A(), GetVReg(B()) << (C() & 0x1f)); in SHL_INT_LIT8()
1772 SetVReg(A(), GetVReg(B()) >> (C() & 0x1f)); in SHR_INT_LIT8()
1777 SetVReg(A(), static_cast<uint32_t>(GetVReg(B())) >> (C() & 0x1f)); in USHR_INT_LIT8()
1956 int32_t GetVReg(size_t i) const { return shadow_frame_.GetVReg(i); } in GetVReg() function