Searched refs:RHSBits (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| D | CombinerHelper.cpp | 3109 KnownBits RHSBits = KB->getKnownBits(RHS); in matchRedundantAnd() local 3118 (LHSBits.Zero | RHSBits.One).isAllOnesValue()) { in matchRedundantAnd() 3125 (LHSBits.One | RHSBits.Zero).isAllOnesValue()) { in matchRedundantAnd() 3155 KnownBits RHSBits = KB->getKnownBits(RHS); in matchRedundantOr() local 3164 (LHSBits.One | RHSBits.Zero).isAllOnesValue()) { in matchRedundantOr() 3171 (LHSBits.Zero | RHSBits.One).isAllOnesValue()) { in matchRedundantOr()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| D | PPCISelDAGToDAG.cpp | 1529 const auto &RHSBits = *getValueBits(V.getOperand(1), NumBits).second; in getValueBits() local 1535 if (LHSBits[i].isZero() && RHSBits[i].isZero()) { in getValueBits() 1545 else if (RHSBits[i].hasValue() && RHSBits[i].getValue() == LastVal && in getValueBits() 1546 RHSBits[i].getValueBitIndex() == LastIdx + 1) in getValueBits() 1547 Bits[i] = RHSBits[i]; in getValueBits() 1552 Bits[i] = RHSBits[i]; in getValueBits() 1553 else if (RHSBits[i].isZero()) in getValueBits()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| D | ValueTracking.cpp | 2044 KnownBits RHSBits(BitWidth); in isKnownToBeAPowerOfTwo() local 2045 computeKnownBits(Y, RHSBits, Depth, Q); in isKnownToBeAPowerOfTwo() 2049 if ((~(LHSBits.Zero & RHSBits.Zero)).isPowerOf2()) in isKnownToBeAPowerOfTwo() 2052 if (OrZero || RHSBits.One.getBoolValue() || LHSBits.One.getBoolValue()) in isKnownToBeAPowerOfTwo()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | ASTContext.cpp | 9987 unsigned RHSBits = RHS->castAs<ExtIntType>()->getNumBits(); in mergeTypes() local 9993 if (LHSBits != RHSBits) in mergeTypes()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | DAGCombiner.cpp | 7032 SDValue RHSBits = DAG.getNode(ISD::SRL, DL, VT, AllOnes, RHSShiftAmt); in MatchRotate() local 7034 DAG.getNode(ISD::OR, DL, VT, LHSMask, RHSBits)); in MatchRotate()
|