Searched refs:RHSConst (Results 1 – 2 of 2) sorted by relevance
3362 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local3363 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()3412 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local3413 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()3414 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()3546 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local3547 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()3591 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local3592 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()3593 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()[all …]
3301 if (auto *RHSConst = dyn_cast<ConstantSDNode>(RHS)) in ExpandIntRes_MINMAX() local3302 RHSVal = &RHSConst->getAPIntValue(); in ExpandIntRes_MINMAX()