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

Akshat Oke via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 16 23:22:38 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:

This keeps it consistent with the legacy pass not skipping optnone functions

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


More information about the llvm-commits mailing list