blob: 9276937561b093a24beacb3a18a1970f8c90a018 [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// 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"
Chris Lattner84bc5422007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.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 {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000036 static char ID; // Pass identification, 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>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000054 AU.addPreservedID(MachineLoopInfoID);
55 AU.addPreservedID(MachineDominatorsID);
Chris Lattnerbc40e892003-01-13 20:01:16 +000056 MachineFunctionPass::getAnalysisUsage(AU);
57 }
58
59 private:
60 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
61 /// in predecessor basic blocks.
62 ///
63 bool EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB);
Chris Lattner53a79aa2005-10-03 04:47:08 +000064 void LowerAtomicPHINode(MachineBasicBlock &MBB,
Bill Wendlingca756d22006-09-28 07:10:24 +000065 MachineBasicBlock::iterator AfterPHIsIt);
66
67 /// analyzePHINodes - Gather information about the PHI nodes in
68 /// here. In particular, we want to map the number of uses of a virtual
69 /// register which is used in a PHI node. We map that to the BB the
70 /// vreg is coming from. This is used later to determine when the vreg
71 /// is killed in the BB.
72 ///
73 void analyzePHINodes(const MachineFunction& Fn);
74
75 typedef std::pair<const MachineBasicBlock*, unsigned> BBVRegPair;
76 typedef std::map<BBVRegPair, unsigned> VRegPHIUse;
77
78 VRegPHIUse VRegPHIUseCount;
Chris Lattnerbc40e892003-01-13 20:01:16 +000079 };
80
Devang Patel19974732007-05-03 01:11:54 +000081 char PNE::ID = 0;
Chris Lattnerbc40e892003-01-13 20:01:16 +000082 RegisterPass<PNE> X("phi-node-elimination",
Misha Brukmandedf2bd2005-04-22 04:01:18 +000083 "Eliminate PHI nodes for register allocation");
Chris Lattnerbc40e892003-01-13 20:01:16 +000084}
85
Chris Lattner0742b592004-02-23 18:38:20 +000086const PassInfo *llvm::PHIEliminationID = X.getPassInfo();
Chris Lattnerbc40e892003-01-13 20:01:16 +000087
88/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
89/// predecessor basic blocks.
90///
91bool PNE::EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000092 if (MBB.empty() || MBB.front().getOpcode() != TargetInstrInfo::PHI)
Chris Lattner53a79aa2005-10-03 04:47:08 +000093 return false; // Quick exit for basic blocks without PHIs.
Chris Lattnerbc40e892003-01-13 20:01:16 +000094
Chris Lattner791f8962004-05-10 18:47:18 +000095 // Get an iterator to the first instruction after the last PHI node (this may
Chris Lattner53a79aa2005-10-03 04:47:08 +000096 // also be the end of the basic block).
Chris Lattner791f8962004-05-10 18:47:18 +000097 MachineBasicBlock::iterator AfterPHIsIt = MBB.begin();
98 while (AfterPHIsIt != MBB.end() &&
Chris Lattnerbee88722004-05-12 21:47:57 +000099 AfterPHIsIt->getOpcode() == TargetInstrInfo::PHI)
Chris Lattner791f8962004-05-10 18:47:18 +0000100 ++AfterPHIsIt; // Skip over all of the PHI nodes...
101
Bill Wendlingca756d22006-09-28 07:10:24 +0000102 while (MBB.front().getOpcode() == TargetInstrInfo::PHI)
103 LowerAtomicPHINode(MBB, AfterPHIsIt);
104
Chris Lattner53a79aa2005-10-03 04:47:08 +0000105 return true;
106}
Misha Brukmanedf128a2005-04-21 22:36:52 +0000107
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000108/// InstructionUsesRegister - Return true if the specified machine instr has a
109/// use of the specified register.
110static bool InstructionUsesRegister(MachineInstr *MI, unsigned SrcReg) {
111 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
Chris Lattner103de772006-08-12 05:41:39 +0000112 if (MI->getOperand(i).isRegister() &&
113 MI->getOperand(i).getReg() == SrcReg &&
114 MI->getOperand(i).isUse())
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000115 return true;
116 return false;
117}
118
Chris Lattner53a79aa2005-10-03 04:47:08 +0000119/// LowerAtomicPHINode - Lower the PHI node at the top of the specified block,
120/// under the assuption that it needs to be lowered in a way that supports
121/// atomic execution of PHIs. This lowering method is always correct all of the
122/// time.
123void PNE::LowerAtomicPHINode(MachineBasicBlock &MBB,
Bill Wendlingca756d22006-09-28 07:10:24 +0000124 MachineBasicBlock::iterator AfterPHIsIt) {
Chris Lattner53a79aa2005-10-03 04:47:08 +0000125 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
126 MachineInstr *MPhi = MBB.remove(MBB.begin());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000127
Chris Lattner53a79aa2005-10-03 04:47:08 +0000128 unsigned DestReg = MPhi->getOperand(0).getReg();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000129
Bill Wendlingca756d22006-09-28 07:10:24 +0000130 // Create a new register for the incoming PHI arguments.
Chris Lattner53a79aa2005-10-03 04:47:08 +0000131 MachineFunction &MF = *MBB.getParent();
Chris Lattner84bc5422007-12-31 04:13:23 +0000132 const TargetRegisterClass *RC = MF.getRegInfo().getRegClass(DestReg);
133 unsigned IncomingReg = MF.getRegInfo().createVirtualRegister(RC);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000134
Chris Lattner53a79aa2005-10-03 04:47:08 +0000135 // Insert a register to register copy in the top of the current block (but
136 // after any remaining phi nodes) which copies the new incoming register
137 // into the phi node destination.
138 //
Owen Andersond10fd972007-12-31 06:32:00 +0000139 const TargetInstrInfo *TII = MF.getTarget().getInstrInfo();
140 TII->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC, RC);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000141
142 // Update live variable information if there is any...
143 LiveVariables *LV = getAnalysisToUpdate<LiveVariables>();
144 if (LV) {
145 MachineInstr *PHICopy = prior(AfterPHIsIt);
146
Evan Cheng3fefc182007-04-18 00:36:11 +0000147 // Increment use count of the newly created virtual register.
148 LV->getVarInfo(IncomingReg).NumUses++;
149
Chris Lattner53a79aa2005-10-03 04:47:08 +0000150 // Add information to LiveVariables to know that the incoming value is
151 // killed. Note that because the value is defined in several places (once
152 // each for each incoming block), the "def" block and instruction fields
153 // for the VarInfo is not filled in.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000154 //
Chris Lattner53a79aa2005-10-03 04:47:08 +0000155 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000156
Chris Lattner53a79aa2005-10-03 04:47:08 +0000157 // Since we are going to be deleting the PHI node, if it is the last use
158 // of any registers, or if the value itself is dead, we need to move this
159 // information over to the new copy we just inserted.
160 //
161 LV->removeVirtualRegistersKilled(MPhi);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000162
Chris Lattner6db07562005-10-03 07:22:07 +0000163 // If the result is dead, update LV.
164 if (LV->RegisterDefIsDead(MPhi, DestReg)) {
165 LV->addVirtualRegisterDead(DestReg, PHICopy);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000166 LV->removeVirtualRegistersDead(MPhi);
167 }
Chris Lattner172c3622006-01-04 06:47:48 +0000168
169 // Realize that the destination register is defined by the PHI copy now, not
170 // the PHI itself.
171 LV->getVarInfo(DestReg).DefInst = PHICopy;
Owen Andersona0185402007-11-08 01:20:48 +0000172
173 LV->getVarInfo(IncomingReg).UsedBlocks[MBB.getNumber()] = true;
Chris Lattner53a79aa2005-10-03 04:47:08 +0000174 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000175
Chris Lattner53a79aa2005-10-03 04:47:08 +0000176 // Adjust the VRegPHIUseCount map to account for the removal of this PHI
177 // node.
178 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
Chris Lattner8aa797a2007-12-30 23:10:15 +0000179 --VRegPHIUseCount[BBVRegPair(MPhi->getOperand(i + 1).getMBB(),
180 MPhi->getOperand(i).getReg())];
Chris Lattner572c7702003-05-12 14:28:28 +0000181
Chris Lattner53a79aa2005-10-03 04:47:08 +0000182 // Now loop over all of the incoming arguments, changing them to copy into
183 // the IncomingReg register in the corresponding predecessor basic block.
184 //
Chris Lattner6db07562005-10-03 07:22:07 +0000185 std::set<MachineBasicBlock*> MBBsInsertedInto;
Chris Lattner53a79aa2005-10-03 04:47:08 +0000186 for (int i = MPhi->getNumOperands() - 1; i >= 2; i-=2) {
Chris Lattner6db07562005-10-03 07:22:07 +0000187 unsigned SrcReg = MPhi->getOperand(i-1).getReg();
188 assert(MRegisterInfo::isVirtualRegister(SrcReg) &&
189 "Machine PHI Operands must all be virtual registers!");
Chris Lattner53a79aa2005-10-03 04:47:08 +0000190
191 // Get the MachineBasicBlock equivalent of the BasicBlock that is the
192 // source path the PHI.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000193 MachineBasicBlock &opBlock = *MPhi->getOperand(i).getMBB();
Chris Lattner53a79aa2005-10-03 04:47:08 +0000194
Chris Lattner53a79aa2005-10-03 04:47:08 +0000195 // Check to make sure we haven't already emitted the copy for this block.
196 // This can happen because PHI nodes may have multiple entries for the
Chris Lattner6db07562005-10-03 07:22:07 +0000197 // same basic block.
198 if (!MBBsInsertedInto.insert(&opBlock).second)
199 continue; // If the copy has already been emitted, we're done.
200
201 // Get an iterator pointing to the first terminator in the block (or end()).
202 // This is the point where we can insert a copy if we'd like to.
203 MachineBasicBlock::iterator I = opBlock.getFirstTerminator();
204
205 // Insert the copy.
Owen Andersond10fd972007-12-31 06:32:00 +0000206 TII->copyRegToReg(opBlock, I, IncomingReg, SrcReg, RC, RC);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000207
Chris Lattner6db07562005-10-03 07:22:07 +0000208 // Now update live variable information if we have it. Otherwise we're done
209 if (!LV) continue;
210
211 // We want to be able to insert a kill of the register if this PHI
212 // (aka, the copy we just inserted) is the last use of the source
213 // value. Live variable analysis conservatively handles this by
214 // saying that the value is live until the end of the block the PHI
215 // entry lives in. If the value really is dead at the PHI copy, there
216 // will be no successor blocks which have the value live-in.
217 //
218 // Check to see if the copy is the last use, and if so, update the
219 // live variables information so that it knows the copy source
220 // instruction kills the incoming value.
221 //
222 LiveVariables::VarInfo &InRegVI = LV->getVarInfo(SrcReg);
Owen Andersona0185402007-11-08 01:20:48 +0000223 InRegVI.UsedBlocks[opBlock.getNumber()] = true;
Chris Lattner6db07562005-10-03 07:22:07 +0000224
225 // Loop over all of the successors of the basic block, checking to see
226 // if the value is either live in the block, or if it is killed in the
227 // block. Also check to see if this register is in use by another PHI
228 // node which has not yet been eliminated. If so, it will be killed
229 // at an appropriate point later.
230 //
231
232 // Is it used by any PHI instructions in this block?
Bill Wendlingca756d22006-09-28 07:10:24 +0000233 bool ValueIsLive = VRegPHIUseCount[BBVRegPair(&opBlock, SrcReg)] != 0;
Chris Lattner6db07562005-10-03 07:22:07 +0000234
235 std::vector<MachineBasicBlock*> OpSuccBlocks;
236
237 // Otherwise, scan successors, including the BB the PHI node lives in.
238 for (MachineBasicBlock::succ_iterator SI = opBlock.succ_begin(),
239 E = opBlock.succ_end(); SI != E && !ValueIsLive; ++SI) {
240 MachineBasicBlock *SuccMBB = *SI;
241
242 // Is it alive in this successor?
243 unsigned SuccIdx = SuccMBB->getNumber();
244 if (SuccIdx < InRegVI.AliveBlocks.size() &&
245 InRegVI.AliveBlocks[SuccIdx]) {
246 ValueIsLive = true;
247 break;
Chris Lattner927ce5d2003-05-12 03:55:21 +0000248 }
Chris Lattner6db07562005-10-03 07:22:07 +0000249
250 OpSuccBlocks.push_back(SuccMBB);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000251 }
252
Chris Lattner6db07562005-10-03 07:22:07 +0000253 // Check to see if this value is live because there is a use in a successor
254 // that kills it.
255 if (!ValueIsLive) {
256 switch (OpSuccBlocks.size()) {
257 case 1: {
258 MachineBasicBlock *MBB = OpSuccBlocks[0];
259 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
260 if (InRegVI.Kills[i]->getParent() == MBB) {
Chris Lattner53a79aa2005-10-03 04:47:08 +0000261 ValueIsLive = true;
262 break;
263 }
Chris Lattner6db07562005-10-03 07:22:07 +0000264 break;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000265 }
Chris Lattner6db07562005-10-03 07:22:07 +0000266 case 2: {
267 MachineBasicBlock *MBB1 = OpSuccBlocks[0], *MBB2 = OpSuccBlocks[1];
268 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
269 if (InRegVI.Kills[i]->getParent() == MBB1 ||
270 InRegVI.Kills[i]->getParent() == MBB2) {
271 ValueIsLive = true;
272 break;
273 }
274 break;
275 }
276 default:
277 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
278 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
279 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
280 InRegVI.Kills[i]->getParent())) {
281 ValueIsLive = true;
282 break;
283 }
284 }
285 }
286
287 // Okay, if we now know that the value is not live out of the block,
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000288 // we can add a kill marker in this block saying that it kills the incoming
289 // value!
Chris Lattner6db07562005-10-03 07:22:07 +0000290 if (!ValueIsLive) {
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000291 // In our final twist, we have to decide which instruction kills the
292 // register. In most cases this is the copy, however, the first
293 // terminator instruction at the end of the block may also use the value.
294 // In this case, we should mark *it* as being the killing block, not the
295 // copy.
296 bool FirstTerminatorUsesValue = false;
297 if (I != opBlock.end()) {
298 FirstTerminatorUsesValue = InstructionUsesRegister(I, SrcReg);
299
300 // Check that no other terminators use values.
301#ifndef NDEBUG
302 for (MachineBasicBlock::iterator TI = next(I); TI != opBlock.end();
303 ++TI) {
304 assert(!InstructionUsesRegister(TI, SrcReg) &&
305 "Terminator instructions cannot use virtual registers unless"
306 "they are the first terminator in a block!");
307 }
308#endif
309 }
310
311 MachineBasicBlock::iterator KillInst;
312 if (!FirstTerminatorUsesValue)
313 KillInst = prior(I);
314 else
315 KillInst = I;
316
317 // Finally, mark it killed.
318 LV->addVirtualRegisterKilled(SrcReg, KillInst);
Chris Lattner6db07562005-10-03 07:22:07 +0000319
320 // This vreg no longer lives all of the way through opBlock.
321 unsigned opBlockNum = opBlock.getNumber();
322 if (opBlockNum < InRegVI.AliveBlocks.size())
323 InRegVI.AliveBlocks[opBlockNum] = false;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000324 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000325 }
Chris Lattner53a79aa2005-10-03 04:47:08 +0000326
327 // Really delete the PHI instruction now!
328 delete MPhi;
Chris Lattner6db07562005-10-03 07:22:07 +0000329 ++NumAtomic;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000330}
Bill Wendlingca756d22006-09-28 07:10:24 +0000331
332/// analyzePHINodes - Gather information about the PHI nodes in here. In
333/// particular, we want to map the number of uses of a virtual register which is
334/// used in a PHI node. We map that to the BB the vreg is coming from. This is
335/// used later to determine when the vreg is killed in the BB.
336///
337void PNE::analyzePHINodes(const MachineFunction& Fn) {
338 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
339 I != E; ++I)
340 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
341 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
342 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Chris Lattner8aa797a2007-12-30 23:10:15 +0000343 ++VRegPHIUseCount[BBVRegPair(BBI->getOperand(i + 1).getMBB(),
344 BBI->getOperand(i).getReg())];
Bill Wendlingca756d22006-09-28 07:10:24 +0000345}