[llvm] [ARM] Speedups for CombineBaseUpdate. (PR #129725)

David Green via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 04:56:58 PST 2025


================
@@ -16284,27 +16299,19 @@ static SDValue CombineBaseUpdate(SDNode *N,
       unsigned NewConstInc = UserOffset - Offset;
       SDValue NewInc = DCI.DAG.getConstant(NewConstInc, SDLoc(N), MVT::i32);
       BaseUpdates.push_back({User, NewInc, NewConstInc});
+      if (BaseUpdates.size() > MaxBaseUpdates)
----------------
davemgreen wrote:

I tend to go with > just in case something else adds a use and we skip the exact bound. I've made it >= now for these two.

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


More information about the llvm-commits mailing list