Lines Matching defs:IntSize
731 unsigned IntSize = Ty->getIntegerBitWidth();
736 if ((Width & (IntSize - 1)) == 0) {
741 if (Width >= IntSize) {
743 II, 2, ConstantInt::get(CWidth->getType(), Width & (IntSize - 1)));
751 if (Offset >= IntSize) {
754 ConstantInt::get(COffset->getType(), Offset & (IntSize - 1)));
770 if (Offset + Width < IntSize) {
771 Value *Shl = IC.Builder.CreateShl(Src, IntSize - Offset - Width);
772 Value *RightShift = Signed ? IC.Builder.CreateAShr(Shl, IntSize - Width)
773 : IC.Builder.CreateLShr(Shl, IntSize - Width);