Lines Matching defs:IntSize
679 unsigned IntSize = Ty->getIntegerBitWidth();
684 if ((Width & (IntSize - 1)) == 0) {
689 if (Width >= IntSize) {
691 II, 2, ConstantInt::get(CWidth->getType(), Width & (IntSize - 1)));
699 if (Offset >= IntSize) {
702 ConstantInt::get(COffset->getType(), Offset & (IntSize - 1)));
718 if (Offset + Width < IntSize) {
719 Value *Shl = IC.Builder.CreateShl(Src, IntSize - Offset - Width);
720 Value *RightShift = Signed ? IC.Builder.CreateAShr(Shl, IntSize - Width)
721 : IC.Builder.CreateLShr(Shl, IntSize - Width);