Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp470 unsigned shiftAmt = C.getZExtValue(); in lshr() local
471 if (shiftAmt >= C.getBitWidth()) in lshr()
479 if (A.countr_zero() < shiftAmt) in lshr()
482 incErrorMSBs(shiftAmt); in lshr()
486 A = A.lshr(shiftAmt); in lshr()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h831 APInt lshr(unsigned shiftAmt) const { in lshr() argument
833 R.lshrInPlace(shiftAmt); in lshr()
853 APInt shl(unsigned shiftAmt) const { in shl() argument
855 R <<= shiftAmt; in shl()
895 void ashrInPlace(const APInt &shiftAmt);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1020 void APInt::ashrInPlace(const APInt &shiftAmt) { in ashrInPlace() argument
1021 ashrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in ashrInPlace()
1069 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() argument
1070 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace()
1081 APInt &APInt::operator<<=(const APInt &shiftAmt) { in operator <<=() argument
1083 *this <<= (unsigned)shiftAmt.getLimitedValue(BitWidth); in operator <<=()