[PATCH] D149251: [SCEV] Replace NumTripCountsComputed stat with NumExitCountsComputed

Nikita Popov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 3 00:45:57 PDT 2023


nikic added inline comments.


================
Comment at: llvm/lib/Analysis/ScalarEvolution.cpp:8687
       ExitCounts.emplace_back(ExitBB, EL);
-    else
+      ++NumExitCountsComputed;
+    }
----------------
Should we count SymbolicMax or Exact as a "computed" exit count? The previous code was using the exact BECount.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149251/new/

https://reviews.llvm.org/D149251



More information about the llvm-commits mailing list