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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp560 unsigned SmallVTBits = DemandedSize; local
561 if (!isPowerOf2_32(SmallVTBits))
562 SmallVTBits = NextPowerOf2(SmallVTBits);
563 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) {
564 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits);
572 assert(DemandedSize <= SmallVTBits && "Narrowed below demanded bits?");

Completed in 181 milliseconds