HomeSort by relevance Sort by last modified time
    Searched refs:shiftAmt (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/ADT/
APInt.h 188 APInt shlSlowCase(unsigned shiftAmt) const;
482 unsigned shiftAmt = numBits - hiBitsSet;
485 return APInt(numBits, ~0ULL << shiftAmt);
486 return getAllOnesValue(numBits).shl(shiftAmt);
645 /// Shifts *this left by shiftAmt and assigns the result to *this.
646 /// @returns *this after shifting left by shiftAmt
648 APInt& operator<<=(unsigned shiftAmt) {
649 *this = shl(shiftAmt);
721 /// Arithmetic right-shift this APInt by shiftAmt.
723 APInt ashr(unsigned shiftAmt) const
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 1030 /// Arithmetic right-shift this APInt by shiftAmt.
1032 APInt APInt::ashr(const APInt &shiftAmt) const {
1033 return ashr((unsigned)shiftAmt.getLimitedValue(BitWidth));
1036 /// Arithmetic right-shift this APInt by shiftAmt.
1038 APInt APInt::ashr(unsigned shiftAmt) const {
1039 assert(shiftAmt <= BitWidth && "Invalid shift amount");
1041 if (shiftAmt == 0)
1046 if (shiftAmt == BitWidth)
1051 (((int64_t(VAL) << SignBit) >> SignBit) >> shiftAmt));
1058 if (shiftAmt == BitWidth)
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]

Completed in 143 milliseconds