Lines Matching refs:RHSConst
3201 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3202 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3251 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3252 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3253 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()
3385 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3386 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3430 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3431 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3432 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()
3543 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3544 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitZExtCompare()
3585 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3586 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitZExtCompare()
3587 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitZExtCompare()
3702 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3703 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitSExtCompare()
3745 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3746 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitSExtCompare()
3747 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitSExtCompare()
3871 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in getSETCCInGPR() local
3872 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; in getSETCCInGPR()