Lines Matching refs:C

324     int32_t index = GetVReg(C());  in HandleAGet()
341 int32_t index = GetVReg(C()); in HandleAPut()
702 ObjPtr<mirror::Class> c = ResolveVerifyAndClinit(dex::TypeIndex(C()), in INSTANCE_OF()
762 dex::TypeIndex(C()), in NEW_ARRAY()
851 return HandleCmpl<float>(GetVRegFloat(B()), GetVRegFloat(C())); in CMPL_FLOAT()
855 return HandleCmpg<float>(GetVRegFloat(B()), GetVRegFloat(C())); in CMPG_FLOAT()
859 return HandleCmpl<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPL_DOUBLE()
863 return HandleCmpg<double>(GetVRegDouble(B()), GetVRegDouble(C())); in CMPG_DOUBLE()
867 return HandleCmpl<int64_t>(GetVRegLong(B()), GetVRegLong(C())); in CMP_LONG()
871 return HandleIf(GetVReg(A()) == GetVReg(B()), C()); in IF_EQ()
875 return HandleIf(GetVReg(A()) != GetVReg(B()), C()); in IF_NE()
879 return HandleIf(GetVReg(A()) < GetVReg(B()), C()); in IF_LT()
883 return HandleIf(GetVReg(A()) >= GetVReg(B()), C()); in IF_GE()
887 return HandleIf(GetVReg(A()) > GetVReg(B()), C()); in IF_GT()
891 return HandleIf(GetVReg(A()) <= GetVReg(B()), C()); in IF_LE()
976 int32_t index = GetVReg(C()); in APUT_OBJECT()
1349 SetVReg(A(), SafeAdd(GetVReg(B()), GetVReg(C()))); in ADD_INT()
1354 SetVReg(A(), SafeSub(GetVReg(B()), GetVReg(C()))); in SUB_INT()
1359 SetVReg(A(), SafeMul(GetVReg(B()), GetVReg(C()))); in MUL_INT()
1364 return DoIntDivide(shadow_frame, A(), GetVReg(B()), GetVReg(C())); in DIV_INT()
1368 return DoIntRemainder(shadow_frame, A(), GetVReg(B()), GetVReg(C())); in REM_INT()
1372 SetVReg(A(), GetVReg(B()) << (GetVReg(C()) & 0x1f)); in SHL_INT()
1377 SetVReg(A(), GetVReg(B()) >> (GetVReg(C()) & 0x1f)); in SHR_INT()
1382 SetVReg(A(), static_cast<uint32_t>(GetVReg(B())) >> (GetVReg(C()) & 0x1f)); in USHR_INT()
1387 SetVReg(A(), GetVReg(B()) & GetVReg(C())); in AND_INT()
1392 SetVReg(A(), GetVReg(B()) | GetVReg(C())); in OR_INT()
1397 SetVReg(A(), GetVReg(B()) ^ GetVReg(C())); in XOR_INT()
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()
1455 SetVRegFloat(A(), GetVRegFloat(B()) + GetVRegFloat(C())); in ADD_FLOAT()
1460 SetVRegFloat(A(), GetVRegFloat(B()) - GetVRegFloat(C())); in SUB_FLOAT()
1465 SetVRegFloat(A(), GetVRegFloat(B()) * GetVRegFloat(C())); in MUL_FLOAT()
1470 SetVRegFloat(A(), GetVRegFloat(B()) / GetVRegFloat(C())); in DIV_FLOAT()
1475 SetVRegFloat(A(), fmodf(GetVRegFloat(B()), GetVRegFloat(C()))); in REM_FLOAT()
1480 SetVRegDouble(A(), GetVRegDouble(B()) + GetVRegDouble(C())); in ADD_DOUBLE()
1485 SetVRegDouble(A(), GetVRegDouble(B()) - GetVRegDouble(C())); in SUB_DOUBLE()
1490 SetVRegDouble(A(), GetVRegDouble(B()) * GetVRegDouble(C())); in MUL_DOUBLE()
1495 SetVRegDouble(A(), GetVRegDouble(B()) / GetVRegDouble(C())); in DIV_DOUBLE()
1500 SetVRegDouble(A(), fmod(GetVRegDouble(B()), GetVRegDouble(C()))); in REM_DOUBLE()
1693 SetVReg(A(), SafeAdd(GetVReg(B()), C())); in ADD_INT_LIT16()
1698 SetVReg(A(), SafeSub(C(), GetVReg(B()))); in RSUB_INT()
1703 SetVReg(A(), SafeMul(GetVReg(B()), C())); in MUL_INT_LIT16()
1708 return DoIntDivide(shadow_frame, A(), GetVReg(B()), C()); in DIV_INT_LIT16()
1712 return DoIntRemainder(shadow_frame, A(), GetVReg(B()), C()); in REM_INT_LIT16()
1716 SetVReg(A(), GetVReg(B()) & C()); in AND_INT_LIT16()
1721 SetVReg(A(), GetVReg(B()) | C()); in OR_INT_LIT16()
1726 SetVReg(A(), GetVReg(B()) ^ C()); in XOR_INT_LIT16()
1731 SetVReg(A(), SafeAdd(GetVReg(B()), C())); in ADD_INT_LIT8()
1736 SetVReg(A(), SafeSub(C(), GetVReg(B()))); in RSUB_INT_LIT8()
1741 SetVReg(A(), SafeMul(GetVReg(B()), C())); in MUL_INT_LIT8()
1746 return DoIntDivide(shadow_frame, A(), GetVReg(B()), C()); in DIV_INT_LIT8()
1750 return DoIntRemainder(shadow_frame, A(), GetVReg(B()), C()); in REM_INT_LIT8()
1754 SetVReg(A(), GetVReg(B()) & C()); in AND_INT_LIT8()
1759 SetVReg(A(), GetVReg(B()) | C()); in OR_INT_LIT8()
1764 SetVReg(A(), GetVReg(B()) ^ C()); in XOR_INT_LIT8()
1769 SetVReg(A(), GetVReg(B()) << (C() & 0x1f)); in SHL_INT_LIT8()
1774 SetVReg(A(), GetVReg(B()) >> (C() & 0x1f)); in SHR_INT_LIT8()
1779 SetVReg(A(), static_cast<uint32_t>(GetVReg(B())) >> (C() & 0x1f)); in USHR_INT_LIT8()
1874 ALWAYS_INLINE int32_t C() { return inst->VRegC(kFormat); } in C() function