Searched refs:NewBW (Results 1 – 1 of 1) sorted by relevance
10796 unsigned NewBW = NextPowerOf2(MSB - ShAmt); in ReduceLoadOpStoreWidth() local10797 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); in ReduceLoadOpStoreWidth()10800 while (NewBW < BitWidth && in ReduceLoadOpStoreWidth()10801 (NewVT.getStoreSizeInBits() != NewBW || in ReduceLoadOpStoreWidth()10804 NewBW = NextPowerOf2(NewBW); in ReduceLoadOpStoreWidth()10805 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW); in ReduceLoadOpStoreWidth()10807 if (NewBW >= BitWidth) in ReduceLoadOpStoreWidth()10812 if (ShAmt % NewBW) in ReduceLoadOpStoreWidth()10813 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW; in ReduceLoadOpStoreWidth()10815 std::min(BitWidth, ShAmt + NewBW)); in ReduceLoadOpStoreWidth()[all …]