Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DKnownBits.cpp186 APInt MinShiftAmount = RHS.getMinValue(); in shl() local
187 if (MinShiftAmount.ult(BitWidth)) { in shl()
188 MinTrailingZeros += MinShiftAmount.getZExtValue(); in shl()
201 for (uint64_t ShiftAmt = MinShiftAmount.getZExtValue(), in shl()
239 APInt MinShiftAmount = RHS.getMinValue(); in lshr() local
240 if (MinShiftAmount.ult(BitWidth)) { in lshr()
241 MinLeadingZeros += MinShiftAmount.getZExtValue(); in lshr()
291 APInt MinShiftAmount = RHS.getMinValue(); in ashr() local
292 if (MinShiftAmount.ult(BitWidth)) { in ashr()
294 MinLeadingZeros += MinShiftAmount.getZExtValue(); in ashr()
[all …]