Lines Matching refs:RHSValue
2750 int64_t RHSValue, SDLoc dl);
2752 int64_t RHSValue, SDLoc dl);
2754 int64_t RHSValue, SDLoc dl);
2756 int64_t RHSValue, SDLoc dl);
3157 int64_t RHSValue, SDLoc dl) { in get32BitZExtCompare() argument
3161 bool IsRHSZero = RHSValue == 0; in get32BitZExtCompare()
3162 bool IsRHSOne = RHSValue == 1; in get32BitZExtCompare()
3163 bool IsRHSNegOne = RHSValue == -1LL; in get32BitZExtCompare()
3330 int64_t RHSValue, SDLoc dl) { in get32BitSExtCompare() argument
3334 bool IsRHSZero = RHSValue == 0; in get32BitSExtCompare()
3335 bool IsRHSOne = RHSValue == 1; in get32BitSExtCompare()
3336 bool IsRHSNegOne = RHSValue == -1LL; in get32BitSExtCompare()
3502 int64_t RHSValue, SDLoc dl) { in get64BitZExtCompare() argument
3506 bool IsRHSZero = RHSValue == 0; in get64BitZExtCompare()
3507 bool IsRHSOne = RHSValue == 1; in get64BitZExtCompare()
3508 bool IsRHSNegOne = RHSValue == -1LL; in get64BitZExtCompare()
3659 int64_t RHSValue, SDLoc dl) { in get64BitSExtCompare() argument
3663 bool IsRHSZero = RHSValue == 0; in get64BitSExtCompare()
3664 bool IsRHSOne = RHSValue == 1; in get64BitSExtCompare()
3665 bool IsRHSNegOne = RHSValue == -1LL; in get64BitSExtCompare()
3872 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; in getSETCCInGPR() local
3877 return get32BitSExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()
3879 return get32BitZExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()
3881 return get64BitSExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()
3882 return get64BitZExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()