Home | History | Annotate | Download | only in InstCombine

Lines Matching full:rhsval

538       const APInt &RHSVal = RHS->getValue();
539 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
545 KnownOne = ((LHSKnownZero & RHSVal) |
546 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
550 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;