reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
3523 if ((Width & (IntSize - 1)) == 0) 3526 if (Width >= IntSize) { 3529 Width & (IntSize - 1))); 3538 if (Offset >= IntSize) { 3540 Offset & (IntSize - 1))); 3557 if (Offset + Width < IntSize) { 3558 Value *Shl = Builder.CreateShl(Src, IntSize - Offset - Width); 3559 Value *RightShift = Signed ? Builder.CreateAShr(Shl, IntSize - Width) 3560 : Builder.CreateLShr(Shl, IntSize - Width);