[llvm] [CodeGen][NPM] Port MachineBlockPlacement to NPM (PR #129828)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 22:09:37 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();
----------------
arsenm wrote:
Not this patch's fault, but this really shouldn't be checking the target here
https://github.com/llvm/llvm-project/pull/129828
More information about the llvm-commits
mailing list