[llvm] [GlobalISel][AArch64] AArch64O0PreLegalizerCombiner: Disable fixed-point iteration (PR #94291)

Tobias Stadler via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 6 13:10:22 PDT 2024


================
@@ -27,6 +28,12 @@
 
 using namespace llvm;
 
+STATISTIC(NumOneIteration, "Number of functions with one iteration");
+STATISTIC(NumTwoIterations, "Number of functions with two iterations");
+STATISTIC(NumThreeIterations, "Number of functions with three iterations");
+STATISTIC(NumFourOrMoreIterations,
+          "Number of functions with four or more iterations");
----------------
tobias-stadler wrote:

One, Two and Three are hit in CTMark. I have removed Four.

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


More information about the llvm-commits mailing list