LLVM  8.0.1
DeadMachineInstructionElim.cpp
Go to the documentation of this file.
1 //===- 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/ADT/Statistic.h"
17 #include "llvm/CodeGen/Passes.h"
19 #include "llvm/Pass.h"
20 #include "llvm/Support/Debug.h"
22 
23 using namespace llvm;
24 
25 #define DEBUG_TYPE "dead-mi-elimination"
26 
27 STATISTIC(NumDeletes, "Number of dead instructions deleted");
28 
29 namespace {
30  class DeadMachineInstructionElim : public MachineFunctionPass {
31  bool runOnMachineFunction(MachineFunction &MF) override;
32 
33  const TargetRegisterInfo *TRI;
34  const MachineRegisterInfo *MRI;
35  const TargetInstrInfo *TII;
37 
38  public:
39  static char ID; // Pass identification, replacement for typeid
40  DeadMachineInstructionElim() : MachineFunctionPass(ID) {
42  }
43 
44  void getAnalysisUsage(AnalysisUsage &AU) const override {
45  AU.setPreservesCFG();
47  }
48 
49  private:
50  bool isDead(const MachineInstr *MI) const;
51  };
52 }
55 
56 INITIALIZE_PASS(DeadMachineInstructionElim, DEBUG_TYPE,
57  "Remove dead machine instructions", false, false)
58 
59 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const {
60  // Technically speaking inline asm without side effects and no defs can still
61  // be deleted. But there is so much bad inline asm code out there, we should
62  // let them be.
63  if (MI->isInlineAsm())
64  return false;
65 
66  // Don't delete frame allocation labels.
67  if (MI->getOpcode() == TargetOpcode::LOCAL_ESCAPE)
68  return false;
69 
70  // Don't delete instructions with side effects.
71  bool SawStore = false;
72  if (!MI->isSafeToMove(nullptr, SawStore) && !MI->isPHI())
73  return false;
74 
75  // Examine each operand.
76  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
77  const MachineOperand &MO = MI->getOperand(i);
78  if (MO.isReg() && MO.isDef()) {
79  unsigned Reg = MO.getReg();
81  // Don't delete live physreg defs, or any reserved register defs.
82  if (LivePhysRegs.test(Reg) || MRI->isReserved(Reg))
83  return false;
84  } else {
85  if (!MRI->use_nodbg_empty(Reg))
86  // This def has a non-debug use. Don't delete the instruction!
87  return false;
88  }
89  }
90  }
91 
92  // If there are no defs with uses, the instruction is dead.
93  return true;
94 }
95 
96 bool DeadMachineInstructionElim::runOnMachineFunction(MachineFunction &MF) {
97  if (skipFunction(MF.getFunction()))
98  return false;
99 
100  bool AnyChanges = false;
101  MRI = &MF.getRegInfo();
102  TRI = MF.getSubtarget().getRegisterInfo();
103  TII = MF.getSubtarget().getInstrInfo();
104 
105  // Loop over all instructions in all blocks, from bottom to top, so that it's
106  // more likely that chains of dependent but ultimately dead instructions will
107  // be cleaned up.
108  for (MachineBasicBlock &MBB : make_range(MF.rbegin(), MF.rend())) {
109  // Start out assuming that reserved registers are live out of this block.
110  LivePhysRegs = MRI->getReservedRegs();
111 
112  // Add live-ins from successors to LivePhysRegs. Normally, physregs are not
113  // live across blocks, but some targets (x86) can have flags live out of a
114  // block.
115  for (MachineBasicBlock::succ_iterator S = MBB.succ_begin(),
116  E = MBB.succ_end(); S != E; S++)
117  for (const auto &LI : (*S)->liveins())
118  LivePhysRegs.set(LI.PhysReg);
119 
120  // Now scan the instructions and delete dead ones, tracking physreg
121  // liveness as we go.
122  for (MachineBasicBlock::reverse_iterator MII = MBB.rbegin(),
123  MIE = MBB.rend(); MII != MIE; ) {
124  MachineInstr *MI = &*MII++;
125 
126  // If the instruction is dead, delete it!
127  if (isDead(MI)) {
128  LLVM_DEBUG(dbgs() << "DeadMachineInstructionElim: DELETING: " << *MI);
129  // It is possible that some DBG_VALUE instructions refer to this
130  // instruction. They get marked as undef and will be deleted
131  // in the live debug variable analysis.
133  AnyChanges = true;
134  ++NumDeletes;
135  continue;
136  }
137 
138  // Record the physreg defs.
139  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
140  const MachineOperand &MO = MI->getOperand(i);
141  if (MO.isReg() && MO.isDef()) {
142  unsigned Reg = MO.getReg();
144  // Check the subreg set, not the alias set, because a def
145  // of a super-register may still be partially live after
146  // this def.
147  for (MCSubRegIterator SR(Reg, TRI,/*IncludeSelf=*/true);
148  SR.isValid(); ++SR)
149  LivePhysRegs.reset(*SR);
150  }
151  } else if (MO.isRegMask()) {
152  // Register mask of preserved registers. All clobbers are dead.
153  LivePhysRegs.clearBitsNotInMask(MO.getRegMask());
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);
160  if (MO.isReg() && MO.isUse()) {
161  unsigned Reg = MO.getReg();
163  for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
164  LivePhysRegs.set(*AI);
165  }
166  }
167  }
168  }
169  }
170 
171  LivePhysRegs.clear();
172  return AnyChanges;
173 }
bool isRegMask() const
isRegMask - Tests if this is a MO_RegisterMask operand.
BitVector & set()
Definition: BitVector.h:398
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
bool use_nodbg_empty(unsigned RegNo) const
use_nodbg_empty - Return true if there are no non-Debug instructions using the specified register...
This class represents lattice values for constants.
Definition: AllocatorList.h:24
virtual const TargetRegisterInfo * getRegisterInfo() const
getRegisterInfo - If register information is available, return it.
unsigned getReg() const
getReg - Returns the register number.
unsigned Reg
bool test(unsigned Idx) const
Definition: BitVector.h:502
STATISTIC(NumFunctions, "Total number of functions")
unsigned const TargetRegisterInfo * TRI
#define DEBUG_TYPE
void clear()
clear - Removes all bits from the bitvector. Does not change capacity.
Definition: BitVector.h:367
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
const HexagonInstrInfo * TII
unsigned getNumOperands() const
Retuns the total number of operands.
Definition: MachineInstr.h:412
MachineBasicBlock iterator that automatically skips over MIs that are inside bundles (i...
void eraseFromParentAndMarkDBGValuesForRemoval()
Unlink &#39;this&#39; from the containing basic block and delete it.
char & DeadMachineInstructionElimID
DeadMachineInstructionElim - This pass removes dead machine instructions.
virtual const TargetInstrInfo * getInstrInfo() const
TargetInstrInfo - Interface to description of machine instruction set.
void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
clearBitsNotInMask - Clear a bit in this vector for every &#39;0&#39; bit in Mask.
Definition: BitVector.h:794
unsigned const MachineRegisterInfo * MRI
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
void initializeDeadMachineInstructionElimPass(PassRegistry &)
MCRegAliasIterator enumerates all registers aliasing Reg.
Represent the analysis usage information of a pass.
BitVector & reset()
Definition: BitVector.h:439
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
MCSubRegIterator enumerates all sub-registers of Reg.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
MachineOperand class - Representation of each machine instruction operand.
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:286
const Function & getFunction() const
Return the LLVM function that this machine code represents.
reverse_iterator rend()
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
const uint32_t * getRegMask() const
getRegMask - Returns a bit mask of registers preserved by this RegMask operand.
bool isValid() const
isValid - returns true if this iterator is not yet at the end.
const BitVector & getReservedRegs() const
getReservedRegs - Returns a reference to the frozen set of reserved registers.
MachineRegisterInfo - Keep track of information for virtual and physical registers, including vreg register classes, use/def chains for registers, etc.
Representation of each machine instruction.
Definition: MachineInstr.h:64
static bool isPhysicalRegister(unsigned Reg)
Return true if the specified register number is in the physical register namespace.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
A set of physical registers with utility functions to track liveness when walking backward/forward th...
Definition: LivePhysRegs.h:49
bool isReg() const
isReg - Tests if this is a MO_Register operand.
aarch64 promote const
IRTranslator LLVM IR MI
#define LLVM_DEBUG(X)
Definition: Debug.h:123
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:414
reverse_iterator rbegin()
std::vector< MachineBasicBlock * >::iterator succ_iterator
INITIALIZE_PASS(DeadMachineInstructionElim, DEBUG_TYPE, "Remove dead machine instructions", false, false) bool DeadMachineInstructionElim
bool isReserved(unsigned PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.