Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:XorRHS

905     Value *XorLHS = 0; ConstantInt *XorRHS = 0;
906 if (match(LHS, m_Xor(m_Value(XorLHS), m_ConstantInt(XorRHS)))) {
912 if (XorRHS->getValue() == -RHSVal) {
915 else if (XorRHS->getValue().isPowerOf2())
916 ExtendAmt = TySizeBits - XorRHS->getValue().logBase2() - 1;
933 if (LHS->hasOneUse() && (XorRHS->getValue()+1).isPowerOf2()) {
938 if ((XorRHS->getValue() | LHSKnownZero).isAllOnesValue())
939 return BinaryOperator::CreateSub(ConstantExpr::getAdd(XorRHS, CI),