Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:SmallVTBits

412   unsigned SmallVTBits = DemandedSize;
413 if (!isPowerOf2_32(SmallVTBits))
414 SmallVTBits = NextPowerOf2(SmallVTBits);
415 for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) {
416 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits);
424 assert(DemandedSize <= SmallVTBits && "Narrowed below demanded bits?");