[llvm] [DAG][X86]added shrd in combineor for bzhiq+shlq+or (PR #125734)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 11:07:49 PST 2025
================
@@ -51887,6 +51887,35 @@ static SDValue combineOr(SDNode *N, SelectionDAG &DAG,
}
}
+ if (N0.getOpcode() == ISD::SHL || N1.getOpcode() == ISD::SHL){
+ SDValue SHL = (N0.getOpcode() == ISD::SHL) ? N0 : N1;
+ SDValue OtherOp = (N0.getOpcode() == ISD::SHL) ? N1 : N0;
+
+ if (OtherOp.getOpcode() == ISD::AND) {
----------------
RKSimon wrote:
(style) Fix variable capitalisation: ShiftValue / NumBits / NewShift / NewSHL
https://github.com/llvm/llvm-project/pull/125734
More information about the llvm-commits
mailing list