Home
last modified time | relevance | path

Searched refs:LHSBits (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp1232 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
1235 Bits[i] = LHSBits[i < RotAmt ? i + (NumBits - RotAmt) : i - RotAmt]; in getValueBits()
1244 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
1247 Bits[i] = LHSBits[i - ShiftAmt]; in getValueBits()
1259 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
1262 Bits[i] = LHSBits[i + ShiftAmt]; in getValueBits()
1274 const SmallVector<ValueBit, 64> *LHSBits; in getValueBits() local
1279 std::tie(Interesting, LHSBits) = getValueBits(V.getOperand(0), NumBits); in getValueBits()
1283 Bits[i] = (*LHSBits)[i]; in getValueBits()
1287 if ((*LHSBits)[i].isZero()) in getValueBits()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueTracking.cpp1894 KnownBits LHSBits(BitWidth); in isKnownToBeAPowerOfTwo() local
1895 computeKnownBits(X, LHSBits, Depth, Q); in isKnownToBeAPowerOfTwo()
1902 if ((~(LHSBits.Zero & RHSBits.Zero)).isPowerOf2()) in isKnownToBeAPowerOfTwo()
1905 if (OrZero || RHSBits.One.getBoolValue() || LHSBits.One.getBoolValue()) in isKnownToBeAPowerOfTwo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp6351 SDValue LHSBits = DAG.getNode(ISD::SHL, DL, VT, AllOnes, LHSShiftAmt); in MatchRotate() local
6353 DAG.getNode(ISD::OR, DL, VT, RHSMask, LHSBits)); in MatchRotate()