1 //===-- GCEmptyBasicBlocks.cpp ----------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// This file contains the implementation of empty blocks garbage collection
13 //===----------------------------------------------------------------------===//
14 #include "llvm/ADT/SmallVector.h"
15 #include "llvm/ADT/Statistic.h"
16 #include "llvm/CodeGen/MachineBasicBlock.h"
17 #include "llvm/CodeGen/MachineFunction.h"
18 #include "llvm/CodeGen/MachineFunctionPass.h"
19 #include "llvm/CodeGen/MachineJumpTableInfo.h"
20 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/InitializePasses.h"
25 #define DEBUG_TYPE "gc-empty-basic-blocks"
27 STATISTIC(NumEmptyBlocksRemoved
, "Number of empty blocks removed");
29 class GCEmptyBasicBlocks
: public MachineFunctionPass
{
33 GCEmptyBasicBlocks() : MachineFunctionPass(ID
) {
34 initializeGCEmptyBasicBlocksPass(*PassRegistry::getPassRegistry());
37 StringRef
getPassName() const override
{
38 return "Remove Empty Basic Blocks.";
41 bool runOnMachineFunction(MachineFunction
&MF
) override
;
44 bool GCEmptyBasicBlocks::runOnMachineFunction(MachineFunction
&MF
) {
47 MachineJumpTableInfo
*JTI
= MF
.getJumpTableInfo();
50 // Iterate over all blocks except the last one. We can't remove the last block
51 // since it has no fallthrough block to rewire its predecessors to.
52 for (MachineFunction::iterator MBB
= MF
.begin(),
53 LastMBB
= MachineFunction::iterator(MF
.back()),
55 MBB
!= LastMBB
; MBB
= NextMBB
) {
56 NextMBB
= std::next(MBB
);
57 // TODO If a block is an eh pad, or it has address taken, we don't remove
58 // it. Removing such blocks is possible, but it probably requires a more
60 if (MBB
->isEHPad() || MBB
->hasAddressTaken())
62 // Skip blocks with real code.
63 bool HasAnyRealCode
= llvm::any_of(*MBB
, [](const MachineInstr
&MI
) {
64 return !MI
.isPosition() && !MI
.isImplicitDef() && !MI
.isKill() &&
70 LLVM_DEBUG(dbgs() << "Removing basic block " << MBB
->getName()
71 << " in function " << MF
.getName() << ":\n"
73 SmallVector
<MachineBasicBlock
*, 8> Preds(MBB
->predecessors());
74 // Rewire the predecessors of this block to use the next block.
75 for (auto &Pred
: Preds
)
76 Pred
->ReplaceUsesOfBlockWith(&*MBB
, &*NextMBB
);
77 // Update the jump tables.
79 JTI
->ReplaceMBBInJumpTables(&*MBB
, &*NextMBB
);
80 // Remove this block from predecessors of all its successors.
81 while (!MBB
->succ_empty())
82 MBB
->removeSuccessor(MBB
->succ_end() - 1);
83 // Finally, remove the block from the function.
84 MBB
->eraseFromParent();
87 NumEmptyBlocksRemoved
+= NumRemoved
;
88 return NumRemoved
!= 0;
91 char GCEmptyBasicBlocks::ID
= 0;
92 INITIALIZE_PASS(GCEmptyBasicBlocks
, "gc-empty-basic-blocks",
93 "Removes empty basic blocks and redirects their uses to their "
94 "fallthrough blocks.",
97 MachineFunctionPass
*llvm::createGCEmptyBasicBlocksPass() {
98 return new GCEmptyBasicBlocks();