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

Philip Reames via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 12:46:38 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 VT) const override {
----------------
preames wrote:

Once you update the signature, the return should be "SrcVT.isScalarInteger() == MergedVT.isScalarInteger();"

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


More information about the llvm-commits mailing list