blob: d542cc9969a0ea4eca890d87fb28d8cf0307e60a [file] [log] [blame]
Evan Chengc6fe3332010-03-02 02:38:24 +00001//===-- MachineCSE.cpp - Machine Common Subexpression Elimination Pass ----===//
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 pass performs global common subexpression elimination on machine
Evan Chengc5bbba12010-03-02 19:02:27 +000011// instructions using a scoped hash table based value numbering scheme. It
Evan Chengc6fe3332010-03-02 02:38:24 +000012// must be run while the machine function is still in SSA form.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "machine-cse"
17#include "llvm/CodeGen/Passes.h"
18#include "llvm/CodeGen/MachineDominators.h"
19#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng6ba95542010-03-03 02:48:20 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
21#include "llvm/Target/TargetInstrInfo.h"
Evan Chengc6fe3332010-03-02 02:38:24 +000022#include "llvm/ADT/ScopedHashTable.h"
23#include "llvm/ADT/Statistic.h"
24#include "llvm/Support/Debug.h"
25
26using namespace llvm;
27
Evan Cheng16b48b82010-03-03 21:20:05 +000028STATISTIC(NumCoalesces, "Number of copies coalesced");
29STATISTIC(NumCSEs, "Number of common subexpression eliminated");
30
Evan Chengc6fe3332010-03-02 02:38:24 +000031namespace {
32 class MachineCSE : public MachineFunctionPass {
Evan Cheng6ba95542010-03-03 02:48:20 +000033 const TargetInstrInfo *TII;
34 MachineRegisterInfo *MRI;
Evan Chengc6fe3332010-03-02 02:38:24 +000035 MachineDominatorTree *DT;
36 public:
37 static char ID; // Pass identification
Evan Cheng6ba95542010-03-03 02:48:20 +000038 MachineCSE() : MachineFunctionPass(&ID), CurrVN(0) {}
Evan Chengc6fe3332010-03-02 02:38:24 +000039
40 virtual bool runOnMachineFunction(MachineFunction &MF);
41
42 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
43 AU.setPreservesCFG();
44 MachineFunctionPass::getAnalysisUsage(AU);
45 AU.addRequired<MachineDominatorTree>();
46 AU.addPreserved<MachineDominatorTree>();
47 }
48
49 private:
Evan Cheng16b48b82010-03-03 21:20:05 +000050 unsigned CurrVN;
Evan Cheng05bdcbb2010-03-03 23:27:36 +000051 ScopedHashTable<MachineInstr*, unsigned, MachineInstrExpressionTrait> VNT;
Evan Cheng16b48b82010-03-03 21:20:05 +000052 SmallVector<MachineInstr*, 64> Exps;
53
Evan Cheng6ba95542010-03-03 02:48:20 +000054 bool PerformTrivialCoalescing(MachineInstr *MI, MachineBasicBlock *MBB);
Evan Chengc6fe3332010-03-02 02:38:24 +000055 bool ProcessBlock(MachineDomTreeNode *Node);
56 };
57} // end anonymous namespace
58
59char MachineCSE::ID = 0;
60static RegisterPass<MachineCSE>
61X("machine-cse", "Machine Common Subexpression Elimination");
62
63FunctionPass *llvm::createMachineCSEPass() { return new MachineCSE(); }
64
Evan Cheng6ba95542010-03-03 02:48:20 +000065bool MachineCSE::PerformTrivialCoalescing(MachineInstr *MI,
66 MachineBasicBlock *MBB) {
67 bool Changed = false;
68 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
69 MachineOperand &MO = MI->getOperand(i);
Evan Cheng16b48b82010-03-03 21:20:05 +000070 if (!MO.isReg() || !MO.isUse())
71 continue;
72 unsigned Reg = MO.getReg();
73 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg))
74 continue;
75 if (!MRI->hasOneUse(Reg))
76 // Only coalesce single use copies. This ensure the copy will be
77 // deleted.
78 continue;
79 MachineInstr *DefMI = MRI->getVRegDef(Reg);
80 if (DefMI->getParent() != MBB)
81 continue;
82 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
83 if (TII->isMoveInstr(*DefMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
84 TargetRegisterInfo::isVirtualRegister(SrcReg) &&
85 !SrcSubIdx && !DstSubIdx) {
86 MO.setReg(SrcReg);
87 DefMI->eraseFromParent();
88 ++NumCoalesces;
89 Changed = true;
Evan Cheng6ba95542010-03-03 02:48:20 +000090 }
91 }
92
93 return Changed;
94}
95
96static bool hasLivePhysRegDefUse(MachineInstr *MI) {
97 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
98 MachineOperand &MO = MI->getOperand(i);
99 if (!MO.isReg())
100 continue;
101 unsigned Reg = MO.getReg();
102 if (!Reg)
103 continue;
Evan Cheng16b48b82010-03-03 21:20:05 +0000104 // FIXME: This is obviously overly conservative. On x86 lots of instructions
105 // will def EFLAGS and they are not marked dead at this point.
Evan Cheng6ba95542010-03-03 02:48:20 +0000106 if (TargetRegisterInfo::isPhysicalRegister(Reg) &&
107 !(MO.isDef() && MO.isDead()))
108 return true;
Evan Chengc6fe3332010-03-02 02:38:24 +0000109 }
110 return false;
111}
112
Evan Cheng6ba95542010-03-03 02:48:20 +0000113bool MachineCSE::ProcessBlock(MachineDomTreeNode *Node) {
114 bool Changed = false;
115
Evan Cheng05bdcbb2010-03-03 23:27:36 +0000116 ScopedHashTableScope<MachineInstr*, unsigned,
117 MachineInstrExpressionTrait> VNTS(VNT);
Evan Cheng6ba95542010-03-03 02:48:20 +0000118 MachineBasicBlock *MBB = Node->getBlock();
Evan Cheng16b48b82010-03-03 21:20:05 +0000119 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; ) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000120 MachineInstr *MI = &*I;
Evan Cheng16b48b82010-03-03 21:20:05 +0000121 ++I;
Evan Cheng6ba95542010-03-03 02:48:20 +0000122 bool SawStore = false;
123 if (!MI->isSafeToMove(TII, 0, SawStore))
124 continue;
125 // Ignore copies or instructions that read / write physical registers
126 // (except for dead defs of physical registers).
127 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
Evan Cheng16b48b82010-03-03 21:20:05 +0000128 if (TII->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) ||
129 MI->isExtractSubreg() || MI->isInsertSubreg() || MI->isSubregToReg())
130 continue;
Evan Cheng6ba95542010-03-03 02:48:20 +0000131
132 bool FoundCSE = VNT.count(MI);
133 if (!FoundCSE) {
134 // Look for trivial copy coalescing opportunities.
135 if (PerformTrivialCoalescing(MI, MBB))
136 FoundCSE = VNT.count(MI);
137 }
138
Evan Cheng67bda722010-03-03 23:59:08 +0000139 // If the instruction defines a physical register and the value *may* be
140 // used, then it's not safe to replace it with a common subexpression.
141 if (FoundCSE && hasLivePhysRegDefUse(MI))
142 FoundCSE = false;
143
Evan Cheng16b48b82010-03-03 21:20:05 +0000144 if (!FoundCSE) {
145 VNT.insert(MI, CurrVN++);
146 Exps.push_back(MI);
147 continue;
148 }
149
150 // Found a common subexpression, eliminate it.
151 unsigned CSVN = VNT.lookup(MI);
152 MachineInstr *CSMI = Exps[CSVN];
153 DEBUG(dbgs() << "Examining: " << *MI);
154 DEBUG(dbgs() << "*** Found a common subexpression: " << *CSMI);
155 unsigned NumDefs = MI->getDesc().getNumDefs();
156 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
157 MachineOperand &MO = MI->getOperand(i);
158 if (!MO.isReg() || !MO.isDef())
159 continue;
160 unsigned OldReg = MO.getReg();
161 unsigned NewReg = CSMI->getOperand(i).getReg();
162 assert(OldReg != NewReg &&
163 TargetRegisterInfo::isVirtualRegister(OldReg) &&
164 TargetRegisterInfo::isVirtualRegister(NewReg) &&
165 "Do not CSE physical register defs!");
166 MRI->replaceRegWith(OldReg, NewReg);
167 --NumDefs;
168 }
169 MI->eraseFromParent();
170 ++NumCSEs;
Evan Cheng6ba95542010-03-03 02:48:20 +0000171 }
172
173 // Recursively call ProcessBlock with childred.
174 const std::vector<MachineDomTreeNode*> &Children = Node->getChildren();
175 for (unsigned i = 0, e = Children.size(); i != e; ++i)
176 Changed |= ProcessBlock(Children[i]);
177
178 return Changed;
179}
180
Evan Chengc6fe3332010-03-02 02:38:24 +0000181bool MachineCSE::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng6ba95542010-03-03 02:48:20 +0000182 TII = MF.getTarget().getInstrInfo();
183 MRI = &MF.getRegInfo();
Evan Chengc6fe3332010-03-02 02:38:24 +0000184 DT = &getAnalysis<MachineDominatorTree>();
185 return ProcessBlock(DT->getRootNode());
186}