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

Peter Smith via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 03:31:54 PST 2025


================
@@ -16242,6 +16250,10 @@ static SDValue CombineBaseUpdate(SDNode *N,
   const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1);
   BaseUpdateTarget Target = {N, isIntrinsic, isStore, AddrOpIdx};
 
+  // Limit the number of possible base-updates we look at to prevent degenerate
+  // cases.
+  unsigned MaxBaseUpdates = ArmMaxBaseUpdatesToCheck;
----------------
smithp35 wrote:

Other than acting as a place to put the comment, couldn't we just use ArmMaxBaseUpdatesToCheck inline in the two places it is used?

Don't have a strong opinion on that, happy to keep this.

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


More information about the llvm-commits mailing list