blob: 881df1e6b6673dd3f1d1041f439805c4d1f54972 [file] [log] [blame]
Dan Gohmand3ead432008-09-17 00:43:24 +00001//===- DeadMachineInstructionElim.cpp - Remove dead machine instructions --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is an extremely simple MachineInstr-level dead-code-elimination pass.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/Passes.h"
15#include "llvm/Pass.h"
16#include "llvm/CodeGen/MachineFunctionPass.h"
17#include "llvm/CodeGen/MachineRegisterInfo.h"
18#include "llvm/Support/Compiler.h"
19#include "llvm/Target/TargetInstrInfo.h"
20#include "llvm/Target/TargetMachine.h"
21using namespace llvm;
22
23namespace {
24 class VISIBILITY_HIDDEN DeadMachineInstructionElim :
25 public MachineFunctionPass {
26 virtual bool runOnMachineFunction(MachineFunction &MF);
27
Dan Gohman3d84a762008-09-24 00:27:38 +000028 const TargetRegisterInfo *TRI;
29 const MachineRegisterInfo *MRI;
30 const TargetInstrInfo *TII;
31 BitVector LivePhysRegs;
32
Dan Gohmand3ead432008-09-17 00:43:24 +000033 public:
34 static char ID; // Pass identification, replacement for typeid
35 DeadMachineInstructionElim() : MachineFunctionPass(&ID) {}
Dan Gohman3d84a762008-09-24 00:27:38 +000036
37 private:
38 bool isDead(MachineInstr *MI) const;
Dan Gohmand3ead432008-09-17 00:43:24 +000039 };
40}
41char DeadMachineInstructionElim::ID = 0;
42
43static RegisterPass<DeadMachineInstructionElim>
44Y("dead-mi-elimination",
45 "Remove dead machine instructions");
46
47FunctionPass *llvm::createDeadMachineInstructionElimPass() {
48 return new DeadMachineInstructionElim();
49}
50
Dan Gohman3d84a762008-09-24 00:27:38 +000051bool DeadMachineInstructionElim::isDead(MachineInstr *MI) const {
52 // Don't delete instructions with side effects.
53 bool SawStore = false;
54 if (!MI->isSafeToMove(TII, SawStore))
55 return false;
56
57 // Examine each operand.
58 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
59 const MachineOperand &MO = MI->getOperand(i);
60 if (MO.isRegister() && MO.isDef()) {
61 unsigned Reg = MO.getReg();
62 if (TargetRegisterInfo::isPhysicalRegister(Reg) ?
63 LivePhysRegs[Reg] : !MRI->use_empty(Reg)) {
64 // This def has a use. Don't delete the instruction!
65 return false;
66 }
67 }
68 }
69
70 // If there are no defs with uses, the instruction is dead.
71 return true;
72}
73
Dan Gohmand3ead432008-09-17 00:43:24 +000074bool DeadMachineInstructionElim::runOnMachineFunction(MachineFunction &MF) {
75 bool AnyChanges = false;
Dan Gohman3d84a762008-09-24 00:27:38 +000076 MRI = &MF.getRegInfo();
77 TRI = MF.getTarget().getRegisterInfo();
78 TII = MF.getTarget().getInstrInfo();
Dan Gohmand3ead432008-09-17 00:43:24 +000079
Dan Gohman8468d1a2008-09-23 21:40:44 +000080 // Compute a bitvector to represent all non-allocatable physregs.
Dan Gohman3d84a762008-09-24 00:27:38 +000081 BitVector NonAllocatableRegs = TRI->getAllocatableSet(MF);
Dan Gohman8468d1a2008-09-23 21:40:44 +000082 NonAllocatableRegs.flip();
83
Dan Gohmand3ead432008-09-17 00:43:24 +000084 // Loop over all instructions in all blocks, from bottom to top, so that it's
85 // more likely that chains of dependent but ultimately dead instructions will
86 // be cleaned up.
87 for (MachineFunction::reverse_iterator I = MF.rbegin(), E = MF.rend();
88 I != E; ++I) {
89 MachineBasicBlock *MBB = &*I;
Dan Gohman8468d1a2008-09-23 21:40:44 +000090
91 // Start out assuming that all non-allocatable registers are live
92 // out of this block.
93 LivePhysRegs = NonAllocatableRegs;
94
95 // Also add any explicit live-out physregs for this block.
96 if (!MBB->empty() && MBB->back().getDesc().isReturn())
Dan Gohman3d84a762008-09-24 00:27:38 +000097 for (MachineRegisterInfo::liveout_iterator LOI = MRI->liveout_begin(),
98 LOE = MRI->liveout_end(); LOI != LOE; ++LOI) {
Dan Gohman8468d1a2008-09-23 21:40:44 +000099 unsigned Reg = *LOI;
100 if (TargetRegisterInfo::isPhysicalRegister(Reg))
101 LivePhysRegs.set(Reg);
102 }
103
104 // Now scan the instructions and delete dead ones, tracking physreg
105 // liveness as we go.
Dan Gohmand3ead432008-09-17 00:43:24 +0000106 for (MachineBasicBlock::reverse_iterator MII = MBB->rbegin(),
107 MIE = MBB->rend(); MII != MIE; ) {
108 MachineInstr *MI = &*MII;
109
Dan Gohman3d84a762008-09-24 00:27:38 +0000110 // If the instruction is dead, delete it!
111 if (isDead(MI)) {
112 AnyChanges = true;
113 MI->eraseFromParent();
114 MIE = MBB->rend();
115 // MII is now pointing to the next instruction to process,
116 // so don't increment it.
117 continue;
Dan Gohmand3ead432008-09-17 00:43:24 +0000118 }
Dan Gohman8468d1a2008-09-23 21:40:44 +0000119
120 // Record the physreg defs.
121 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
122 const MachineOperand &MO = MI->getOperand(i);
123 if (MO.isRegister() && MO.isDef()) {
124 unsigned Reg = MO.getReg();
125 if (Reg != 0 && TargetRegisterInfo::isPhysicalRegister(Reg)) {
126 LivePhysRegs.reset(Reg);
Dan Gohman3d84a762008-09-24 00:27:38 +0000127 for (const unsigned *AliasSet = TRI->getAliasSet(Reg);
Dan Gohman8468d1a2008-09-23 21:40:44 +0000128 *AliasSet; ++AliasSet)
129 LivePhysRegs.reset(*AliasSet);
130 }
131 }
132 }
133 // Record the physreg uses, after the defs, in case a physreg is
134 // both defined and used in the same instruction.
135 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
136 const MachineOperand &MO = MI->getOperand(i);
137 if (MO.isRegister() && MO.isUse()) {
138 unsigned Reg = MO.getReg();
139 if (Reg != 0 && TargetRegisterInfo::isPhysicalRegister(Reg)) {
140 LivePhysRegs.set(Reg);
Dan Gohman3d84a762008-09-24 00:27:38 +0000141 for (const unsigned *AliasSet = TRI->getAliasSet(Reg);
Dan Gohman8468d1a2008-09-23 21:40:44 +0000142 *AliasSet; ++AliasSet)
143 LivePhysRegs.set(*AliasSet);
144 }
145 }
146 }
147
Dan Gohmand3ead432008-09-17 00:43:24 +0000148 // We didn't delete the current instruction, so increment MII to
149 // the next one.
150 ++MII;
151 }
152 }
153
Dan Gohman3d84a762008-09-24 00:27:38 +0000154 LivePhysRegs.clear();
Dan Gohmand3ead432008-09-17 00:43:24 +0000155 return AnyChanges;
156}