Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp3362 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()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp3301 if (auto *RHSConst = dyn_cast<ConstantSDNode>(RHS)) in ExpandIntRes_MINMAX() local
3302 RHSVal = &RHSConst->getAPIntValue(); in ExpandIntRes_MINMAX()