Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDemandedBits.cpp185 const APInt *ShiftAmtC; in determineLiveOperandBits() local
186 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
187 uint64_t ShiftAmt = ShiftAmtC->getLimitedValue(BitWidth - 1); in determineLiveOperandBits()
202 const APInt *ShiftAmtC; in determineLiveOperandBits() local
203 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
204 uint64_t ShiftAmt = ShiftAmtC->getLimitedValue(BitWidth - 1); in determineLiveOperandBits()
216 const APInt *ShiftAmtC; in determineLiveOperandBits() local
217 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
218 uint64_t ShiftAmt = ShiftAmtC->getLimitedValue(BitWidth - 1); in determineLiveOperandBits()
/external/llvm-project/llvm/lib/Analysis/
DDemandedBits.cpp208 const APInt *ShiftAmtC; in determineLiveOperandBits() local
209 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
210 uint64_t ShiftAmt = ShiftAmtC->getLimitedValue(BitWidth - 1); in determineLiveOperandBits()
225 const APInt *ShiftAmtC; in determineLiveOperandBits() local
226 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
227 uint64_t ShiftAmt = ShiftAmtC->getLimitedValue(BitWidth - 1); in determineLiveOperandBits()
239 const APInt *ShiftAmtC; in determineLiveOperandBits() local
240 if (match(UserI->getOperand(1), m_APInt(ShiftAmtC))) { in determineLiveOperandBits()
241 uint64_t ShiftAmt = ShiftAmtC->getLimitedValue(BitWidth - 1); in determineLiveOperandBits()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp7165 uint64_t ShiftAmtC = WideVal.getConstantOperandVal(1); in mergeTruncStores() local
7166 if (ShiftAmtC % NarrowNumBits != 0) in mergeTruncStores()
7169 Offset = ShiftAmtC / NarrowNumBits; in mergeTruncStores()