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

/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7316 unsigned NewBW = NextPowerOf2(MSB - ShAmt); local
7317 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
7318 while (NewBW < BitWidth &&
7321 NewBW = NextPowerOf2(NewBW);
7322 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
7324 if (NewBW >= BitWidth)
7329 if (ShAmt % NewBW)
7330 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewB
[all...]

Completed in 278 milliseconds