[llvm] [WebAssembly] Add more lowerings for wide-arithmetic (PR #132430)
Alex Crichton via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 07:39:46 PDT 2025
================
@@ -1794,10 +1809,33 @@ SDValue WebAssemblyTargetLowering::LowerMUL_LOHI(SDValue Op,
}
SDValue LHS = Op.getOperand(0);
SDValue RHS = Op.getOperand(1);
- SDValue Hi =
+ SDValue Lo =
DAG.getNode(Opcode, DL, DAG.getVTList(MVT::i64, MVT::i64), LHS, RHS);
- SDValue Lo(Hi.getNode(), 1);
- SDValue Ops[] = {Hi, Lo};
+ SDValue Hi(Lo.getNode(), 1);
+ SDValue Ops[] = {Lo, Hi};
+ return DAG.getMergeValues(Ops, DL);
+}
+
+// Lowers `UADDO` intrinsics to an `i64.add128` instruction when it's enabled.
+//
+// This enables generating a single wasm instruction for this operation where
+// the upper bits of both operands are constant zeros. The upper bits of the
----------------
alexcrichton wrote:
Good point! I've updated the comment here
https://github.com/llvm/llvm-project/pull/132430
More information about the llvm-commits
mailing list