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

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7655 unsigned NewBW = NextPowerOf2(MSB - ShAmt); local
7656 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
7657 while (NewBW < BitWidth &&
7660 NewBW = NextPowerOf2(NewBW);
7661 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
7663 if (NewBW >= BitWidth)
7668 if (ShAmt % NewBW)
7669 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewB
[all...]

Completed in 178 milliseconds