Home
last modified time | relevance | path

Searched refs:RHSBits (Results 1 – 5 of 5) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp3031 KnownBits RHSBits = KB->getKnownBits(RHS); in matchRedundantAnd() local
3040 (LHSBits.Zero | RHSBits.One).isAllOnesValue()) { in matchRedundantAnd()
3047 (LHSBits.One | RHSBits.Zero).isAllOnesValue()) { in matchRedundantAnd()
3077 KnownBits RHSBits = KB->getKnownBits(RHS); in matchRedundantOr() local
3086 (LHSBits.One | RHSBits.Zero).isAllOnesValue()) { in matchRedundantOr()
3093 (LHSBits.Zero | RHSBits.One).isAllOnesValue()) { in matchRedundantOr()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1533 const auto &RHSBits = *getValueBits(V.getOperand(1), NumBits).second; in getValueBits() local
1539 if (LHSBits[i].isZero() && RHSBits[i].isZero()) { in getValueBits()
1549 else if (RHSBits[i].hasValue() && RHSBits[i].getValue() == LastVal && in getValueBits()
1550 RHSBits[i].getValueBitIndex() == LastIdx + 1) in getValueBits()
1551 Bits[i] = RHSBits[i]; in getValueBits()
1556 Bits[i] = RHSBits[i]; in getValueBits()
1557 else if (RHSBits[i].isZero()) in getValueBits()
/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DValueTracking.cpp2002 KnownBits RHSBits(BitWidth); in isKnownToBeAPowerOfTwo() local
2003 computeKnownBits(Y, RHSBits, Depth, Q); in isKnownToBeAPowerOfTwo()
2007 if ((~(LHSBits.Zero & RHSBits.Zero)).isPowerOf2()) in isKnownToBeAPowerOfTwo()
2010 if (OrZero || RHSBits.One.getBoolValue() || LHSBits.One.getBoolValue()) in isKnownToBeAPowerOfTwo()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp9945 unsigned RHSBits = RHS->castAs<ExtIntType>()->getNumBits(); in mergeTypes() local
9951 if (LHSBits != RHSBits) in mergeTypes()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7002 SDValue RHSBits = DAG.getNode(ISD::SRL, DL, VT, AllOnes, RHSShiftAmt); in MatchRotate() local
7004 DAG.getNode(ISD::OR, DL, VT, LHSMask, RHSBits)); in MatchRotate()