Lines Matching refs:RHSValue

2927                               int64_t RHSValue, SDLoc dl);
2929 int64_t RHSValue, SDLoc dl);
2931 int64_t RHSValue, SDLoc dl);
2933 int64_t RHSValue, SDLoc dl);
3331 int64_t RHSValue, SDLoc dl) { in get32BitZExtCompare() argument
3335 bool IsRHSZero = RHSValue == 0; in get32BitZExtCompare()
3336 bool IsRHSOne = RHSValue == 1; in get32BitZExtCompare()
3337 bool IsRHSNegOne = RHSValue == -1LL; in get32BitZExtCompare()
3504 int64_t RHSValue, SDLoc dl) { in get32BitSExtCompare() argument
3508 bool IsRHSZero = RHSValue == 0; in get32BitSExtCompare()
3509 bool IsRHSOne = RHSValue == 1; in get32BitSExtCompare()
3510 bool IsRHSNegOne = RHSValue == -1LL; in get32BitSExtCompare()
3676 int64_t RHSValue, SDLoc dl) { in get64BitZExtCompare() argument
3680 bool IsRHSZero = RHSValue == 0; in get64BitZExtCompare()
3681 bool IsRHSOne = RHSValue == 1; in get64BitZExtCompare()
3682 bool IsRHSNegOne = RHSValue == -1LL; in get64BitZExtCompare()
3833 int64_t RHSValue, SDLoc dl) { in get64BitSExtCompare() argument
3837 bool IsRHSZero = RHSValue == 0; in get64BitSExtCompare()
3838 bool IsRHSOne = RHSValue == 1; in get64BitSExtCompare()
3839 bool IsRHSNegOne = RHSValue == -1LL; in get64BitSExtCompare()
4046 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; in getSETCCInGPR() local
4051 return get32BitSExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()
4053 return get32BitZExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()
4055 return get64BitSExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()
4056 return get64BitZExtCompare(LHS, RHS, CC, RHSValue, dl); in getSETCCInGPR()