blob: 6e01e59349e694cd4f2a2e6adabd262b3d22c351 [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
Evan Cheng00a99a32010-02-06 09:07:11 +000014#define DEBUG_TYPE "codegen-dce"
Dan Gohmand3ead432008-09-17 00:43:24 +000015#include "llvm/CodeGen/Passes.h"
16#include "llvm/Pass.h"
17#include "llvm/CodeGen/MachineFunctionPass.h"
18#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman723ac372008-09-25 01:06:50 +000019#include "llvm/Support/Debug.h"
Bill Wendling9311a222009-08-22 20:04:03 +000020#include "llvm/Support/raw_ostream.h"
Dan Gohmand3ead432008-09-17 00:43:24 +000021#include "llvm/Target/TargetInstrInfo.h"
22#include "llvm/Target/TargetMachine.h"
Evan Cheng00a99a32010-02-06 09:07:11 +000023#include "llvm/ADT/Statistic.h"
Dan Gohmand3ead432008-09-17 00:43:24 +000024using namespace llvm;
25
Evan Cheng00a99a32010-02-06 09:07:11 +000026STATISTIC(NumDeletes, "Number of dead instructions deleted");
27
Dan Gohmand3ead432008-09-17 00:43:24 +000028namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000029 class DeadMachineInstructionElim : public MachineFunctionPass {
Dan Gohmand3ead432008-09-17 00:43:24 +000030 virtual bool runOnMachineFunction(MachineFunction &MF);
31
Dan Gohman3d84a762008-09-24 00:27:38 +000032 const TargetRegisterInfo *TRI;
33 const MachineRegisterInfo *MRI;
34 const TargetInstrInfo *TII;
35 BitVector LivePhysRegs;
36
Dan Gohmand3ead432008-09-17 00:43:24 +000037 public:
38 static char ID; // Pass identification, replacement for typeid
39 DeadMachineInstructionElim() : MachineFunctionPass(&ID) {}
Dan Gohman3d84a762008-09-24 00:27:38 +000040
41 private:
Dan Gohmand443ee62009-08-11 15:13:43 +000042 bool isDead(const MachineInstr *MI) const;
Dan Gohmand3ead432008-09-17 00:43:24 +000043 };
44}
45char DeadMachineInstructionElim::ID = 0;
46
47static RegisterPass<DeadMachineInstructionElim>
48Y("dead-mi-elimination",
49 "Remove dead machine instructions");
50
51FunctionPass *llvm::createDeadMachineInstructionElimPass() {
52 return new DeadMachineInstructionElim();
53}
54
Dan Gohmand443ee62009-08-11 15:13:43 +000055bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const {
Dan Gohman3d84a762008-09-24 00:27:38 +000056 // Don't delete instructions with side effects.
57 bool SawStore = false;
Bob Wilson5e2b05a2010-02-10 22:58:57 +000058 if (!MI->isSafeToMove(TII, SawStore, 0) && !MI->isPHI())
Dan Gohman3d84a762008-09-24 00:27:38 +000059 return false;
60
61 // Examine each operand.
62 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
63 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +000064 if (MO.isReg() && MO.isDef()) {
Dan Gohman3d84a762008-09-24 00:27:38 +000065 unsigned Reg = MO.getReg();
66 if (TargetRegisterInfo::isPhysicalRegister(Reg) ?
67 LivePhysRegs[Reg] : !MRI->use_empty(Reg)) {
68 // This def has a use. Don't delete the instruction!
69 return false;
70 }
71 }
72 }
73
74 // If there are no defs with uses, the instruction is dead.
75 return true;
76}
77
Dan Gohmand3ead432008-09-17 00:43:24 +000078bool DeadMachineInstructionElim::runOnMachineFunction(MachineFunction &MF) {
79 bool AnyChanges = false;
Dan Gohman3d84a762008-09-24 00:27:38 +000080 MRI = &MF.getRegInfo();
81 TRI = MF.getTarget().getRegisterInfo();
82 TII = MF.getTarget().getInstrInfo();
Dan Gohmand3ead432008-09-17 00:43:24 +000083
Dan Gohman8468d1a2008-09-23 21:40:44 +000084 // Compute a bitvector to represent all non-allocatable physregs.
Dan Gohman3d84a762008-09-24 00:27:38 +000085 BitVector NonAllocatableRegs = TRI->getAllocatableSet(MF);
Dan Gohman8468d1a2008-09-23 21:40:44 +000086 NonAllocatableRegs.flip();
87
Dan Gohmand3ead432008-09-17 00:43:24 +000088 // Loop over all instructions in all blocks, from bottom to top, so that it's
89 // more likely that chains of dependent but ultimately dead instructions will
90 // be cleaned up.
91 for (MachineFunction::reverse_iterator I = MF.rbegin(), E = MF.rend();
92 I != E; ++I) {
93 MachineBasicBlock *MBB = &*I;
Dan Gohman8468d1a2008-09-23 21:40:44 +000094
95 // Start out assuming that all non-allocatable registers are live
96 // out of this block.
97 LivePhysRegs = NonAllocatableRegs;
98
99 // Also add any explicit live-out physregs for this block.
100 if (!MBB->empty() && MBB->back().getDesc().isReturn())
Dan Gohman3d84a762008-09-24 00:27:38 +0000101 for (MachineRegisterInfo::liveout_iterator LOI = MRI->liveout_begin(),
102 LOE = MRI->liveout_end(); LOI != LOE; ++LOI) {
Dan Gohman8468d1a2008-09-23 21:40:44 +0000103 unsigned Reg = *LOI;
104 if (TargetRegisterInfo::isPhysicalRegister(Reg))
105 LivePhysRegs.set(Reg);
106 }
107
108 // Now scan the instructions and delete dead ones, tracking physreg
109 // liveness as we go.
Dan Gohmand3ead432008-09-17 00:43:24 +0000110 for (MachineBasicBlock::reverse_iterator MII = MBB->rbegin(),
111 MIE = MBB->rend(); MII != MIE; ) {
112 MachineInstr *MI = &*MII;
113
Chris Lattner518bb532010-02-09 19:54:29 +0000114 if (MI->isDebugValue()) {
Dale Johannesen3b1906f2010-02-10 00:44:23 +0000115 // Don't delete the DBG_VALUE itself, but if its Value operand is
Dale Johannesen9514fcb2010-01-27 22:12:36 +0000116 // a vreg and this is the only use, substitute an undef operand;
117 // the former operand will then be deleted normally.
118 if (MI->getNumOperands()==3 && MI->getOperand(0).isReg()) {
119 unsigned Reg = MI->getOperand(0).getReg();
120 MachineRegisterInfo::use_iterator I = MRI->use_begin(Reg);
121 assert(I != MRI->use_end());
122 if (++I == MRI->use_end())
Dale Johannesen3b1906f2010-02-10 00:44:23 +0000123 // only one use, which must be this DBG_VALUE.
Dale Johannesen9514fcb2010-01-27 22:12:36 +0000124 MI->getOperand(0).setReg(0U);
125 }
126 }
127
Dan Gohman3d84a762008-09-24 00:27:38 +0000128 // If the instruction is dead, delete it!
129 if (isDead(MI)) {
David Greene26045e22010-01-04 19:10:20 +0000130 DEBUG(dbgs() << "DeadMachineInstructionElim: DELETING: " << *MI);
Dan Gohman3d84a762008-09-24 00:27:38 +0000131 AnyChanges = true;
132 MI->eraseFromParent();
Evan Cheng00a99a32010-02-06 09:07:11 +0000133 ++NumDeletes;
Dan Gohman3d84a762008-09-24 00:27:38 +0000134 MIE = MBB->rend();
135 // MII is now pointing to the next instruction to process,
136 // so don't increment it.
137 continue;
Dan Gohmand3ead432008-09-17 00:43:24 +0000138 }
Dan Gohman8468d1a2008-09-23 21:40:44 +0000139
140 // Record the physreg defs.
141 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
142 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000143 if (MO.isReg() && MO.isDef()) {
Dan Gohman8468d1a2008-09-23 21:40:44 +0000144 unsigned Reg = MO.getReg();
145 if (Reg != 0 && TargetRegisterInfo::isPhysicalRegister(Reg)) {
146 LivePhysRegs.reset(Reg);
Dan Gohmanb382c4d2008-10-16 00:11:23 +0000147 // Check the subreg set, not the alias set, because a def
148 // of a super-register may still be partially live after
149 // this def.
Dan Gohman131161b2008-10-16 01:06:18 +0000150 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
151 *SubRegs; ++SubRegs)
152 LivePhysRegs.reset(*SubRegs);
Dan Gohman8468d1a2008-09-23 21:40:44 +0000153 }
154 }
155 }
156 // Record the physreg uses, after the defs, in case a physreg is
157 // both defined and used in the same instruction.
158 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
159 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000160 if (MO.isReg() && MO.isUse()) {
Dan Gohman8468d1a2008-09-23 21:40:44 +0000161 unsigned Reg = MO.getReg();
162 if (Reg != 0 && TargetRegisterInfo::isPhysicalRegister(Reg)) {
163 LivePhysRegs.set(Reg);
Dan Gohman3d84a762008-09-24 00:27:38 +0000164 for (const unsigned *AliasSet = TRI->getAliasSet(Reg);
Dan Gohman8468d1a2008-09-23 21:40:44 +0000165 *AliasSet; ++AliasSet)
166 LivePhysRegs.set(*AliasSet);
167 }
168 }
169 }
170
Dan Gohmand3ead432008-09-17 00:43:24 +0000171 // We didn't delete the current instruction, so increment MII to
172 // the next one.
173 ++MII;
174 }
175 }
176
Dan Gohman3d84a762008-09-24 00:27:38 +0000177 LivePhysRegs.clear();
Dan Gohmand3ead432008-09-17 00:43:24 +0000178 return AnyChanges;
179}