[llvm] [DAGCombiner] Add generic DAG combine for ISD::PARTIAL_REDUCE_MLA (PR #127083)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 06:13:48 PST 2025


================
@@ -836,9 +836,8 @@ void TargetLoweringBase::initActions() {
     setOperationAction(ISD::SET_FPENV, VT, Expand);
     setOperationAction(ISD::RESET_FPENV, VT, Expand);
 
-    // PartialReduceMLA operations default to expand.
-    setOperationAction({ISD::PARTIAL_REDUCE_UMLA, ISD::PARTIAL_REDUCE_SMLA}, VT,
-                       Expand);
+    for (MVT InputVT : MVT::all_valuetypes())
+      setPartialReduceMLAAction(VT, InputVT, Expand);
----------------
MacDue wrote:

Discussed this a little offline. I think it's okay to remove the  `isPartialReduceMLALegalOrCustom` check, and accept a slight regression (so we can test the DAG combine), given we know we're going to land a fix shortly after with the node lowerings. 

https://github.com/llvm/llvm-project/pull/127083


More information about the llvm-commits mailing list