blob: 9b5a115d93aa6971b7c1248eab01432519d0f9b1 [file] [log] [blame]
Chris Lattnerbc40e892003-01-13 20:01:16 +00001//===-- PhiElimination.cpp - Eliminate PHI nodes by inserting copies ------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattnercd3245a2006-12-19 22:41:21 +000016#define DEBUG_TYPE "phielim"
Misha Brukmand7a10c82005-05-05 23:45:17 +000017#include "llvm/CodeGen/LiveVariables.h"
Chris Lattner0742b592004-02-23 18:38:20 +000018#include "llvm/CodeGen/Passes.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000019#include "llvm/CodeGen/MachineFunctionPass.h"
20#include "llvm/CodeGen/MachineInstr.h"
21#include "llvm/CodeGen/SSARegMap.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000022#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000023#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/ADT/STLExtras.h"
Chris Lattner6db07562005-10-03 07:22:07 +000025#include "llvm/ADT/Statistic.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000026#include "llvm/Support/Compiler.h"
Chris Lattner53a79aa2005-10-03 04:47:08 +000027#include <set>
Chris Lattner6db07562005-10-03 07:22:07 +000028#include <algorithm>
Chris Lattner0742b592004-02-23 18:38:20 +000029using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000030
Chris Lattnercd3245a2006-12-19 22:41:21 +000031STATISTIC(NumAtomic, "Number of atomic phis lowered");
32//STATISTIC(NumSimple, "Number of simple phis lowered");
33
Chris Lattnerbc40e892003-01-13 20:01:16 +000034namespace {
Chris Lattner95255282006-06-28 23:17:24 +000035 struct VISIBILITY_HIDDEN PNE : public MachineFunctionPass {
Devang Patel19974732007-05-03 01:11:54 +000036 static char ID; // Pass identifcation, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000037 PNE() : MachineFunctionPass((intptr_t)&ID) {}
38
Chris Lattnerbc40e892003-01-13 20:01:16 +000039 bool runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingca756d22006-09-28 07:10:24 +000040 analyzePHINodes(Fn);
41
Chris Lattnerbc40e892003-01-13 20:01:16 +000042 bool Changed = false;
43
44 // Eliminate PHI instructions by inserting copies into predecessor blocks.
Chris Lattnerbc40e892003-01-13 20:01:16 +000045 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
Misha Brukmandedf2bd2005-04-22 04:01:18 +000046 Changed |= EliminatePHINodes(Fn, *I);
Chris Lattnerbc40e892003-01-13 20:01:16 +000047
Bill Wendlingca756d22006-09-28 07:10:24 +000048 VRegPHIUseCount.clear();
Chris Lattnerbc40e892003-01-13 20:01:16 +000049 return Changed;
50 }
51
52 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.addPreserved<LiveVariables>();
54 MachineFunctionPass::getAnalysisUsage(AU);
55 }
56
57 private:
58 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
59 /// in predecessor basic blocks.
60 ///
61 bool EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB);
Chris Lattner53a79aa2005-10-03 04:47:08 +000062 void LowerAtomicPHINode(MachineBasicBlock &MBB,
Bill Wendlingca756d22006-09-28 07:10:24 +000063 MachineBasicBlock::iterator AfterPHIsIt);
64
65 /// analyzePHINodes - Gather information about the PHI nodes in
66 /// here. In particular, we want to map the number of uses of a virtual
67 /// register which is used in a PHI node. We map that to the BB the
68 /// vreg is coming from. This is used later to determine when the vreg
69 /// is killed in the BB.
70 ///
71 void analyzePHINodes(const MachineFunction& Fn);
72
73 typedef std::pair<const MachineBasicBlock*, unsigned> BBVRegPair;
74 typedef std::map<BBVRegPair, unsigned> VRegPHIUse;
75
76 VRegPHIUse VRegPHIUseCount;
Chris Lattnerbc40e892003-01-13 20:01:16 +000077 };
78
Devang Patel19974732007-05-03 01:11:54 +000079 char PNE::ID = 0;
Chris Lattnerbc40e892003-01-13 20:01:16 +000080 RegisterPass<PNE> X("phi-node-elimination",
Misha Brukmandedf2bd2005-04-22 04:01:18 +000081 "Eliminate PHI nodes for register allocation");
Chris Lattnerbc40e892003-01-13 20:01:16 +000082}
83
Chris Lattner0742b592004-02-23 18:38:20 +000084const PassInfo *llvm::PHIEliminationID = X.getPassInfo();
Chris Lattnerbc40e892003-01-13 20:01:16 +000085
86/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
87/// predecessor basic blocks.
88///
89bool PNE::EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000090 if (MBB.empty() || MBB.front().getOpcode() != TargetInstrInfo::PHI)
Chris Lattner53a79aa2005-10-03 04:47:08 +000091 return false; // Quick exit for basic blocks without PHIs.
Chris Lattnerbc40e892003-01-13 20:01:16 +000092
Chris Lattner791f8962004-05-10 18:47:18 +000093 // Get an iterator to the first instruction after the last PHI node (this may
Chris Lattner53a79aa2005-10-03 04:47:08 +000094 // also be the end of the basic block).
Chris Lattner791f8962004-05-10 18:47:18 +000095 MachineBasicBlock::iterator AfterPHIsIt = MBB.begin();
96 while (AfterPHIsIt != MBB.end() &&
Chris Lattnerbee88722004-05-12 21:47:57 +000097 AfterPHIsIt->getOpcode() == TargetInstrInfo::PHI)
Chris Lattner791f8962004-05-10 18:47:18 +000098 ++AfterPHIsIt; // Skip over all of the PHI nodes...
99
Bill Wendlingca756d22006-09-28 07:10:24 +0000100 while (MBB.front().getOpcode() == TargetInstrInfo::PHI)
101 LowerAtomicPHINode(MBB, AfterPHIsIt);
102
Chris Lattner53a79aa2005-10-03 04:47:08 +0000103 return true;
104}
Misha Brukmanedf128a2005-04-21 22:36:52 +0000105
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000106/// InstructionUsesRegister - Return true if the specified machine instr has a
107/// use of the specified register.
108static bool InstructionUsesRegister(MachineInstr *MI, unsigned SrcReg) {
109 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
Chris Lattner103de772006-08-12 05:41:39 +0000110 if (MI->getOperand(i).isRegister() &&
111 MI->getOperand(i).getReg() == SrcReg &&
112 MI->getOperand(i).isUse())
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000113 return true;
114 return false;
115}
116
Chris Lattner53a79aa2005-10-03 04:47:08 +0000117/// LowerAtomicPHINode - Lower the PHI node at the top of the specified block,
118/// under the assuption that it needs to be lowered in a way that supports
119/// atomic execution of PHIs. This lowering method is always correct all of the
120/// time.
121void PNE::LowerAtomicPHINode(MachineBasicBlock &MBB,
Bill Wendlingca756d22006-09-28 07:10:24 +0000122 MachineBasicBlock::iterator AfterPHIsIt) {
Chris Lattner53a79aa2005-10-03 04:47:08 +0000123 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
124 MachineInstr *MPhi = MBB.remove(MBB.begin());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000125
Chris Lattner53a79aa2005-10-03 04:47:08 +0000126 unsigned DestReg = MPhi->getOperand(0).getReg();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000127
Bill Wendlingca756d22006-09-28 07:10:24 +0000128 // Create a new register for the incoming PHI arguments.
Chris Lattner53a79aa2005-10-03 04:47:08 +0000129 MachineFunction &MF = *MBB.getParent();
130 const TargetRegisterClass *RC = MF.getSSARegMap()->getRegClass(DestReg);
131 unsigned IncomingReg = MF.getSSARegMap()->createVirtualRegister(RC);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000132
Chris Lattner53a79aa2005-10-03 04:47:08 +0000133 // Insert a register to register copy in the top of the current block (but
134 // after any remaining phi nodes) which copies the new incoming register
135 // into the phi node destination.
136 //
137 const MRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
138 RegInfo->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC);
139
140 // Update live variable information if there is any...
141 LiveVariables *LV = getAnalysisToUpdate<LiveVariables>();
142 if (LV) {
143 MachineInstr *PHICopy = prior(AfterPHIsIt);
144
Evan Cheng3fefc182007-04-18 00:36:11 +0000145 // Increment use count of the newly created virtual register.
146 LV->getVarInfo(IncomingReg).NumUses++;
147
Chris Lattner53a79aa2005-10-03 04:47:08 +0000148 // Add information to LiveVariables to know that the incoming value is
149 // killed. Note that because the value is defined in several places (once
150 // each for each incoming block), the "def" block and instruction fields
151 // for the VarInfo is not filled in.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000152 //
Chris Lattner53a79aa2005-10-03 04:47:08 +0000153 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000154
Chris Lattner53a79aa2005-10-03 04:47:08 +0000155 // Since we are going to be deleting the PHI node, if it is the last use
156 // of any registers, or if the value itself is dead, we need to move this
157 // information over to the new copy we just inserted.
158 //
159 LV->removeVirtualRegistersKilled(MPhi);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000160
Chris Lattner6db07562005-10-03 07:22:07 +0000161 // If the result is dead, update LV.
162 if (LV->RegisterDefIsDead(MPhi, DestReg)) {
163 LV->addVirtualRegisterDead(DestReg, PHICopy);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000164 LV->removeVirtualRegistersDead(MPhi);
165 }
Chris Lattner172c3622006-01-04 06:47:48 +0000166
167 // Realize that the destination register is defined by the PHI copy now, not
168 // the PHI itself.
169 LV->getVarInfo(DestReg).DefInst = PHICopy;
Chris Lattner53a79aa2005-10-03 04:47:08 +0000170 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000171
Chris Lattner53a79aa2005-10-03 04:47:08 +0000172 // Adjust the VRegPHIUseCount map to account for the removal of this PHI
173 // node.
174 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
Bill Wendlingca756d22006-09-28 07:10:24 +0000175 --VRegPHIUseCount[BBVRegPair(
176 MPhi->getOperand(i + 1).getMachineBasicBlock(),
177 MPhi->getOperand(i).getReg())];
Chris Lattner572c7702003-05-12 14:28:28 +0000178
Chris Lattner53a79aa2005-10-03 04:47:08 +0000179 // Now loop over all of the incoming arguments, changing them to copy into
180 // the IncomingReg register in the corresponding predecessor basic block.
181 //
Chris Lattner6db07562005-10-03 07:22:07 +0000182 std::set<MachineBasicBlock*> MBBsInsertedInto;
Chris Lattner53a79aa2005-10-03 04:47:08 +0000183 for (int i = MPhi->getNumOperands() - 1; i >= 2; i-=2) {
Chris Lattner6db07562005-10-03 07:22:07 +0000184 unsigned SrcReg = MPhi->getOperand(i-1).getReg();
185 assert(MRegisterInfo::isVirtualRegister(SrcReg) &&
186 "Machine PHI Operands must all be virtual registers!");
Chris Lattner53a79aa2005-10-03 04:47:08 +0000187
188 // Get the MachineBasicBlock equivalent of the BasicBlock that is the
189 // source path the PHI.
190 MachineBasicBlock &opBlock = *MPhi->getOperand(i).getMachineBasicBlock();
191
Chris Lattner53a79aa2005-10-03 04:47:08 +0000192 // Check to make sure we haven't already emitted the copy for this block.
193 // This can happen because PHI nodes may have multiple entries for the
Chris Lattner6db07562005-10-03 07:22:07 +0000194 // same basic block.
195 if (!MBBsInsertedInto.insert(&opBlock).second)
196 continue; // If the copy has already been emitted, we're done.
197
198 // Get an iterator pointing to the first terminator in the block (or end()).
199 // This is the point where we can insert a copy if we'd like to.
200 MachineBasicBlock::iterator I = opBlock.getFirstTerminator();
201
202 // Insert the copy.
203 RegInfo->copyRegToReg(opBlock, I, IncomingReg, SrcReg, RC);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000204
Chris Lattner6db07562005-10-03 07:22:07 +0000205 // Now update live variable information if we have it. Otherwise we're done
206 if (!LV) continue;
207
208 // We want to be able to insert a kill of the register if this PHI
209 // (aka, the copy we just inserted) is the last use of the source
210 // value. Live variable analysis conservatively handles this by
211 // saying that the value is live until the end of the block the PHI
212 // entry lives in. If the value really is dead at the PHI copy, there
213 // will be no successor blocks which have the value live-in.
214 //
215 // Check to see if the copy is the last use, and if so, update the
216 // live variables information so that it knows the copy source
217 // instruction kills the incoming value.
218 //
219 LiveVariables::VarInfo &InRegVI = LV->getVarInfo(SrcReg);
220
221 // Loop over all of the successors of the basic block, checking to see
222 // if the value is either live in the block, or if it is killed in the
223 // block. Also check to see if this register is in use by another PHI
224 // node which has not yet been eliminated. If so, it will be killed
225 // at an appropriate point later.
226 //
227
228 // Is it used by any PHI instructions in this block?
Bill Wendlingca756d22006-09-28 07:10:24 +0000229 bool ValueIsLive = VRegPHIUseCount[BBVRegPair(&opBlock, SrcReg)] != 0;
Chris Lattner6db07562005-10-03 07:22:07 +0000230
231 std::vector<MachineBasicBlock*> OpSuccBlocks;
232
233 // Otherwise, scan successors, including the BB the PHI node lives in.
234 for (MachineBasicBlock::succ_iterator SI = opBlock.succ_begin(),
235 E = opBlock.succ_end(); SI != E && !ValueIsLive; ++SI) {
236 MachineBasicBlock *SuccMBB = *SI;
237
238 // Is it alive in this successor?
239 unsigned SuccIdx = SuccMBB->getNumber();
240 if (SuccIdx < InRegVI.AliveBlocks.size() &&
241 InRegVI.AliveBlocks[SuccIdx]) {
242 ValueIsLive = true;
243 break;
Chris Lattner927ce5d2003-05-12 03:55:21 +0000244 }
Chris Lattner6db07562005-10-03 07:22:07 +0000245
246 OpSuccBlocks.push_back(SuccMBB);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000247 }
248
Chris Lattner6db07562005-10-03 07:22:07 +0000249 // Check to see if this value is live because there is a use in a successor
250 // that kills it.
251 if (!ValueIsLive) {
252 switch (OpSuccBlocks.size()) {
253 case 1: {
254 MachineBasicBlock *MBB = OpSuccBlocks[0];
255 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
256 if (InRegVI.Kills[i]->getParent() == MBB) {
Chris Lattner53a79aa2005-10-03 04:47:08 +0000257 ValueIsLive = true;
258 break;
259 }
Chris Lattner6db07562005-10-03 07:22:07 +0000260 break;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000261 }
Chris Lattner6db07562005-10-03 07:22:07 +0000262 case 2: {
263 MachineBasicBlock *MBB1 = OpSuccBlocks[0], *MBB2 = OpSuccBlocks[1];
264 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
265 if (InRegVI.Kills[i]->getParent() == MBB1 ||
266 InRegVI.Kills[i]->getParent() == MBB2) {
267 ValueIsLive = true;
268 break;
269 }
270 break;
271 }
272 default:
273 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
274 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
275 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
276 InRegVI.Kills[i]->getParent())) {
277 ValueIsLive = true;
278 break;
279 }
280 }
281 }
282
283 // Okay, if we now know that the value is not live out of the block,
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000284 // we can add a kill marker in this block saying that it kills the incoming
285 // value!
Chris Lattner6db07562005-10-03 07:22:07 +0000286 if (!ValueIsLive) {
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000287 // In our final twist, we have to decide which instruction kills the
288 // register. In most cases this is the copy, however, the first
289 // terminator instruction at the end of the block may also use the value.
290 // In this case, we should mark *it* as being the killing block, not the
291 // copy.
292 bool FirstTerminatorUsesValue = false;
293 if (I != opBlock.end()) {
294 FirstTerminatorUsesValue = InstructionUsesRegister(I, SrcReg);
295
296 // Check that no other terminators use values.
297#ifndef NDEBUG
298 for (MachineBasicBlock::iterator TI = next(I); TI != opBlock.end();
299 ++TI) {
300 assert(!InstructionUsesRegister(TI, SrcReg) &&
301 "Terminator instructions cannot use virtual registers unless"
302 "they are the first terminator in a block!");
303 }
304#endif
305 }
306
307 MachineBasicBlock::iterator KillInst;
308 if (!FirstTerminatorUsesValue)
309 KillInst = prior(I);
310 else
311 KillInst = I;
312
313 // Finally, mark it killed.
314 LV->addVirtualRegisterKilled(SrcReg, KillInst);
Chris Lattner6db07562005-10-03 07:22:07 +0000315
316 // This vreg no longer lives all of the way through opBlock.
317 unsigned opBlockNum = opBlock.getNumber();
318 if (opBlockNum < InRegVI.AliveBlocks.size())
319 InRegVI.AliveBlocks[opBlockNum] = false;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000320 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000321 }
Chris Lattner53a79aa2005-10-03 04:47:08 +0000322
323 // Really delete the PHI instruction now!
324 delete MPhi;
Chris Lattner6db07562005-10-03 07:22:07 +0000325 ++NumAtomic;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000326}
Bill Wendlingca756d22006-09-28 07:10:24 +0000327
328/// analyzePHINodes - Gather information about the PHI nodes in here. In
329/// particular, we want to map the number of uses of a virtual register which is
330/// used in a PHI node. We map that to the BB the vreg is coming from. This is
331/// used later to determine when the vreg is killed in the BB.
332///
333void PNE::analyzePHINodes(const MachineFunction& Fn) {
334 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
335 I != E; ++I)
336 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
337 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
338 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
339 ++VRegPHIUseCount[BBVRegPair(
340 BBI->getOperand(i + 1).getMachineBasicBlock(),
341 BBI->getOperand(i).getReg())];
342}