blob: 3d5ee9fb3ceb60a8c74895206f0016c86886b78d [file] [log] [blame]
Owen Anderson0bda0e82007-10-31 03:37:57 +00001//===- StrongPhiElimination.cpp - Eliminate PHI nodes by inserting copies -===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Owen Anderson and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass eliminates machine instruction PHI nodes by inserting copy
11// instructions, using an intelligent copy-folding technique based on
12// dominator information. This is technique is derived from:
13//
14// Budimlic, et al. Fast copy coalescing and live-range identification.
15// In Proceedings of the ACM SIGPLAN 2002 Conference on Programming Language
16// Design and Implementation (Berlin, Germany, June 17 - 19, 2002).
17// PLDI '02. ACM, New York, NY, 25-32.
18// DOI= http://doi.acm.org/10.1145/512529.512534
19//
20//===----------------------------------------------------------------------===//
21
22#define DEBUG_TYPE "strongphielim"
23#include "llvm/CodeGen/Passes.h"
Owen Andersonfe0c8822007-11-12 01:05:09 +000024#include "llvm/CodeGen/BreakCriticalMachineEdge.h"
Owen Anderson83430bc2007-11-04 22:33:26 +000025#include "llvm/CodeGen/LiveVariables.h"
Owen Anderson0bda0e82007-10-31 03:37:57 +000026#include "llvm/CodeGen/MachineDominators.h"
27#include "llvm/CodeGen/MachineFunctionPass.h"
28#include "llvm/CodeGen/MachineInstr.h"
29#include "llvm/Target/TargetInstrInfo.h"
30#include "llvm/Target/TargetMachine.h"
31#include "llvm/ADT/Statistic.h"
32#include "llvm/Support/Compiler.h"
33using namespace llvm;
34
35
36namespace {
37 struct VISIBILITY_HIDDEN StrongPHIElimination : public MachineFunctionPass {
38 static char ID; // Pass identification, replacement for typeid
39 StrongPHIElimination() : MachineFunctionPass((intptr_t)&ID) {}
40
Owen Andersona4ad2e72007-11-06 04:49:43 +000041 bool runOnMachineFunction(MachineFunction &Fn);
42
Owen Anderson0bda0e82007-10-31 03:37:57 +000043 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson83430bc2007-11-04 22:33:26 +000044 AU.addPreserved<LiveVariables>();
45 AU.addPreservedID(PHIEliminationID);
Owen Anderson0bda0e82007-10-31 03:37:57 +000046 AU.addRequired<MachineDominatorTree>();
Owen Andersona4ad2e72007-11-06 04:49:43 +000047 AU.addRequired<LiveVariables>();
48 AU.setPreservesAll();
Owen Anderson0bda0e82007-10-31 03:37:57 +000049 MachineFunctionPass::getAnalysisUsage(AU);
50 }
51
52 virtual void releaseMemory() {
53 preorder.clear();
54 maxpreorder.clear();
Owen Andersona4ad2e72007-11-06 04:49:43 +000055
56 waiting.clear();
Owen Anderson0bda0e82007-10-31 03:37:57 +000057 }
58
59 private:
Owen Anderson83430bc2007-11-04 22:33:26 +000060 struct DomForestNode {
61 private:
62 std::vector<DomForestNode*> children;
Owen Andersonee49b532007-11-06 05:22:43 +000063 unsigned reg;
Owen Anderson83430bc2007-11-04 22:33:26 +000064
65 void addChild(DomForestNode* DFN) { children.push_back(DFN); }
66
67 public:
68 typedef std::vector<DomForestNode*>::iterator iterator;
69
Owen Andersonee49b532007-11-06 05:22:43 +000070 DomForestNode(unsigned r, DomForestNode* parent) : reg(r) {
Owen Anderson83430bc2007-11-04 22:33:26 +000071 if (parent)
72 parent->addChild(this);
73 }
74
Owen Andersona4ad2e72007-11-06 04:49:43 +000075 ~DomForestNode() {
76 for (iterator I = begin(), E = end(); I != E; ++I)
77 delete *I;
78 }
Owen Anderson83430bc2007-11-04 22:33:26 +000079
Owen Andersonee49b532007-11-06 05:22:43 +000080 inline unsigned getReg() { return reg; }
Owen Andersona4ad2e72007-11-06 04:49:43 +000081
82 inline DomForestNode::iterator begin() { return children.begin(); }
83 inline DomForestNode::iterator end() { return children.end(); }
Owen Anderson83430bc2007-11-04 22:33:26 +000084 };
85
Owen Anderson0bda0e82007-10-31 03:37:57 +000086 DenseMap<MachineBasicBlock*, unsigned> preorder;
87 DenseMap<MachineBasicBlock*, unsigned> maxpreorder;
88
Owen Andersona4ad2e72007-11-06 04:49:43 +000089 DenseMap<MachineBasicBlock*, std::vector<MachineInstr*> > waiting;
90
91
Owen Anderson0bda0e82007-10-31 03:37:57 +000092 void computeDFS(MachineFunction& MF);
Owen Anderson60a877d2007-11-07 05:17:15 +000093 void processBlock(MachineBasicBlock* MBB);
Owen Anderson83430bc2007-11-04 22:33:26 +000094
Owen Andersonee49b532007-11-06 05:22:43 +000095 std::vector<DomForestNode*> computeDomForest(std::set<unsigned>& instrs);
Owen Anderson35e2dba2007-11-12 17:27:27 +000096 void breakCriticalEdges(MachineFunction &Fn);
Owen Anderson83430bc2007-11-04 22:33:26 +000097
Owen Anderson0bda0e82007-10-31 03:37:57 +000098 };
99
100 char StrongPHIElimination::ID = 0;
101 RegisterPass<StrongPHIElimination> X("strong-phi-node-elimination",
102 "Eliminate PHI nodes for register allocation, intelligently");
103}
104
105const PassInfo *llvm::StrongPHIEliminationID = X.getPassInfo();
106
107/// computeDFS - Computes the DFS-in and DFS-out numbers of the dominator tree
108/// of the given MachineFunction. These numbers are then used in other parts
109/// of the PHI elimination process.
110void StrongPHIElimination::computeDFS(MachineFunction& MF) {
111 SmallPtrSet<MachineDomTreeNode*, 8> frontier;
112 SmallPtrSet<MachineDomTreeNode*, 8> visited;
113
114 unsigned time = 0;
115
116 MachineDominatorTree& DT = getAnalysis<MachineDominatorTree>();
117
118 MachineDomTreeNode* node = DT.getRootNode();
119
120 std::vector<MachineDomTreeNode*> worklist;
121 worklist.push_back(node);
122
123 while (!worklist.empty()) {
124 MachineDomTreeNode* currNode = worklist.back();
125
126 if (!frontier.count(currNode)) {
127 frontier.insert(currNode);
128 ++time;
129 preorder.insert(std::make_pair(currNode->getBlock(), time));
130 }
131
132 bool inserted = false;
133 for (MachineDomTreeNode::iterator I = node->begin(), E = node->end();
134 I != E; ++I)
135 if (!frontier.count(*I) && !visited.count(*I)) {
136 worklist.push_back(*I);
137 inserted = true;
138 break;
139 }
140
141 if (!inserted) {
142 frontier.erase(currNode);
143 visited.insert(currNode);
144 maxpreorder.insert(std::make_pair(currNode->getBlock(), time));
145
146 worklist.pop_back();
147 }
148 }
Duncan Sands1bd32712007-10-31 08:49:24 +0000149}
Owen Anderson83430bc2007-11-04 22:33:26 +0000150
Owen Anderson8b96b9f2007-11-06 05:26:02 +0000151/// PreorderSorter - a helper class that is used to sort registers
152/// according to the preorder number of their defining blocks
Owen Anderson83430bc2007-11-04 22:33:26 +0000153class PreorderSorter {
154private:
155 DenseMap<MachineBasicBlock*, unsigned>& preorder;
Owen Andersonee49b532007-11-06 05:22:43 +0000156 LiveVariables& LV;
Owen Anderson83430bc2007-11-04 22:33:26 +0000157
158public:
Owen Andersonee49b532007-11-06 05:22:43 +0000159 PreorderSorter(DenseMap<MachineBasicBlock*, unsigned>& p,
160 LiveVariables& L) : preorder(p), LV(L) { }
Owen Anderson83430bc2007-11-04 22:33:26 +0000161
Owen Andersonee49b532007-11-06 05:22:43 +0000162 bool operator()(unsigned A, unsigned B) {
Owen Anderson83430bc2007-11-04 22:33:26 +0000163 if (A == B)
164 return false;
165
Owen Andersonee49b532007-11-06 05:22:43 +0000166 MachineBasicBlock* ABlock = LV.getVarInfo(A).DefInst->getParent();
167 MachineBasicBlock* BBlock = LV.getVarInfo(A).DefInst->getParent();
168
169 if (preorder[ABlock] < preorder[BBlock])
Owen Anderson83430bc2007-11-04 22:33:26 +0000170 return true;
Owen Andersonee49b532007-11-06 05:22:43 +0000171 else if (preorder[ABlock] > preorder[BBlock])
Owen Anderson83430bc2007-11-04 22:33:26 +0000172 return false;
173
Owen Andersonee49b532007-11-06 05:22:43 +0000174 assert(0 && "Error sorting by dominance!");
175 return false;
Owen Anderson83430bc2007-11-04 22:33:26 +0000176 }
177};
178
Owen Anderson8b96b9f2007-11-06 05:26:02 +0000179/// computeDomForest - compute the subforest of the DomTree corresponding
180/// to the defining blocks of the registers in question
Owen Anderson83430bc2007-11-04 22:33:26 +0000181std::vector<StrongPHIElimination::DomForestNode*>
Owen Andersonee49b532007-11-06 05:22:43 +0000182StrongPHIElimination::computeDomForest(std::set<unsigned>& regs) {
183 LiveVariables& LV = getAnalysis<LiveVariables>();
184
Owen Anderson83430bc2007-11-04 22:33:26 +0000185 DomForestNode* VirtualRoot = new DomForestNode(0, 0);
186 maxpreorder.insert(std::make_pair((MachineBasicBlock*)0, ~0UL));
187
Owen Andersonee49b532007-11-06 05:22:43 +0000188 std::vector<unsigned> worklist;
189 worklist.reserve(regs.size());
190 for (std::set<unsigned>::iterator I = regs.begin(), E = regs.end();
191 I != E; ++I)
Owen Anderson83430bc2007-11-04 22:33:26 +0000192 worklist.push_back(*I);
Owen Andersonee49b532007-11-06 05:22:43 +0000193
194 PreorderSorter PS(preorder, LV);
Owen Anderson83430bc2007-11-04 22:33:26 +0000195 std::sort(worklist.begin(), worklist.end(), PS);
196
197 DomForestNode* CurrentParent = VirtualRoot;
198 std::vector<DomForestNode*> stack;
199 stack.push_back(VirtualRoot);
200
Owen Andersonee49b532007-11-06 05:22:43 +0000201 for (std::vector<unsigned>::iterator I = worklist.begin(), E = worklist.end();
202 I != E; ++I) {
203 unsigned pre = preorder[LV.getVarInfo(*I).DefInst->getParent()];
204 MachineBasicBlock* parentBlock =
205 LV.getVarInfo(CurrentParent->getReg()).DefInst->getParent();
206
207 while (pre > maxpreorder[parentBlock]) {
Owen Anderson83430bc2007-11-04 22:33:26 +0000208 stack.pop_back();
209 CurrentParent = stack.back();
Owen Andersonee49b532007-11-06 05:22:43 +0000210
211 parentBlock = LV.getVarInfo(CurrentParent->getReg()).DefInst->getParent();
Owen Anderson83430bc2007-11-04 22:33:26 +0000212 }
213
214 DomForestNode* child = new DomForestNode(*I, CurrentParent);
215 stack.push_back(child);
216 CurrentParent = child;
217 }
218
219 std::vector<DomForestNode*> ret;
220 ret.insert(ret.end(), VirtualRoot->begin(), VirtualRoot->end());
221 return ret;
222}
Owen Andersona4ad2e72007-11-06 04:49:43 +0000223
Owen Anderson60a877d2007-11-07 05:17:15 +0000224/// isLiveIn - helper method that determines, from a VarInfo, if a register
225/// is live into a block
226bool isLiveIn(LiveVariables::VarInfo& V, MachineBasicBlock* MBB) {
227 if (V.AliveBlocks.test(MBB->getNumber()))
228 return true;
Owen Andersonee49b532007-11-06 05:22:43 +0000229
Owen Anderson14b3fb72007-11-08 01:32:45 +0000230 if (V.DefInst->getParent() != MBB &&
231 V.UsedBlocks.test(MBB->getNumber()))
232 return true;
Owen Anderson60a877d2007-11-07 05:17:15 +0000233
234 return false;
235}
236
237/// isLiveOut - help method that determines, from a VarInfo, if a register is
238/// live out of a block.
239bool isLiveOut(LiveVariables::VarInfo& V, MachineBasicBlock* MBB) {
Owen Anderson14b3fb72007-11-08 01:32:45 +0000240 if (MBB == V.DefInst->getParent() ||
241 V.UsedBlocks.test(MBB->getNumber())) {
242 for (std::vector<MachineInstr*>::iterator I = V.Kills.begin(),
243 E = V.Kills.end(); I != E; ++I)
244 if ((*I)->getParent() == MBB)
245 return false;
246
Owen Anderson60a877d2007-11-07 05:17:15 +0000247 return true;
Owen Anderson14b3fb72007-11-08 01:32:45 +0000248 }
Owen Anderson60a877d2007-11-07 05:17:15 +0000249
250 return false;
251}
252
253/// processBlock - Eliminate PHIs in the given block
254void StrongPHIElimination::processBlock(MachineBasicBlock* MBB) {
255 LiveVariables& LV = getAnalysis<LiveVariables>();
256
257 // Holds names that have been added to a set in any PHI within this block
258 // before the current one.
259 std::set<unsigned> ProcessedNames;
260
261 MachineBasicBlock::iterator P = MBB->begin();
262 while (P->getOpcode() == TargetInstrInfo::PHI) {
263 LiveVariables::VarInfo& PHIInfo = LV.getVarInfo(P->getOperand(0).getReg());
264
265 // Hold the names that are currently in the candidate set.
266 std::set<unsigned> PHIUnion;
267 std::set<MachineBasicBlock*> UnionedBlocks;
268
269 for (int i = P->getNumOperands() - 1; i >= 2; i-=2) {
270 unsigned SrcReg = P->getOperand(i-1).getReg();
271 LiveVariables::VarInfo& SrcInfo = LV.getVarInfo(SrcReg);
272
273 if (isLiveIn(SrcInfo, P->getParent())) {
274 // add a copy from a_i to p in Waiting[From[a_i]]
275 } else if (isLiveOut(PHIInfo, SrcInfo.DefInst->getParent())) {
276 // add a copy to Waiting[From[a_i]]
277 } else if (PHIInfo.DefInst->getOpcode() == TargetInstrInfo::PHI &&
278 isLiveIn(PHIInfo, SrcInfo.DefInst->getParent())) {
279 // add a copy to Waiting[From[a_i]]
280 } else if (ProcessedNames.count(SrcReg)) {
281 // add a copy to Waiting[From[a_i]]
282 } else if (UnionedBlocks.count(SrcInfo.DefInst->getParent())) {
283 // add a copy to Waiting[From[a_i]]
284 } else {
285 PHIUnion.insert(SrcReg);
286 UnionedBlocks.insert(SrcInfo.DefInst->getParent());
287
288 // DO STUFF HERE
289
290 }
291
292 ProcessedNames.insert(PHIUnion.begin(), PHIUnion.end());
293 }
294
295 ++P;
296 }
Owen Andersonee49b532007-11-06 05:22:43 +0000297}
298
Owen Anderson35e2dba2007-11-12 17:27:27 +0000299void StrongPHIElimination::breakCriticalEdges(MachineFunction &Fn) {
300 typedef std::pair<MachineBasicBlock*, MachineBasicBlock*> MBB_pair;
301
302 MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
303 //LiveVariables& LV = getAnalysis<LiveVariables>();
304
305 std::vector<MBB_pair> criticals;
306 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
307 if (!I->empty() &&
308 I->begin()->getOpcode() == TargetInstrInfo::PHI &&
309 I->pred_size() > 1)
310 for (MachineBasicBlock::pred_iterator PI = I->pred_begin(),
311 PE = I->pred_end(); PI != PE; ++PI)
312 if ((*PI)->succ_size() > 1)
313 criticals.push_back(std::make_pair(*PI, I));
314
315 for (std::vector<MBB_pair>::iterator I = criticals.begin(),
316 E = criticals.end(); I != E; ++I) {
317 SplitCriticalMachineEdge(I->first, I->second);
318
319 MDT.splitBlock(I->first);
320 }
321}
322
Owen Andersona4ad2e72007-11-06 04:49:43 +0000323bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) {
Owen Anderson35e2dba2007-11-12 17:27:27 +0000324 breakCriticalEdges(Fn);
Owen Andersona4ad2e72007-11-06 04:49:43 +0000325 computeDFS(Fn);
326
Owen Anderson60a877d2007-11-07 05:17:15 +0000327 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
328 if (!I->empty() &&
329 I->begin()->getOpcode() == TargetInstrInfo::PHI)
330 processBlock(I);
Owen Andersona4ad2e72007-11-06 04:49:43 +0000331
332 return false;
333}