[llvm] [SelectionDAG] Add PARTIAL_REDUCE_U/SMLA ISD Nodes (PR #125207)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 01:23:54 PST 2025
================
@@ -5634,6 +5634,11 @@ class TargetLowering : public TargetLoweringBase {
LoadSDNode *OriginalLoad,
SelectionDAG &DAG) const;
+ // Expands PARTIAL_REDUCE_S/UMLA nodes to a series of simpler operations,
+ // consisting of zext/sext, extract_subvector, mul and add operations.
+ SDValue expandPartialReduceMLA(SDLoc DL, SDValue Acc, SDValue Input1,
+ SDValue Input2, SelectionDAG &DAG) const;
+
----------------
sdesmalen-arm wrote:
nit: this is in the section "Instruction Emitting Hooks", could you move it to the "Legalization utility functions" section instead?
https://github.com/llvm/llvm-project/pull/125207
More information about the llvm-commits
mailing list