Lines Matching defs:SrcWidth
547 unsigned SrcWidth = SrcTy->getScalarSizeInBits();
598 unsigned MaxShiftAmt = SrcWidth - DestWidth;
602 APInt(SrcWidth, MaxShiftAmt)))) {
684 unsigned SrcWidth = SrcTy->getScalarSizeInBits();
709 if (DestWidth * 2 < SrcWidth) {
754 Constant *One = ConstantInt::get(SrcTy, APInt(SrcWidth, 1));
762 Constant *One = ConstantInt::get(SrcTy, APInt(SrcWidth, 1));
787 unsigned MaxShiftAmt = SrcWidth - std::max(DestWidth, AWidth);
794 APInt(SrcWidth, MaxShiftAmt)))) {
866 if (SrcWidth % DestWidth == 0) {
867 uint64_t TruncRatio = SrcWidth / DestWidth;
886 if (AWidth == DestWidth && AWidth > Log2_32(SrcWidth)) {
887 Value *WidthDiff = ConstantInt::get(A->getType(), SrcWidth - AWidth);
915 MaskedValueIsZero(Src, APInt::getBitsSetFrom(SrcWidth, DestWidth),
1731 unsigned SrcWidth = std::max(LHSWidth, RHSWidth);
1755 if (OpWidth >= 2*DstWidth+1 && DstWidth >= SrcWidth) {
1769 if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) {
1782 if (OpWidth >= 2*DstWidth && DstWidth >= SrcWidth) {
1793 if (SrcWidth == OpWidth)
1796 if (LHSWidth == SrcWidth) {