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

/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp775 unsigned SrcTySize = getBitWidth(); local
776 assert(SrcTySize < DstTySize && "Not a value extension");
783 APInt::getOneBitSet(DstTySize, SrcTySize));
792 unsigned SrcTySize = getBitWidth();
793 assert(SrcTySize < DstTySize && "Not a value extension");
800 return ConstantRange(APInt::getHighBitsSet(DstTySize,DstTySize-SrcTySize+1),
801 APInt::getLowBitsSet(DstTySize, SrcTySize-1) + 1);
861 unsigned SrcTySize = getBitWidth();
862 if (SrcTySize > DstTySize)
864 if (SrcTySize < DstTySiz
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp1916 unsigned SrcTySize = MRI.getType(ExtSrc).getScalarSizeInBits(); local
1917 return MinLeadingZeros >= ShiftAmt && ShiftAmt < SrcTySize;

Completed in 133 milliseconds