[llvm] [CodeGen][NPM] Port MachineBlockPlacementStats to NPM (PR #129853)

Akshat Oke via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 03:05:26 PDT 2025


================
@@ -30,6 +30,15 @@ class MachineBlockPlacementPass
                 function_ref<StringRef(StringRef)> MapClassName2PassName) const;
 };
 
+class MachineBlockPlacementStatsPass
+    : public PassInfoMixin<MachineBlockPlacementStatsPass> {
+
+public:
+  PreservedAnalyses run(MachineFunction &MF,
+                        MachineFunctionAnalysisManager &MFAM);
+  static bool isRequired() { return true; }
----------------
optimisan wrote:

The pass instrumentation checks for `isFunctionInPrintList` but it is independent of the Statistic object.
optnone is also separate from `isFunctionInPrintList`, so I think this should be not skipped

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


More information about the llvm-commits mailing list