[llvm] [CodeGen][NPM] Port MachineBlockPlacement to NPM (PR #129828)

Akshat Oke via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 00:48:07 PST 2025


================
@@ -608,18 +613,48 @@ class MachineBlockPlacement : public MachineFunctionPass {
   /// Create a single CFG chain from the current block order.
   void createCFGChainExtTsp();
 
+public:
+  MachineBlockPlacement(const MachineBranchProbabilityInfo *MBPI,
+                        MachineLoopInfo *MLI, ProfileSummaryInfo *PSI,
+                        std::unique_ptr<MBFIWrapper> MBFI,
+                        MachinePostDominatorTree *MPDT, bool AllowTailMerge)
+      : MBPI(MBPI), MBFI(std::move(MBFI)), MLI(MLI), MPDT(MPDT), PSI(PSI),
+        AllowTailMerge(AllowTailMerge) {};
+
+  bool run(MachineFunction &F);
+
+  static bool allowTailDupPlacement(MachineFunction &MF) {
+    return TailDupPlacement && !MF.getTarget().requiresStructuredCFG();
----------------
optimisan wrote:

Same check is done for EnableTailMerge also.

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


More information about the llvm-commits mailing list