Home
last modified time | relevance | path

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

/external/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp925 SmallVector<ValueBit, 64> LHSBits(Bits.size()); in getValueBits() local
926 getValueBits(V.getOperand(0), LHSBits); in getValueBits()
929 Bits[i] = LHSBits[i < RotAmt ? i + (Bits.size() - RotAmt) : i - RotAmt]; in getValueBits()
938 SmallVector<ValueBit, 64> LHSBits(Bits.size()); in getValueBits() local
939 getValueBits(V.getOperand(0), LHSBits); in getValueBits()
942 Bits[i] = LHSBits[i - ShiftAmt]; in getValueBits()
954 SmallVector<ValueBit, 64> LHSBits(Bits.size()); in getValueBits() local
955 getValueBits(V.getOperand(0), LHSBits); in getValueBits()
958 Bits[i] = LHSBits[i + ShiftAmt]; in getValueBits()
970 SmallVector<ValueBit, 64> LHSBits(Bits.size()); in getValueBits() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp1199 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
1202 Bits[i] = LHSBits[i < RotAmt ? i + (NumBits - RotAmt) : i - RotAmt]; in getValueBits()
1211 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
1214 Bits[i] = LHSBits[i - ShiftAmt]; in getValueBits()
1226 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
1229 Bits[i] = LHSBits[i + ShiftAmt]; in getValueBits()
1241 const SmallVector<ValueBit, 64> *LHSBits; in getValueBits() local
1246 std::tie(Interesting, LHSBits) = getValueBits(V.getOperand(0), NumBits); in getValueBits()
1250 Bits[i] = (*LHSBits)[i]; in getValueBits()
1258 const auto &LHSBits = *getValueBits(V.getOperand(0), NumBits).second; in getValueBits() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DValueTracking.cpp1736 KnownBits LHSBits(BitWidth); in isKnownToBeAPowerOfTwo() local
1737 computeKnownBits(X, LHSBits, Depth, Q); in isKnownToBeAPowerOfTwo()
1744 if ((~(LHSBits.Zero & RHSBits.Zero)).isPowerOf2()) in isKnownToBeAPowerOfTwo()
1747 if (OrZero || RHSBits.One.getBoolValue() || LHSBits.One.getBoolValue()) in isKnownToBeAPowerOfTwo()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp2954 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal); in MatchRotate() local
2955 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits; in MatchRotate()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp4082 APInt LHSBits = APInt::getHighBitsSet(EltSizeInBits, RShVal); in MatchRotate() local
4085 DAG.getConstant(LHSBits, DL, VT))); in MatchRotate()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp5539 SDValue LHSBits = DAG.getNode(ISD::SHL, DL, VT, AllOnes, LHSShiftAmt); in MatchRotate() local
5541 DAG.getNode(ISD::OR, DL, VT, RHSMask, LHSBits)); in MatchRotate()