Searched refs:RHSConst (Results 1 – 4 of 4) sorted by relevance
3361 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local3362 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()3411 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local3412 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()3413 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()3545 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local3546 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()3590 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local3591 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()3592 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()[all …]
1179 auto *RHSConst = dyn_cast<ConstantInt>(RHS); in getValueFromICmpCtpop() local1180 if (!RHSConst) in getValueFromICmpCtpop()1184 ConstantRange::makeExactICmpRegion(Pred, RHSConst->getValue()); in getValueFromICmpCtpop()
3498 if (auto *RHSConst = dyn_cast<ConstantSDNode>(RHS)) in ExpandIntRes_MINMAX() local3499 RHSVal = &RHSConst->getAPIntValue(); in ExpandIntRes_MINMAX()
4290 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in simplifySetCCIntoEq() local4291 if (LHSConstOp && RHSConst) { in simplifySetCCIntoEq()4293 uint64_t RHSConstant = RHSConst->getZExtValue(); in simplifySetCCIntoEq()