Home
last modified time | relevance | path

Searched refs:RHSConst (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp3361 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3362 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3411 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitZExtCompare() local
3412 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitZExtCompare()
3413 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitZExtCompare()
3545 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3546 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3590 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in get32BitSExtCompare() local
3591 IsRHSZero = RHSConst && RHSConst->isZero(); in get32BitSExtCompare()
3592 IsRHSOne = RHSConst && RHSConst->getSExtValue() == 1; in get32BitSExtCompare()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp1179 auto *RHSConst = dyn_cast<ConstantInt>(RHS); in getValueFromICmpCtpop() local
1180 if (!RHSConst) in getValueFromICmpCtpop()
1184 ConstantRange::makeExactICmpRegion(Pred, RHSConst->getValue()); in getValueFromICmpCtpop()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp3498 if (auto *RHSConst = dyn_cast<ConstantSDNode>(RHS)) in ExpandIntRes_MINMAX() local
3499 RHSVal = &RHSConst->getAPIntValue(); in ExpandIntRes_MINMAX()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4290 ConstantSDNode *RHSConst = dyn_cast<ConstantSDNode>(RHS); in simplifySetCCIntoEq() local
4291 if (LHSConstOp && RHSConst) { in simplifySetCCIntoEq()
4293 uint64_t RHSConstant = RHSConst->getZExtValue(); in simplifySetCCIntoEq()