Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp19946 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()
[all …]