Lines Matching refs:RHSConst
3362 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3363 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3412 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3413 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3414 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()
3546 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3547 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3591 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3592 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3593 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()
3704 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3705 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitZExtCompare()
3746 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3747 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitZExtCompare()
3748 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitZExtCompare()
3863 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3864 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitSExtCompare()
3906 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3907 IsRHSZero = RHSConst && RHSConst->isZero(); in get64BitSExtCompare()
3908 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitSExtCompare()
4032 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in getSETCCInGPR() local
4033 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; in getSETCCInGPR()