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

References

lib/CodeGen/SelectionDAG/TargetLowering.cpp
 1504       if (Amt == 0) {
 1513       APInt Demanded0 = DemandedBits.lshr(IsFSHL ? Amt : (BitWidth - Amt));
 1513       APInt Demanded0 = DemandedBits.lshr(IsFSHL ? Amt : (BitWidth - Amt));
 1514       APInt Demanded1 = DemandedBits << (IsFSHL ? (BitWidth - Amt) : Amt);
 1514       APInt Demanded1 = DemandedBits << (IsFSHL ? (BitWidth - Amt) : Amt);
 1522       Known2.One <<= (IsFSHL ? Amt : (BitWidth - Amt));
 1522       Known2.One <<= (IsFSHL ? Amt : (BitWidth - Amt));
 1523       Known2.Zero <<= (IsFSHL ? Amt : (BitWidth - Amt));
 1523       Known2.Zero <<= (IsFSHL ? Amt : (BitWidth - Amt));
 1524       Known.One.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt);
 1524       Known.One.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt);
 1525       Known.Zero.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt);
 1525       Known.Zero.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt);