Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:RHSVal

537       const APInt &RHSVal = RHS->getValue();
538 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
544 KnownOne = ((LHSKnownZero & RHSVal) |
545 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
549 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;