reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCalls.cpp
 3522       Width = CWidth->getZExtValue();
 3523       if ((Width & (IntSize - 1)) == 0)
 3526       if (Width >= IntSize) {
 3529                                               Width & (IntSize - 1)));
 3553     assert(Width != 0);
 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);