[llvm] [SelectionDAG][RISCV] Avoid store merging across function calls (PR #130430)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 09:49:20 PDT 2025


================
@@ -1070,6 +1070,13 @@ class RISCVTargetLowering : public TargetLowering {
     return false;
   }
 
+  /// Disables storing and loading vectors by default when there are function
+  /// calls between the load and store, since these are more expensive than just
+  /// using scalars
+  bool shouldMergeStoreOfLoadsOverCall(EVT SrcVT, EVT MergedVT) const override {
+    return SrcVT.isScalarInteger() == MergedVT.isScalarInteger();
----------------
topperc wrote:

What about scalar FP?

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


More information about the llvm-commits mailing list