blob: 181fe469a13a9ad8e0f3d158f606226a1eb87bad [file] [log] [blame]
Chris Lattnerbc40e892003-01-13 20:01:16 +00001//===-- PhiElimination.cpp - Eliminate PHI nodes by inserting copies ------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnerbc40e892003-01-13 20:01:16 +00009//
10// This pass eliminates machine instruction PHI nodes by inserting copy
11// instructions. This destroys SSA information, but is the desired input for
12// some register allocators.
13//
14//===----------------------------------------------------------------------===//
15
Chris Lattner0742b592004-02-23 18:38:20 +000016#include "llvm/CodeGen/Passes.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
18#include "llvm/CodeGen/MachineInstr.h"
19#include "llvm/CodeGen/SSARegMap.h"
20#include "llvm/CodeGen/LiveVariables.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000021#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000022#include "llvm/Target/TargetMachine.h"
Chris Lattner572c7702003-05-12 14:28:28 +000023#include "llvm/Support/CFG.h"
Alkis Evlogimenosf81af212004-02-14 01:18:34 +000024#include "Support/STLExtras.h"
Chris Lattner0742b592004-02-23 18:38:20 +000025using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000026
Chris Lattnerbc40e892003-01-13 20:01:16 +000027namespace {
28 struct PNE : public MachineFunctionPass {
29 bool runOnMachineFunction(MachineFunction &Fn) {
30 bool Changed = false;
31
32 // Eliminate PHI instructions by inserting copies into predecessor blocks.
33 //
34 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
35 Changed |= EliminatePHINodes(Fn, *I);
36
37 //std::cerr << "AFTER PHI NODE ELIM:\n";
38 //Fn.dump();
39 return Changed;
40 }
41
42 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
43 AU.addPreserved<LiveVariables>();
44 MachineFunctionPass::getAnalysisUsage(AU);
45 }
46
47 private:
48 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
49 /// in predecessor basic blocks.
50 ///
51 bool EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB);
52 };
53
54 RegisterPass<PNE> X("phi-node-elimination",
55 "Eliminate PHI nodes for register allocation");
56}
57
Brian Gaeked0fde302003-11-11 22:41:34 +000058
Chris Lattner0742b592004-02-23 18:38:20 +000059const PassInfo *llvm::PHIEliminationID = X.getPassInfo();
Chris Lattnerbc40e892003-01-13 20:01:16 +000060
61/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
62/// predecessor basic blocks.
63///
64bool PNE::EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000065 if (MBB.empty() || MBB.front().getOpcode() != TargetInstrInfo::PHI)
Chris Lattnerbc40e892003-01-13 20:01:16 +000066 return false; // Quick exit for normal case...
67
68 LiveVariables *LV = getAnalysisToUpdate<LiveVariables>();
69 const TargetInstrInfo &MII = MF.getTarget().getInstrInfo();
70 const MRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
71
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000072 while (MBB.front().getOpcode() == TargetInstrInfo::PHI) {
Chris Lattnerbc40e892003-01-13 20:01:16 +000073 // Unlink the PHI node from the basic block... but don't delete the PHI yet
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000074 MachineBasicBlock::iterator begin = MBB.begin();
75 MachineInstr *MI = MBB.remove(begin);
76
Chris Lattner1cbe4d02004-02-10 21:12:22 +000077 assert(MRegisterInfo::isVirtualRegister(MI->getOperand(0).getReg()) &&
Chris Lattnerbc40e892003-01-13 20:01:16 +000078 "PHI node doesn't write virt reg?");
79
Alkis Evlogimenosbe766c72004-02-13 21:01:20 +000080 unsigned DestReg = MI->getOperand(0).getReg();
Chris Lattnerbc40e892003-01-13 20:01:16 +000081
82 // Create a new register for the incoming PHI arguments
83 const TargetRegisterClass *RC = MF.getSSARegMap()->getRegClass(DestReg);
84 unsigned IncomingReg = MF.getSSARegMap()->createVirtualRegister(RC);
85
Chris Lattner927ce5d2003-05-12 03:55:21 +000086 // Insert a register to register copy in the top of the current block (but
Chris Lattnerbc40e892003-01-13 20:01:16 +000087 // after any remaining phi nodes) which copies the new incoming register
88 // into the phi node destination.
89 //
90 MachineBasicBlock::iterator AfterPHIsIt = MBB.begin();
Chris Lattnera13f0d32003-05-12 14:26:38 +000091 while (AfterPHIsIt != MBB.end() &&
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000092 AfterPHIsIt->getOpcode() == TargetInstrInfo::PHI)
Chris Lattnera13f0d32003-05-12 14:26:38 +000093 ++AfterPHIsIt; // Skip over all of the PHI nodes...
Chris Lattnerbc40e892003-01-13 20:01:16 +000094 RegInfo->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC);
Chris Lattner927ce5d2003-05-12 03:55:21 +000095
96 // Update live variable information if there is any...
97 if (LV) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000098 MachineInstr *PHICopy = --AfterPHIsIt;
Chris Lattnerbc40e892003-01-13 20:01:16 +000099
Chris Lattner927ce5d2003-05-12 03:55:21 +0000100 // Add information to LiveVariables to know that the incoming value is
Chris Lattnerb52e0242003-05-12 17:37:30 +0000101 // killed. Note that because the value is defined in several places (once
102 // each for each incoming block), the "def" block and instruction fields
103 // for the VarInfo is not filled in.
Chris Lattner927ce5d2003-05-12 03:55:21 +0000104 //
Chris Lattnerb52e0242003-05-12 17:37:30 +0000105 LV->addVirtualRegisterKilled(IncomingReg, &MBB, PHICopy);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000106
Chris Lattner927ce5d2003-05-12 03:55:21 +0000107 // Since we are going to be deleting the PHI node, if it is the last use
108 // of any registers, or if the value itself is dead, we need to move this
109 // information over to the new copy we just inserted...
110 //
111 std::pair<LiveVariables::killed_iterator, LiveVariables::killed_iterator>
112 RKs = LV->killed_range(MI);
Chris Lattner572c7702003-05-12 14:28:28 +0000113 std::vector<std::pair<MachineInstr*, unsigned> > Range;
Chris Lattner927ce5d2003-05-12 03:55:21 +0000114 if (RKs.first != RKs.second) {
Chris Lattner572c7702003-05-12 14:28:28 +0000115 // Copy the range into a vector...
116 Range.assign(RKs.first, RKs.second);
117
118 // Delete the range...
Chris Lattner927ce5d2003-05-12 03:55:21 +0000119 LV->removeVirtualRegistersKilled(RKs.first, RKs.second);
Chris Lattner572c7702003-05-12 14:28:28 +0000120
121 // Add all of the kills back, which will update the appropriate info...
122 for (unsigned i = 0, e = Range.size(); i != e; ++i)
123 LV->addVirtualRegisterKilled(Range[i].second, &MBB, PHICopy);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000124 }
125
126 RKs = LV->dead_range(MI);
127 if (RKs.first != RKs.second) {
Chris Lattner572c7702003-05-12 14:28:28 +0000128 // Works as above...
129 Range.assign(RKs.first, RKs.second);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000130 LV->removeVirtualRegistersDead(RKs.first, RKs.second);
Chris Lattner572c7702003-05-12 14:28:28 +0000131 for (unsigned i = 0, e = Range.size(); i != e; ++i)
132 LV->addVirtualRegisterDead(Range[i].second, &MBB, PHICopy);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000133 }
134 }
135
136 // Now loop over all of the incoming arguments, changing them to copy into
Chris Lattnerbc40e892003-01-13 20:01:16 +0000137 // the IncomingReg register in the corresponding predecessor basic block.
138 //
139 for (int i = MI->getNumOperands() - 1; i >= 2; i-=2) {
140 MachineOperand &opVal = MI->getOperand(i-1);
141
142 // Get the MachineBasicBlock equivalent of the BasicBlock that is the
Chris Lattner927ce5d2003-05-12 03:55:21 +0000143 // source path the PHI.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000144 MachineBasicBlock &opBlock = *MI->getOperand(i).getMachineBasicBlock();
145
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +0000146 MachineBasicBlock::iterator I = opBlock.getFirstTerminator();
Chris Lattner98719d72003-05-12 04:08:54 +0000147
Chris Lattnerbc40e892003-01-13 20:01:16 +0000148 // Check to make sure we haven't already emitted the copy for this block.
149 // This can happen because PHI nodes may have multiple entries for the
150 // same basic block. It doesn't matter which entry we use though, because
151 // all incoming values are guaranteed to be the same for a particular bb.
152 //
Chris Lattner98719d72003-05-12 04:08:54 +0000153 // If we emitted a copy for this basic block already, it will be right
154 // where we want to insert one now. Just check for a definition of the
155 // register we are interested in!
Chris Lattnerbc40e892003-01-13 20:01:16 +0000156 //
157 bool HaveNotEmitted = true;
Chris Lattner98719d72003-05-12 04:08:54 +0000158
159 if (I != opBlock.begin()) {
Alkis Evlogimenosf81af212004-02-14 01:18:34 +0000160 MachineBasicBlock::iterator PrevInst = prior(I);
Chris Lattner98719d72003-05-12 04:08:54 +0000161 for (unsigned i = 0, e = PrevInst->getNumOperands(); i != e; ++i) {
162 MachineOperand &MO = PrevInst->getOperand(i);
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000163 if (MO.isRegister() && MO.getReg() == IncomingReg)
Alkis Evlogimenos4d7af652003-12-14 13:24:17 +0000164 if (MO.isDef()) {
Chris Lattner98719d72003-05-12 04:08:54 +0000165 HaveNotEmitted = false;
166 break;
167 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000168 }
Chris Lattner98719d72003-05-12 04:08:54 +0000169 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000170
Chris Lattner572c7702003-05-12 14:28:28 +0000171 if (HaveNotEmitted) { // If the copy has not already been emitted, do it.
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000172 assert(MRegisterInfo::isVirtualRegister(opVal.getReg()) &&
Chris Lattner98719d72003-05-12 04:08:54 +0000173 "Machine PHI Operands must all be virtual registers!");
Chris Lattner572c7702003-05-12 14:28:28 +0000174 unsigned SrcReg = opVal.getReg();
175 RegInfo->copyRegToReg(opBlock, I, IncomingReg, SrcReg, RC);
176
177 // Now update live variable information if we have it.
178 if (LV) {
179 // We want to be able to insert a kill of the register if this PHI
180 // (aka, the copy we just inserted) is the last use of the source
181 // value. Live variable analysis conservatively handles this by
182 // saying that the value is live until the end of the block the PHI
183 // entry lives in. If the value really is dead at the PHI copy, there
184 // will be no successor blocks which have the value live-in.
185 //
186 // Check to see if the copy is the last use, and if so, update the
187 // live variables information so that it knows the copy source
188 // instruction kills the incoming value.
189 //
190 LiveVariables::VarInfo &InRegVI = LV->getVarInfo(SrcReg);
191
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000192 // Loop over all of the successors of the basic block, checking to see
193 // if the value is either live in the block, or if it is killed in the
194 // block. Also check to see if this register is in use by another PHI
195 // node which has not yet been eliminated. If so, it will be killed
196 // at an appropriate point later.
Chris Lattner572c7702003-05-12 14:28:28 +0000197 //
198 bool ValueIsLive = false;
Chris Lattner9e2dd8f2003-07-26 23:24:56 +0000199 const BasicBlock *BB = opBlock.getBasicBlock();
200 for (succ_const_iterator SI = succ_begin(BB), E = succ_end(BB);
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000201 SI != E && !ValueIsLive; ++SI) {
Chris Lattner572c7702003-05-12 14:28:28 +0000202 const std::pair<MachineBasicBlock*, unsigned> &
203 SuccInfo = LV->getBasicBlockInfo(*SI);
204
205 // Is it alive in this successor?
206 unsigned SuccIdx = SuccInfo.second;
207 if (SuccIdx < InRegVI.AliveBlocks.size() &&
208 InRegVI.AliveBlocks[SuccIdx]) {
209 ValueIsLive = true;
210 break;
211 }
212
213 // Is it killed in this successor?
214 MachineBasicBlock *MBB = SuccInfo.first;
215 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
216 if (InRegVI.Kills[i].first == MBB) {
217 ValueIsLive = true;
218 break;
219 }
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000220
221 // Is it used by any PHI instructions in this block?
222 if (ValueIsLive) break;
223
224 // Loop over all of the PHIs in this successor, checking to see if
225 // the register is being used...
226 for (MachineBasicBlock::iterator BBI = MBB->begin(), E=MBB->end();
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000227 BBI != E && BBI->getOpcode() == TargetInstrInfo::PHI;
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000228 ++BBI)
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000229 for (unsigned i = 1, e = BBI->getNumOperands(); i < e; i += 2)
230 if (BBI->getOperand(i).getReg() == SrcReg) {
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000231 ValueIsLive = true;
232 break;
233 }
Chris Lattner572c7702003-05-12 14:28:28 +0000234 }
235
236 // Okay, if we now know that the value is not live out of the block,
237 // we can add a kill marker to the copy we inserted saying that it
238 // kills the incoming value!
239 //
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000240 if (!ValueIsLive) {
Alkis Evlogimenosf81af212004-02-14 01:18:34 +0000241 MachineBasicBlock::iterator Prev = prior(I);
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000242 LV->addVirtualRegisterKilled(SrcReg, &opBlock, Prev);
243 }
Chris Lattner572c7702003-05-12 14:28:28 +0000244 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000245 }
246 }
247
248 // really delete the PHI instruction now!
249 delete MI;
250 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000251 return true;
252}