Lines Matching refs:RHSConst

3375     ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS);  in get32BitZExtCompare()  local
3376 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3425 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3426 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3427 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()
3559 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3560 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3604 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3605 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3606 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()
3717 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3718 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitZExtCompare()
3759 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3760 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitZExtCompare()
3761 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitZExtCompare()
3876 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3877 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitSExtCompare()
3919 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3920 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitSExtCompare()
3921 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitSExtCompare()
4045 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in getSETCCInGPR() local
4046 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; in getSETCCInGPR()