Lines Matching refs:NewBW
19946 unsigned NewBW = NextPowerOf2(MSB - ShAmt); in ReduceLoadOpStoreWidth() local
19947 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); in ReduceLoadOpStoreWidth()
19950 while (NewBW < BitWidth && in ReduceLoadOpStoreWidth()
19951 (NewVT.getStoreSizeInBits() != NewBW || in ReduceLoadOpStoreWidth()
19954 NewBW = NextPowerOf2(NewBW); in ReduceLoadOpStoreWidth()
19955 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); in ReduceLoadOpStoreWidth()
19957 if (NewBW >= BitWidth) in ReduceLoadOpStoreWidth()
19962 if (ShAmt % NewBW) in ReduceLoadOpStoreWidth()
19963 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW; in ReduceLoadOpStoreWidth()
19965 std::min(BitWidth, ShAmt + NewBW)); in ReduceLoadOpStoreWidth()
19967 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW); in ReduceLoadOpStoreWidth()
19969 NewImm ^= APInt::getAllOnes(NewBW); in ReduceLoadOpStoreWidth()
19974 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff; in ReduceLoadOpStoreWidth()