Lines Matching refs:ShiftAmt
145 uint64_t ShiftAmt = CI->getLimitedValue(BitWidth-1); in determineLiveOperandBits() local
146 AB = AOut.lshr(ShiftAmt); in determineLiveOperandBits()
152 AB |= APInt::getHighBitsSet(BitWidth, ShiftAmt+1); in determineLiveOperandBits()
154 AB |= APInt::getHighBitsSet(BitWidth, ShiftAmt); in determineLiveOperandBits()
161 uint64_t ShiftAmt = CI->getLimitedValue(BitWidth-1); in determineLiveOperandBits() local
162 AB = AOut.shl(ShiftAmt); in determineLiveOperandBits()
167 AB |= APInt::getLowBitsSet(BitWidth, ShiftAmt); in determineLiveOperandBits()
174 uint64_t ShiftAmt = CI->getLimitedValue(BitWidth-1); in determineLiveOperandBits() local
175 AB = AOut.shl(ShiftAmt); in determineLiveOperandBits()
179 if ((AOut & APInt::getHighBitsSet(BitWidth, ShiftAmt)) in determineLiveOperandBits()
186 AB |= APInt::getLowBitsSet(BitWidth, ShiftAmt); in determineLiveOperandBits()