Lines Matching refs:ShiftAmt
158 uint64_t ShiftAmt = CI->getLimitedValue(BitWidth-1); in determineLiveOperandBits() local
159 AB = AOut.lshr(ShiftAmt); in determineLiveOperandBits()
165 AB |= APInt::getHighBitsSet(BitWidth, ShiftAmt+1); in determineLiveOperandBits()
167 AB |= APInt::getHighBitsSet(BitWidth, ShiftAmt); in determineLiveOperandBits()
174 uint64_t ShiftAmt = CI->getLimitedValue(BitWidth-1); in determineLiveOperandBits() local
175 AB = AOut.shl(ShiftAmt); in determineLiveOperandBits()
180 AB |= APInt::getLowBitsSet(BitWidth, ShiftAmt); in determineLiveOperandBits()
187 uint64_t ShiftAmt = CI->getLimitedValue(BitWidth-1); in determineLiveOperandBits() local
188 AB = AOut.shl(ShiftAmt); in determineLiveOperandBits()
192 if ((AOut & APInt::getHighBitsSet(BitWidth, ShiftAmt)) in determineLiveOperandBits()
199 AB |= APInt::getLowBitsSet(BitWidth, ShiftAmt); in determineLiveOperandBits()