[llvm] Combine (X ^ Y) and (X == Y) where appropriate (PR #130922)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 10:00:11 PDT 2025
================
@@ -17194,8 +17194,47 @@ static bool combine_CC(SDValue &LHS, SDValue &RHS, SDValue &CC, const SDLoc &DL,
return true;
}
+ // If XOR is reused and has an immediate that will fit in XORI,
+ // do not fold
+ auto Is12BitConstant = [](const SDValue &Op) -> bool {
+ if (Op.getOpcode() == ISD::Constant) {
+ const int64_t RiscvAluImmBits = 12;
+ const int64_t RiscvAluImmUpperBound = (1 << RiscvAluImmBits) - 1;
+ const int64_t RiscvAluImmLowerBound = -(1 << RiscvAluImmBits);
+ const int64_t XorCnst =
+ llvm::dyn_cast<llvm::ConstantSDNode>(Op)->getSExtValue();
+ return (XorCnst >= RiscvAluImmLowerBound) &&
+ (XorCnst <= RiscvAluImmUpperBound);
+ }
+ return false;
+ };
+ // Fold (X(i1) ^ 1) == 0 -> X != 0
+ auto SingleBitOp = [&DAG](const SDValue &VarOp,
+ const SDValue &ConstOp) -> bool {
+ if (ConstOp.getOpcode() == ISD::Constant) {
+ const int64_t XorCnst =
+ llvm::dyn_cast<llvm::ConstantSDNode>(ConstOp)->getSExtValue();
+ const APInt Mask = APInt::getBitsSetFrom(VarOp.getValueSizeInBits(), 1);
+ return (XorCnst == 1) && DAG.MaskedValueIsZero(VarOp, Mask);
+ }
+ return false;
+ };
+ auto OnlyUsedBySelectOrBR = [](const SDValue &Op) -> bool {
+ for (const SDUse &Use : Op->uses()) {
----------------
topperc wrote:
You can use Op->users()
https://github.com/llvm/llvm-project/pull/130922
More information about the llvm-commits
mailing list