Lines Matching refs:RHSConst

3188     ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS);  in get32BitZExtCompare()  local
3189 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get32BitZExtCompare()
3238 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3239 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get32BitZExtCompare()
3240 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()
3372 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3373 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get32BitSExtCompare()
3417 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3418 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get32BitSExtCompare()
3419 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()
3530 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3531 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get64BitZExtCompare()
3572 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitZExtCompare() local
3573 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get64BitZExtCompare()
3574 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitZExtCompare()
3689 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3690 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get64BitSExtCompare()
3732 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get64BitSExtCompare() local
3733 IsRHSZero = RHSConst && RHSConst->isNullValue(); in get64BitSExtCompare()
3734 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get64BitSExtCompare()
3858 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in getSETCCInGPR() local
3859 int64_t RHSValue = RHSConst ? RHSConst->getSExtValue() : INT64_MAX; in getSETCCInGPR()