Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:SrcSize

815     unsigned SrcSize = A->getType()->getScalarSizeInBits();
819 // SrcSize < DstSize: zext(a & mask)
820 // SrcSize == DstSize: a & mask
821 // SrcSize > DstSize: trunc(a) & mask
822 if (SrcSize < DstSize) {
823 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
829 if (SrcSize == DstSize) {
830 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
834 if (SrcSize > DstSize) {