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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1179 unsigned SmallVTBits = BitWidth - Demanded.countLeadingZeros(); local
1180 if (!isPowerOf2_32(SmallVTBits))
1181 SmallVTBits = NextPowerOf2(SmallVTBits);
1182 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) {
1183 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp399 unsigned SmallVTBits = DemandedSize; local
400 if (!isPowerOf2_32(SmallVTBits))
401 SmallVTBits = NextPowerOf2(SmallVTBits);
402 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) {
403 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits);
412 bool NeedZext = DemandedSize > SmallVTBits;

Completed in 104 milliseconds