Lines Matching refs:HandleIf
441 HANDLER_ATTRIBUTES bool HandleIf(bool cond, int32_t offset) { in HandleIf() function
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()