Correctly mark a valno that was previous defined by a PHI node as having an
[oota-llvm.git] / lib / CodeGen / StrongPHIElimination.cpp
1 //===- StrongPhiElimination.cpp - Eliminate PHI nodes by inserting copies -===//
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 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"
24 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
25 #include "llvm/CodeGen/MachineDominators.h"
26 #include "llvm/CodeGen/MachineFunctionPass.h"
27 #include "llvm/CodeGen/MachineInstr.h"
28 #include "llvm/CodeGen/MachineLoopInfo.h"
29 #include "llvm/CodeGen/MachineRegisterInfo.h"
30 #include "llvm/Target/TargetInstrInfo.h"
31 #include "llvm/Target/TargetMachine.h"
32 #include "llvm/ADT/DepthFirstIterator.h"
33 #include "llvm/ADT/Statistic.h"
34 #include "llvm/Support/Compiler.h"
35 using namespace llvm;
36
37
38 namespace {
39   struct VISIBILITY_HIDDEN StrongPHIElimination : public MachineFunctionPass {
40     static char ID; // Pass identification, replacement for typeid
41     StrongPHIElimination() : MachineFunctionPass((intptr_t)&ID) {}
42
43     // Waiting stores, for each MBB, the set of copies that need to
44     // be inserted into that MBB
45     DenseMap<MachineBasicBlock*,
46              std::map<unsigned, unsigned> > Waiting;
47     
48     // Stacks holds the renaming stack for each register
49     std::map<unsigned, std::vector<unsigned> > Stacks;
50     
51     // Registers in UsedByAnother are PHI nodes that are themselves
52     // used as operands to another another PHI node
53     std::set<unsigned> UsedByAnother;
54     
55     // RenameSets are the sets of operands (and their VNInfo IDs) to a PHI
56     // (the defining instruction of the key) that can be renamed without copies.
57     std::map<unsigned, std::map<unsigned, unsigned> > RenameSets;
58     
59     // PhiValueNumber holds the ID numbers of the VNs for each phi that we're
60     // eliminating, indexed by the register defined by that phi.
61     std::map<unsigned, unsigned> PhiValueNumber;
62
63     // Store the DFS-in number of each block
64     DenseMap<MachineBasicBlock*, unsigned> preorder;
65     
66     // Store the DFS-out number of each block
67     DenseMap<MachineBasicBlock*, unsigned> maxpreorder;
68
69     bool runOnMachineFunction(MachineFunction &Fn);
70     
71     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
72       AU.addRequired<MachineDominatorTree>();
73       AU.addRequired<LiveIntervals>();
74       
75       // TODO: Actually make this true.
76       AU.addPreserved<LiveIntervals>();
77       MachineFunctionPass::getAnalysisUsage(AU);
78     }
79     
80     virtual void releaseMemory() {
81       preorder.clear();
82       maxpreorder.clear();
83       
84       Waiting.clear();
85       Stacks.clear();
86       UsedByAnother.clear();
87       RenameSets.clear();
88     }
89
90   private:
91     
92     /// DomForestNode - Represents a node in the "dominator forest".  This is
93     /// a forest in which the nodes represent registers and the edges
94     /// represent a dominance relation in the block defining those registers.
95     struct DomForestNode {
96     private:
97       // Store references to our children
98       std::vector<DomForestNode*> children;
99       // The register we represent
100       unsigned reg;
101       
102       // Add another node as our child
103       void addChild(DomForestNode* DFN) { children.push_back(DFN); }
104       
105     public:
106       typedef std::vector<DomForestNode*>::iterator iterator;
107       
108       // Create a DomForestNode by providing the register it represents, and
109       // the node to be its parent.  The virtual root node has register 0
110       // and a null parent.
111       DomForestNode(unsigned r, DomForestNode* parent) : reg(r) {
112         if (parent)
113           parent->addChild(this);
114       }
115       
116       ~DomForestNode() {
117         for (iterator I = begin(), E = end(); I != E; ++I)
118           delete *I;
119       }
120       
121       /// getReg - Return the regiser that this node represents
122       inline unsigned getReg() { return reg; }
123       
124       // Provide iterator access to our children
125       inline DomForestNode::iterator begin() { return children.begin(); }
126       inline DomForestNode::iterator end() { return children.end(); }
127     };
128     
129     void computeDFS(MachineFunction& MF);
130     void processBlock(MachineBasicBlock* MBB);
131     
132     std::vector<DomForestNode*> computeDomForest(std::map<unsigned, unsigned>& instrs,
133                                                  MachineRegisterInfo& MRI);
134     void processPHIUnion(MachineInstr* Inst,
135                          std::map<unsigned, unsigned>& PHIUnion,
136                          std::vector<StrongPHIElimination::DomForestNode*>& DF,
137                          std::vector<std::pair<unsigned, unsigned> >& locals);
138     void ScheduleCopies(MachineBasicBlock* MBB, std::set<unsigned>& pushed);
139     void InsertCopies(MachineBasicBlock* MBB,
140                       SmallPtrSet<MachineBasicBlock*, 16>& v);
141     void mergeLiveIntervals(unsigned primary, unsigned secondary, unsigned VN);
142   };
143
144   char StrongPHIElimination::ID = 0;
145   RegisterPass<StrongPHIElimination> X("strong-phi-node-elimination",
146                   "Eliminate PHI nodes for register allocation, intelligently");
147 }
148
149 const PassInfo *llvm::StrongPHIEliminationID = X.getPassInfo();
150
151 /// computeDFS - Computes the DFS-in and DFS-out numbers of the dominator tree
152 /// of the given MachineFunction.  These numbers are then used in other parts
153 /// of the PHI elimination process.
154 void StrongPHIElimination::computeDFS(MachineFunction& MF) {
155   SmallPtrSet<MachineDomTreeNode*, 8> frontier;
156   SmallPtrSet<MachineDomTreeNode*, 8> visited;
157   
158   unsigned time = 0;
159   
160   MachineDominatorTree& DT = getAnalysis<MachineDominatorTree>();
161   
162   MachineDomTreeNode* node = DT.getRootNode();
163   
164   std::vector<MachineDomTreeNode*> worklist;
165   worklist.push_back(node);
166   
167   while (!worklist.empty()) {
168     MachineDomTreeNode* currNode = worklist.back();
169     
170     if (!frontier.count(currNode)) {
171       frontier.insert(currNode);
172       ++time;
173       preorder.insert(std::make_pair(currNode->getBlock(), time));
174     }
175     
176     bool inserted = false;
177     for (MachineDomTreeNode::iterator I = currNode->begin(), E = currNode->end();
178          I != E; ++I)
179       if (!frontier.count(*I) && !visited.count(*I)) {
180         worklist.push_back(*I);
181         inserted = true;
182         break;
183       }
184     
185     if (!inserted) {
186       frontier.erase(currNode);
187       visited.insert(currNode);
188       maxpreorder.insert(std::make_pair(currNode->getBlock(), time));
189       
190       worklist.pop_back();
191     }
192   }
193 }
194
195 /// PreorderSorter - a helper class that is used to sort registers
196 /// according to the preorder number of their defining blocks
197 class PreorderSorter {
198 private:
199   DenseMap<MachineBasicBlock*, unsigned>& preorder;
200   MachineRegisterInfo& MRI;
201   
202 public:
203   PreorderSorter(DenseMap<MachineBasicBlock*, unsigned>& p,
204                 MachineRegisterInfo& M) : preorder(p), MRI(M) { }
205   
206   bool operator()(unsigned A, unsigned B) {
207     if (A == B)
208       return false;
209     
210     MachineBasicBlock* ABlock = MRI.getVRegDef(A)->getParent();
211     MachineBasicBlock* BBlock = MRI.getVRegDef(B)->getParent();
212     
213     if (preorder[ABlock] < preorder[BBlock])
214       return true;
215     else if (preorder[ABlock] > preorder[BBlock])
216       return false;
217     
218     return false;
219   }
220 };
221
222 /// computeDomForest - compute the subforest of the DomTree corresponding
223 /// to the defining blocks of the registers in question
224 std::vector<StrongPHIElimination::DomForestNode*>
225 StrongPHIElimination::computeDomForest(std::map<unsigned, unsigned>& regs, 
226                                        MachineRegisterInfo& MRI) {
227   // Begin by creating a virtual root node, since the actual results
228   // may well be a forest.  Assume this node has maximum DFS-out number.
229   DomForestNode* VirtualRoot = new DomForestNode(0, 0);
230   maxpreorder.insert(std::make_pair((MachineBasicBlock*)0, ~0UL));
231   
232   // Populate a worklist with the registers
233   std::vector<unsigned> worklist;
234   worklist.reserve(regs.size());
235   for (std::map<unsigned, unsigned>::iterator I = regs.begin(), E = regs.end();
236        I != E; ++I)
237     worklist.push_back(I->first);
238   
239   // Sort the registers by the DFS-in number of their defining block
240   PreorderSorter PS(preorder, MRI);
241   std::sort(worklist.begin(), worklist.end(), PS);
242   
243   // Create a "current parent" stack, and put the virtual root on top of it
244   DomForestNode* CurrentParent = VirtualRoot;
245   std::vector<DomForestNode*> stack;
246   stack.push_back(VirtualRoot);
247   
248   // Iterate over all the registers in the previously computed order
249   for (std::vector<unsigned>::iterator I = worklist.begin(), E = worklist.end();
250        I != E; ++I) {
251     unsigned pre = preorder[MRI.getVRegDef(*I)->getParent()];
252     MachineBasicBlock* parentBlock = CurrentParent->getReg() ?
253                  MRI.getVRegDef(CurrentParent->getReg())->getParent() :
254                  0;
255     
256     // If the DFS-in number of the register is greater than the DFS-out number
257     // of the current parent, repeatedly pop the parent stack until it isn't.
258     while (pre > maxpreorder[parentBlock]) {
259       stack.pop_back();
260       CurrentParent = stack.back();
261       
262       parentBlock = CurrentParent->getReg() ?
263                    MRI.getVRegDef(CurrentParent->getReg())->getParent() :
264                    0;
265     }
266     
267     // Now that we've found the appropriate parent, create a DomForestNode for
268     // this register and attach it to the forest
269     DomForestNode* child = new DomForestNode(*I, CurrentParent);
270     
271     // Push this new node on the "current parent" stack
272     stack.push_back(child);
273     CurrentParent = child;
274   }
275   
276   // Return a vector containing the children of the virtual root node
277   std::vector<DomForestNode*> ret;
278   ret.insert(ret.end(), VirtualRoot->begin(), VirtualRoot->end());
279   return ret;
280 }
281
282 /// isLiveIn - helper method that determines, from a regno, if a register
283 /// is live into a block
284 static bool isLiveIn(unsigned r, MachineBasicBlock* MBB,
285                      LiveIntervals& LI) {
286   LiveInterval& I = LI.getOrCreateInterval(r);
287   unsigned idx = LI.getMBBStartIdx(MBB);
288   return I.liveBeforeAndAt(idx);
289 }
290
291 /// isLiveOut - help method that determines, from a regno, if a register is
292 /// live out of a block.
293 static bool isLiveOut(unsigned r, MachineBasicBlock* MBB,
294                       LiveIntervals& LI) {
295   for (MachineBasicBlock::succ_iterator PI = MBB->succ_begin(),
296        E = MBB->succ_end(); PI != E; ++PI) {
297     if (isLiveIn(r, *PI, LI))
298       return true;
299   }
300   
301   return false;
302 }
303
304 /// interferes - checks for local interferences by scanning a block.  The only
305 /// trick parameter is 'mode' which tells it the relationship of the two
306 /// registers. 0 - defined in the same block, 1 - first properly dominates
307 /// second, 2 - second properly dominates first 
308 static bool interferes(unsigned a, unsigned b, MachineBasicBlock* scan,
309                        LiveIntervals& LV, unsigned mode) {
310   MachineInstr* def = 0;
311   MachineInstr* kill = 0;
312   
313   // The code is still in SSA form at this point, so there is only one
314   // definition per VReg.  Thus we can safely use MRI->getVRegDef().
315   const MachineRegisterInfo* MRI = &scan->getParent()->getRegInfo();
316   
317   bool interference = false;
318   
319   // Wallk the block, checking for interferences
320   for (MachineBasicBlock::iterator MBI = scan->begin(), MBE = scan->end();
321        MBI != MBE; ++MBI) {
322     MachineInstr* curr = MBI;
323     
324     // Same defining block...
325     if (mode == 0) {
326       if (curr == MRI->getVRegDef(a)) {
327         // If we find our first definition, save it
328         if (!def) {
329           def = curr;
330         // If there's already an unkilled definition, then 
331         // this is an interference
332         } else if (!kill) {
333           interference = true;
334           break;
335         // If there's a definition followed by a KillInst, then
336         // they can't interfere
337         } else {
338           interference = false;
339           break;
340         }
341       // Symmetric with the above
342       } else if (curr == MRI->getVRegDef(b)) {
343         if (!def) {
344           def = curr;
345         } else if (!kill) {
346           interference = true;
347           break;
348         } else {
349           interference = false;
350           break;
351         }
352       // Store KillInsts if they match up with the definition
353       } else if (curr->killsRegister(a)) {
354         if (def == MRI->getVRegDef(a)) {
355           kill = curr;
356         } else if (curr->killsRegister(b)) {
357           if (def == MRI->getVRegDef(b)) {
358             kill = curr;
359           }
360         }
361       }
362     // First properly dominates second...
363     } else if (mode == 1) {
364       if (curr == MRI->getVRegDef(b)) {
365         // Definition of second without kill of first is an interference
366         if (!kill) {
367           interference = true;
368           break;
369         // Definition after a kill is a non-interference
370         } else {
371           interference = false;
372           break;
373         }
374       // Save KillInsts of First
375       } else if (curr->killsRegister(a)) {
376         kill = curr;
377       }
378     // Symmetric with the above
379     } else if (mode == 2) {
380       if (curr == MRI->getVRegDef(a)) {
381         if (!kill) {
382           interference = true;
383           break;
384         } else {
385           interference = false;
386           break;
387         }
388       } else if (curr->killsRegister(b)) {
389         kill = curr;
390       }
391     }
392   }
393   
394   return interference;
395 }
396
397 /// processBlock - Determine how to break up PHIs in the current block.  Each
398 /// PHI is broken up by some combination of renaming its operands and inserting
399 /// copies.  This method is responsible for determining which operands receive
400 /// which treatment.
401 void StrongPHIElimination::processBlock(MachineBasicBlock* MBB) {
402   LiveIntervals& LI = getAnalysis<LiveIntervals>();
403   MachineRegisterInfo& MRI = MBB->getParent()->getRegInfo();
404   
405   // Holds names that have been added to a set in any PHI within this block
406   // before the current one.
407   std::set<unsigned> ProcessedNames;
408   
409   // Iterate over all the PHI nodes in this block
410   MachineBasicBlock::iterator P = MBB->begin();
411   while (P != MBB->end() && P->getOpcode() == TargetInstrInfo::PHI) {
412     unsigned DestReg = P->getOperand(0).getReg();
413
414     // Don't both doing PHI elimination for dead PHI's.
415     if (P->registerDefIsDead(DestReg)) {
416       ++P;
417       continue;
418     }
419
420     LiveInterval& PI = LI.getOrCreateInterval(DestReg);
421     unsigned pIdx = LI.getDefIndex(LI.getInstructionIndex(P));
422     VNInfo* PVN = PI.getLiveRangeContaining(pIdx)->valno;
423     PhiValueNumber.insert(std::make_pair(DestReg, PVN->id));
424
425     // PHIUnion is the set of incoming registers to the PHI node that
426     // are going to be renames rather than having copies inserted.  This set
427     // is refinded over the course of this function.  UnionedBlocks is the set
428     // of corresponding MBBs.
429     std::map<unsigned, unsigned> PHIUnion;
430     SmallPtrSet<MachineBasicBlock*, 8> UnionedBlocks;
431   
432     // Iterate over the operands of the PHI node
433     for (int i = P->getNumOperands() - 1; i >= 2; i-=2) {
434       unsigned SrcReg = P->getOperand(i-1).getReg();
435     
436       // Check for trivial interferences via liveness information, allowing us
437       // to avoid extra work later.  Any registers that interfere cannot both
438       // be in the renaming set, so choose one and add copies for it instead.
439       // The conditions are:
440       //   1) if the operand is live into the PHI node's block OR
441       //   2) if the PHI node is live out of the operand's defining block OR
442       //   3) if the operand is itself a PHI node and the original PHI is
443       //      live into the operand's defining block OR
444       //   4) if the operand is already being renamed for another PHI node
445       //      in this block OR
446       //   5) if any two operands are defined in the same block, insert copies
447       //      for one of them
448       if (isLiveIn(SrcReg, P->getParent(), LI) ||
449           isLiveOut(P->getOperand(0).getReg(),
450                     MRI.getVRegDef(SrcReg)->getParent(), LI) ||
451           ( MRI.getVRegDef(SrcReg)->getOpcode() == TargetInstrInfo::PHI &&
452             isLiveIn(P->getOperand(0).getReg(),
453                      MRI.getVRegDef(SrcReg)->getParent(), LI) ) ||
454           ProcessedNames.count(SrcReg) ||
455           UnionedBlocks.count(MRI.getVRegDef(SrcReg)->getParent())) {
456         
457         // Add a copy for the selected register
458         MachineBasicBlock* From = P->getOperand(i).getMBB();
459         Waiting[From].insert(std::make_pair(SrcReg, DestReg));
460         UsedByAnother.insert(SrcReg);
461       } else {
462         // Otherwise, add it to the renaming set
463         LiveInterval& I = LI.getOrCreateInterval(SrcReg);
464         unsigned idx = LI.getMBBEndIdx(P->getOperand(i).getMBB());
465         VNInfo* VN = I.getLiveRangeContaining(idx)->valno;
466         
467         assert(VN && "No VNInfo for register?");
468         
469         PHIUnion.insert(std::make_pair(SrcReg, VN->id));
470         UnionedBlocks.insert(MRI.getVRegDef(SrcReg)->getParent());
471       }
472     }
473     
474     // Compute the dominator forest for the renaming set.  This is a forest
475     // where the nodes are the registers and the edges represent dominance 
476     // relations between the defining blocks of the registers
477     std::vector<StrongPHIElimination::DomForestNode*> DF = 
478                                                 computeDomForest(PHIUnion, MRI);
479     
480     // Walk DomForest to resolve interferences at an inter-block level.  This
481     // will remove registers from the renaming set (and insert copies for them)
482     // if interferences are found.
483     std::vector<std::pair<unsigned, unsigned> > localInterferences;
484     processPHIUnion(P, PHIUnion, DF, localInterferences);
485     
486     // The dominator forest walk may have returned some register pairs whose
487     // interference cannot be determines from dominator analysis.  We now 
488     // examine these pairs for local interferences.
489     for (std::vector<std::pair<unsigned, unsigned> >::iterator I =
490         localInterferences.begin(), E = localInterferences.end(); I != E; ++I) {
491       std::pair<unsigned, unsigned> p = *I;
492       
493       MachineDominatorTree& MDT = getAnalysis<MachineDominatorTree>();
494       
495       // Determine the block we need to scan and the relationship between
496       // the two registers
497       MachineBasicBlock* scan = 0;
498       unsigned mode = 0;
499       if (MRI.getVRegDef(p.first)->getParent() ==
500           MRI.getVRegDef(p.second)->getParent()) {
501         scan = MRI.getVRegDef(p.first)->getParent();
502         mode = 0; // Same block
503       } else if (MDT.dominates(MRI.getVRegDef(p.first)->getParent(),
504                                MRI.getVRegDef(p.second)->getParent())) {
505         scan = MRI.getVRegDef(p.second)->getParent();
506         mode = 1; // First dominates second
507       } else {
508         scan = MRI.getVRegDef(p.first)->getParent();
509         mode = 2; // Second dominates first
510       }
511       
512       // If there's an interference, we need to insert  copies
513       if (interferes(p.first, p.second, scan, LI, mode)) {
514         // Insert copies for First
515         for (int i = P->getNumOperands() - 1; i >= 2; i-=2) {
516           if (P->getOperand(i-1).getReg() == p.first) {
517             unsigned SrcReg = p.first;
518             MachineBasicBlock* From = P->getOperand(i).getMBB();
519             
520             Waiting[From].insert(std::make_pair(SrcReg,
521                                                 P->getOperand(0).getReg()));
522             UsedByAnother.insert(SrcReg);
523             
524             PHIUnion.erase(SrcReg);
525           }
526         }
527       }
528     }
529     
530     // Add the renaming set for this PHI node to our overal renaming information
531     RenameSets.insert(std::make_pair(P->getOperand(0).getReg(), PHIUnion));
532     
533     // Remember which registers are already renamed, so that we don't try to 
534     // rename them for another PHI node in this block
535     for (std::map<unsigned, unsigned>::iterator I = PHIUnion.begin(),
536          E = PHIUnion.end(); I != E; ++I)
537       ProcessedNames.insert(I->first);
538     
539     ++P;
540   }
541 }
542
543 /// processPHIUnion - Take a set of candidate registers to be coalesced when
544 /// decomposing the PHI instruction.  Use the DominanceForest to remove the ones
545 /// that are known to interfere, and flag others that need to be checked for
546 /// local interferences.
547 void StrongPHIElimination::processPHIUnion(MachineInstr* Inst,
548                                         std::map<unsigned, unsigned>& PHIUnion,
549                         std::vector<StrongPHIElimination::DomForestNode*>& DF,
550                         std::vector<std::pair<unsigned, unsigned> >& locals) {
551   
552   std::vector<DomForestNode*> worklist(DF.begin(), DF.end());
553   SmallPtrSet<DomForestNode*, 4> visited;
554   
555   // Code is still in SSA form, so we can use MRI::getVRegDef()
556   MachineRegisterInfo& MRI = Inst->getParent()->getParent()->getRegInfo();
557   
558   LiveIntervals& LI = getAnalysis<LiveIntervals>();
559   unsigned DestReg = Inst->getOperand(0).getReg();
560   
561   // DF walk on the DomForest
562   while (!worklist.empty()) {
563     DomForestNode* DFNode = worklist.back();
564     
565     visited.insert(DFNode);
566     
567     bool inserted = false;
568     for (DomForestNode::iterator CI = DFNode->begin(), CE = DFNode->end();
569          CI != CE; ++CI) {
570       DomForestNode* child = *CI;   
571       
572       // If the current node is live-out of the defining block of one of its
573       // children, insert a copy for it.  NOTE: The paper actually calls for
574       // a more elaborate heuristic for determining whether to insert copies
575       // for the child or the parent.  In the interest of simplicity, we're
576       // just always choosing the parent.
577       if (isLiveOut(DFNode->getReg(),
578           MRI.getVRegDef(child->getReg())->getParent(), LI)) {
579         // Insert copies for parent
580         for (int i = Inst->getNumOperands() - 1; i >= 2; i-=2) {
581           if (Inst->getOperand(i-1).getReg() == DFNode->getReg()) {
582             unsigned SrcReg = DFNode->getReg();
583             MachineBasicBlock* From = Inst->getOperand(i).getMBB();
584             
585             Waiting[From].insert(std::make_pair(SrcReg, DestReg));
586             UsedByAnother.insert(SrcReg);
587             
588             PHIUnion.erase(SrcReg);
589           }
590         }
591       
592       // If a node is live-in to the defining block of one of its children, but
593       // not live-out, then we need to scan that block for local interferences.
594       } else if (isLiveIn(DFNode->getReg(),
595                           MRI.getVRegDef(child->getReg())->getParent(), LI) ||
596                  MRI.getVRegDef(DFNode->getReg())->getParent() ==
597                                  MRI.getVRegDef(child->getReg())->getParent()) {
598         // Add (p, c) to possible local interferences
599         locals.push_back(std::make_pair(DFNode->getReg(), child->getReg()));
600       }
601       
602       if (!visited.count(child)) {
603         worklist.push_back(child);
604         inserted = true;
605       }
606     }
607     
608     if (!inserted) worklist.pop_back();
609   }
610 }
611
612 /// ScheduleCopies - Insert copies into predecessor blocks, scheduling
613 /// them properly so as to avoid the 'lost copy' and the 'virtual swap'
614 /// problems.
615 ///
616 /// Based on "Practical Improvements to the Construction and Destruction
617 /// of Static Single Assignment Form" by Briggs, et al.
618 void StrongPHIElimination::ScheduleCopies(MachineBasicBlock* MBB,
619                                           std::set<unsigned>& pushed) {
620   // FIXME: This function needs to update LiveVariables
621   std::map<unsigned, unsigned>& copy_set= Waiting[MBB];
622   
623   std::map<unsigned, unsigned> worklist;
624   std::map<unsigned, unsigned> map;
625   
626   // Setup worklist of initial copies
627   for (std::map<unsigned, unsigned>::iterator I = copy_set.begin(),
628        E = copy_set.end(); I != E; ) {
629     map.insert(std::make_pair(I->first, I->first));
630     map.insert(std::make_pair(I->second, I->second));
631          
632     if (!UsedByAnother.count(I->second)) {
633       worklist.insert(*I);
634       
635       // Avoid iterator invalidation
636       unsigned first = I->first;
637       ++I;
638       copy_set.erase(first);
639     } else {
640       ++I;
641     }
642   }
643   
644   LiveIntervals& LI = getAnalysis<LiveIntervals>();
645   MachineFunction* MF = MBB->getParent();
646   MachineRegisterInfo& MRI = MF->getRegInfo();
647   const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
648   
649   // Iterate over the worklist, inserting copies
650   while (!worklist.empty() || !copy_set.empty()) {
651     while (!worklist.empty()) {
652       std::pair<unsigned, unsigned> curr = *worklist.begin();
653       worklist.erase(curr.first);
654       
655       const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(curr.first);
656       
657       if (isLiveOut(curr.second, MBB, LI)) {
658         // Create a temporary
659         unsigned t = MF->getRegInfo().createVirtualRegister(RC);
660         
661         // Insert copy from curr.second to a temporary at
662         // the Phi defining curr.second
663         MachineBasicBlock::iterator PI = MRI.getVRegDef(curr.second);
664         TII->copyRegToReg(*PI->getParent(), PI, t,
665                           curr.second, RC, RC);
666         
667         // Push temporary on Stacks
668         Stacks[curr.second].push_back(t);
669         
670         // Insert curr.second in pushed
671         pushed.insert(curr.second);
672       }
673       
674       // Insert copy from map[curr.first] to curr.second
675       TII->copyRegToReg(*MBB, MBB->getFirstTerminator(), curr.second,
676                         map[curr.first], RC, RC);
677       map[curr.first] = curr.second;
678       
679       // If curr.first is a destination in copy_set...
680       for (std::map<unsigned, unsigned>::iterator I = copy_set.begin(),
681            E = copy_set.end(); I != E; )
682         if (curr.first == I->second) {
683           std::pair<unsigned, unsigned> temp = *I;
684           
685           // Avoid iterator invalidation
686           ++I;
687           copy_set.erase(temp.first);
688           worklist.insert(temp);
689           
690           break;
691         } else {
692           ++I;
693         }
694     }
695     
696     if (!copy_set.empty()) {
697       std::pair<unsigned, unsigned> curr = *copy_set.begin();
698       copy_set.erase(curr.first);
699       
700       const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(curr.first);
701       
702       // Insert a copy from dest to a new temporary t at the end of b
703       unsigned t = MF->getRegInfo().createVirtualRegister(RC);
704       TII->copyRegToReg(*MBB, MBB->getFirstTerminator(), t,
705                         curr.second, RC, RC);
706       map[curr.second] = t;
707       
708       worklist.insert(curr);
709     }
710   }
711 }
712
713 /// InsertCopies - insert copies into MBB and all of its successors
714 void StrongPHIElimination::InsertCopies(MachineBasicBlock* MBB,
715                                  SmallPtrSet<MachineBasicBlock*, 16>& visited) {
716   visited.insert(MBB);
717   
718   std::set<unsigned> pushed;
719   
720   // Rewrite register uses from Stacks
721   for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
722       I != E; ++I)
723     for (unsigned i = 0; i < I->getNumOperands(); ++i)
724       if (I->getOperand(i).isRegister() &&
725           Stacks[I->getOperand(i).getReg()].size()) {
726         I->getOperand(i).setReg(Stacks[I->getOperand(i).getReg()].back());
727       }
728   
729   // Schedule the copies for this block
730   ScheduleCopies(MBB, pushed);
731   
732   // Recur to our successors
733   for (GraphTraits<MachineBasicBlock*>::ChildIteratorType I = 
734        GraphTraits<MachineBasicBlock*>::child_begin(MBB), E =
735        GraphTraits<MachineBasicBlock*>::child_end(MBB); I != E; ++I)
736     if (!visited.count(*I))
737       InsertCopies(*I, visited);
738   
739   // As we exit this block, pop the names we pushed while processing it
740   for (std::set<unsigned>::iterator I = pushed.begin(), 
741        E = pushed.end(); I != E; ++I)
742     Stacks[*I].pop_back();
743 }
744
745 /// ComputeUltimateVN - Assuming we are going to join two live intervals,
746 /// compute what the resultant value numbers for each value in the input two
747 /// ranges will be.  This is complicated by copies between the two which can
748 /// and will commonly cause multiple value numbers to be merged into one.
749 ///
750 /// VN is the value number that we're trying to resolve.  InstDefiningValue
751 /// keeps track of the new InstDefiningValue assignment for the result
752 /// LiveInterval.  ThisFromOther/OtherFromThis are sets that keep track of
753 /// whether a value in this or other is a copy from the opposite set.
754 /// ThisValNoAssignments/OtherValNoAssignments keep track of value #'s that have
755 /// already been assigned.
756 ///
757 /// ThisFromOther[x] - If x is defined as a copy from the other interval, this
758 /// contains the value number the copy is from.
759 ///
760 static unsigned ComputeUltimateVN(VNInfo *VNI,
761                                   SmallVector<VNInfo*, 16> &NewVNInfo,
762                                   DenseMap<VNInfo*, VNInfo*> &ThisFromOther,
763                                   DenseMap<VNInfo*, VNInfo*> &OtherFromThis,
764                                   SmallVector<int, 16> &ThisValNoAssignments,
765                                   SmallVector<int, 16> &OtherValNoAssignments) {
766   unsigned VN = VNI->id;
767
768   // If the VN has already been computed, just return it.
769   if (ThisValNoAssignments[VN] >= 0)
770     return ThisValNoAssignments[VN];
771 //  assert(ThisValNoAssignments[VN] != -2 && "Cyclic case?");
772
773   // If this val is not a copy from the other val, then it must be a new value
774   // number in the destination.
775   DenseMap<VNInfo*, VNInfo*>::iterator I = ThisFromOther.find(VNI);
776   if (I == ThisFromOther.end()) {
777     NewVNInfo.push_back(VNI);
778     return ThisValNoAssignments[VN] = NewVNInfo.size()-1;
779   }
780   VNInfo *OtherValNo = I->second;
781
782   // Otherwise, this *is* a copy from the RHS.  If the other side has already
783   // been computed, return it.
784   if (OtherValNoAssignments[OtherValNo->id] >= 0)
785     return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id];
786   
787   // Mark this value number as currently being computed, then ask what the
788   // ultimate value # of the other value is.
789   ThisValNoAssignments[VN] = -2;
790   unsigned UltimateVN =
791     ComputeUltimateVN(OtherValNo, NewVNInfo, OtherFromThis, ThisFromOther,
792                       OtherValNoAssignments, ThisValNoAssignments);
793   return ThisValNoAssignments[VN] = UltimateVN;
794 }
795
796 void StrongPHIElimination::mergeLiveIntervals(unsigned primary,
797                                               unsigned secondary,
798                                               unsigned secondaryVN) {
799   
800   LiveIntervals& LI = getAnalysis<LiveIntervals>();
801   LiveInterval& LHS = LI.getOrCreateInterval(primary);
802   LiveInterval& RHS = LI.getOrCreateInterval(secondary);
803   
804   // Compute the final value assignment, assuming that the live ranges can be
805   // coalesced.
806   SmallVector<int, 16> LHSValNoAssignments;
807   SmallVector<int, 16> RHSValNoAssignments;
808   SmallVector<VNInfo*, 16> NewVNInfo;
809   
810   LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
811   RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
812   NewVNInfo.reserve(LHS.getNumValNums() + RHS.getNumValNums());
813   
814   for (LiveInterval::vni_iterator I = LHS.vni_begin(), E = LHS.vni_end();
815        I != E; ++I) {
816     VNInfo *VNI = *I;
817     unsigned VN = VNI->id;
818     if (LHSValNoAssignments[VN] >= 0 || VNI->def == ~1U) 
819       continue;
820     
821     NewVNInfo.push_back(VNI);
822     LHSValNoAssignments[VN] = NewVNInfo.size()-1;
823   }
824   
825   for (LiveInterval::vni_iterator I = RHS.vni_begin(), E = RHS.vni_end();
826        I != E; ++I) {
827     VNInfo *VNI = *I;
828     unsigned VN = VNI->id;
829     if (RHSValNoAssignments[VN] >= 0 || VNI->def == ~1U)
830       continue;
831       
832     NewVNInfo.push_back(VNI);
833     RHSValNoAssignments[VN] = NewVNInfo.size()-1;
834   }
835
836   // If we get here, we know that we can coalesce the live ranges.  Ask the
837   // intervals to coalesce themselves now.
838
839   LHS.join(RHS, &LHSValNoAssignments[0], &RHSValNoAssignments[0], NewVNInfo);
840   LI.removeInterval(secondary);
841   
842   // The valno that was previously the input to the PHI node
843   // now has a PHIKill.
844   LHS.getValNumInfo(RHSValNoAssignments[secondaryVN])->hasPHIKill = true;
845 }
846
847 bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) {
848   LiveIntervals& LI = getAnalysis<LiveIntervals>();
849   
850   // Compute DFS numbers of each block
851   computeDFS(Fn);
852   
853   // Determine which phi node operands need copies
854   for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
855     if (!I->empty() &&
856         I->begin()->getOpcode() == TargetInstrInfo::PHI)
857       processBlock(I);
858   
859   // Insert copies
860   // FIXME: This process should probably preserve LiveVariables
861   SmallPtrSet<MachineBasicBlock*, 16> visited;
862   InsertCopies(Fn.begin(), visited);
863   
864   // Perform renaming
865   typedef std::map<unsigned, std::map<unsigned, unsigned> > RenameSetType;
866   for (RenameSetType::iterator I = RenameSets.begin(), E = RenameSets.end();
867        I != E; ++I)
868     for (std::map<unsigned, unsigned>::iterator SI = I->second.begin(),
869          SE = I->second.end(); SI != SE; ++SI) {
870       mergeLiveIntervals(I->first, SI->first, SI->second);
871       Fn.getRegInfo().replaceRegWith(SI->first, I->first);
872     }
873   
874   // FIXME: Insert last-minute copies
875   
876   // Remove PHIs
877   std::vector<MachineInstr*> phis;
878   for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
879     for (MachineBasicBlock::iterator BI = I->begin(), BE = I->end();
880          BI != BE; ++BI)
881       if (BI->getOpcode() == TargetInstrInfo::PHI)
882         phis.push_back(BI);
883   }
884   
885   for (std::vector<MachineInstr*>::iterator I = phis.begin(), E = phis.end();
886        I != E; ) {
887     MachineInstr* PInstr = *(I++);
888     
889     // If this is a dead PHI node, then remove it from LiveIntervals.
890     unsigned DestReg = PInstr->getOperand(0).getReg();
891     LiveInterval& PI = LI.getInterval(DestReg);
892     if (PInstr->registerDefIsDead(DestReg)) {
893       if (PI.containsOneValue()) {
894         LI.removeInterval(DestReg);
895       } else {
896         unsigned idx = LI.getDefIndex(LI.getInstructionIndex(PInstr));
897         PI.removeRange(*PI.getLiveRangeContaining(idx), true);
898       }
899     } else {
900       // If the PHI is not dead, then the valno defined by the PHI
901       // now has an unknown def.
902       unsigned idx = LI.getDefIndex(LI.getInstructionIndex(PInstr));
903       PI.getLiveRangeContaining(idx)->valno->def = ~0U;
904     }
905     
906     LI.RemoveMachineInstrFromMaps(PInstr);
907     PInstr->eraseFromParent();
908   }
909   
910   return true;
911 }