blob: 33537259fb74d44291ffeaf6f6bed064415f130b [file] [log] [blame]
Chris Lattnerbc40e892003-01-13 20:01:16 +00001//===-- PhiElimination.cpp - Eliminate PHI nodes by inserting copies ------===//
2//
3// This pass eliminates machine instruction PHI nodes by inserting copy
4// instructions. This destroys SSA information, but is the desired input for
5// some register allocators.
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/CodeGen/MachineFunctionPass.h"
10#include "llvm/CodeGen/MachineInstr.h"
11#include "llvm/CodeGen/SSARegMap.h"
12#include "llvm/CodeGen/LiveVariables.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000013#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000014#include "llvm/Target/TargetMachine.h"
15
16namespace {
17 struct PNE : public MachineFunctionPass {
18 bool runOnMachineFunction(MachineFunction &Fn) {
19 bool Changed = false;
20
21 // Eliminate PHI instructions by inserting copies into predecessor blocks.
22 //
23 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
24 Changed |= EliminatePHINodes(Fn, *I);
25
26 //std::cerr << "AFTER PHI NODE ELIM:\n";
27 //Fn.dump();
28 return Changed;
29 }
30
31 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
32 AU.addPreserved<LiveVariables>();
33 MachineFunctionPass::getAnalysisUsage(AU);
34 }
35
36 private:
37 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
38 /// in predecessor basic blocks.
39 ///
40 bool EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB);
41 };
42
43 RegisterPass<PNE> X("phi-node-elimination",
44 "Eliminate PHI nodes for register allocation");
45}
46
47const PassInfo *PHIEliminationID = X.getPassInfo();
48
49/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
50/// predecessor basic blocks.
51///
52bool PNE::EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB) {
Chris Lattner0416d2a2003-01-16 18:06:43 +000053 if (MBB.empty() || MBB.front()->getOpcode() != TargetInstrInfo::PHI)
Chris Lattnerbc40e892003-01-13 20:01:16 +000054 return false; // Quick exit for normal case...
55
56 LiveVariables *LV = getAnalysisToUpdate<LiveVariables>();
57 const TargetInstrInfo &MII = MF.getTarget().getInstrInfo();
58 const MRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
59
60 while (MBB.front()->getOpcode() == TargetInstrInfo::PHI) {
61 MachineInstr *MI = MBB.front();
62 // Unlink the PHI node from the basic block... but don't delete the PHI yet
63 MBB.erase(MBB.begin());
64
65 assert(MI->getOperand(0).isVirtualRegister() &&
66 "PHI node doesn't write virt reg?");
67
68 unsigned DestReg = MI->getOperand(0).getAllocatedRegNum();
69
70 // Create a new register for the incoming PHI arguments
71 const TargetRegisterClass *RC = MF.getSSARegMap()->getRegClass(DestReg);
72 unsigned IncomingReg = MF.getSSARegMap()->createVirtualRegister(RC);
73
Chris Lattner927ce5d2003-05-12 03:55:21 +000074 // Insert a register to register copy in the top of the current block (but
Chris Lattnerbc40e892003-01-13 20:01:16 +000075 // after any remaining phi nodes) which copies the new incoming register
76 // into the phi node destination.
77 //
78 MachineBasicBlock::iterator AfterPHIsIt = MBB.begin();
Chris Lattner0416d2a2003-01-16 18:06:43 +000079 if (AfterPHIsIt != MBB.end())
80 while ((*AfterPHIsIt)->getOpcode() == TargetInstrInfo::PHI) ++AfterPHIsIt;
Chris Lattnerbc40e892003-01-13 20:01:16 +000081 RegInfo->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC);
Chris Lattner927ce5d2003-05-12 03:55:21 +000082
83 // Update live variable information if there is any...
84 if (LV) {
85 MachineInstr *PHICopy = *(AfterPHIsIt-1);
Chris Lattnerbc40e892003-01-13 20:01:16 +000086
Chris Lattner927ce5d2003-05-12 03:55:21 +000087 // Add information to LiveVariables to know that the incoming value is
88 // dead. This says that the register is dead, not killed, because we
89 // cannot use the live variable information to indicate that the variable
90 // is defined in multiple entry blocks. Instead, we pretend that this
91 // instruction defined it and killed it at the same time.
92 //
93 LV->addVirtualRegisterDead(IncomingReg, PHICopy);
Chris Lattnerbc40e892003-01-13 20:01:16 +000094
Chris Lattner927ce5d2003-05-12 03:55:21 +000095 // Since we are going to be deleting the PHI node, if it is the last use
96 // of any registers, or if the value itself is dead, we need to move this
97 // information over to the new copy we just inserted...
98 //
99 std::pair<LiveVariables::killed_iterator, LiveVariables::killed_iterator>
100 RKs = LV->killed_range(MI);
101 if (RKs.first != RKs.second) {
102 for (LiveVariables::killed_iterator I = RKs.first; I != RKs.second; ++I)
103 LV->addVirtualRegisterKilled(I->second, PHICopy);
104 LV->removeVirtualRegistersKilled(RKs.first, RKs.second);
105 }
106
107 RKs = LV->dead_range(MI);
108 if (RKs.first != RKs.second) {
109 for (LiveVariables::killed_iterator I = RKs.first; I != RKs.second; ++I)
110 LV->addVirtualRegisterDead(I->second, PHICopy);
111 LV->removeVirtualRegistersDead(RKs.first, RKs.second);
112 }
113 }
114
115 // Now loop over all of the incoming arguments, changing them to copy into
Chris Lattnerbc40e892003-01-13 20:01:16 +0000116 // the IncomingReg register in the corresponding predecessor basic block.
117 //
118 for (int i = MI->getNumOperands() - 1; i >= 2; i-=2) {
119 MachineOperand &opVal = MI->getOperand(i-1);
120
121 // Get the MachineBasicBlock equivalent of the BasicBlock that is the
Chris Lattner927ce5d2003-05-12 03:55:21 +0000122 // source path the PHI.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000123 MachineBasicBlock &opBlock = *MI->getOperand(i).getMachineBasicBlock();
124
Chris Lattner98719d72003-05-12 04:08:54 +0000125 // Figure out where to insert the copy, which is at the end of the
126 // predecessor basic block, but before any terminator/branch
127 // instructions...
128 MachineBasicBlock::iterator I = opBlock.end();
129 if (I != opBlock.begin()) { // Handle empty blocks
130 --I;
131 // must backtrack over ALL the branches in the previous block
132 while (MII.isTerminatorInstr((*I)->getOpcode()) &&
133 I != opBlock.begin())
134 --I;
135
136 // move back to the first branch instruction so new instructions
137 // are inserted right in front of it and not in front of a non-branch
138 if (!MII.isTerminatorInstr((*I)->getOpcode()))
139 ++I;
140 }
141
Chris Lattnerbc40e892003-01-13 20:01:16 +0000142 // Check to make sure we haven't already emitted the copy for this block.
143 // This can happen because PHI nodes may have multiple entries for the
144 // same basic block. It doesn't matter which entry we use though, because
145 // all incoming values are guaranteed to be the same for a particular bb.
146 //
Chris Lattner98719d72003-05-12 04:08:54 +0000147 // If we emitted a copy for this basic block already, it will be right
148 // where we want to insert one now. Just check for a definition of the
149 // register we are interested in!
Chris Lattnerbc40e892003-01-13 20:01:16 +0000150 //
151 bool HaveNotEmitted = true;
Chris Lattner98719d72003-05-12 04:08:54 +0000152
153 if (I != opBlock.begin()) {
154 MachineInstr *PrevInst = *(I-1);
155 for (unsigned i = 0, e = PrevInst->getNumOperands(); i != e; ++i) {
156 MachineOperand &MO = PrevInst->getOperand(i);
157 if (MO.isVirtualRegister() && MO.getReg() == IncomingReg)
158 if (MO.opIsDef() || MO.opIsDefAndUse()) {
159 HaveNotEmitted = false;
160 break;
161 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000162 }
Chris Lattner98719d72003-05-12 04:08:54 +0000163 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000164
165 if (HaveNotEmitted) {
Chris Lattner98719d72003-05-12 04:08:54 +0000166 assert(opVal.isVirtualRegister() &&
167 "Machine PHI Operands must all be virtual registers!");
168 RegInfo->copyRegToReg(opBlock, I, IncomingReg, opVal.getReg(), RC);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000169 }
170 }
171
172 // really delete the PHI instruction now!
173 delete MI;
174 }
175
176 return true;
177}