blob: 6790b3f7b033e4a3cf3bfe0eeb523728da09d56e [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 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"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/ADT/DenseMap.h"
24#include "llvm/ADT/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>();
Chris Lattner9bcdcd12004-06-02 05:57:12 +000069 const TargetInstrInfo &MII = *MF.getTarget().getInstrInfo();
Chris Lattnerbc40e892003-01-13 20:01:16 +000070 const MRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
71
Chris Lattner80e20eb2004-05-10 19:06:37 +000072 // VRegPHIUseCount - Keep track of the number of times each virtual register
Chris Lattnerbee88722004-05-12 21:47:57 +000073 // is used by PHI nodes in successors of this block.
Chris Lattner8abf6932004-05-10 19:17:36 +000074 DenseMap<unsigned, VirtReg2IndexFunctor> VRegPHIUseCount;
75 VRegPHIUseCount.grow(MF.getSSARegMap()->getLastVirtReg());
Chris Lattner80e20eb2004-05-10 19:06:37 +000076
Chris Lattnerbee88722004-05-12 21:47:57 +000077 unsigned BBIsSuccOfPreds = 0; // Number of times MBB is a succ of preds
78 for (MachineBasicBlock::pred_iterator PI = MBB.pred_begin(),
79 E = MBB.pred_end(); PI != E; ++PI)
80 for (MachineBasicBlock::succ_iterator SI = (*PI)->succ_begin(),
81 E = (*PI)->succ_end(); SI != E; ++SI) {
82 BBIsSuccOfPreds += *SI == &MBB;
83 for (MachineBasicBlock::iterator BBI = (*SI)->begin(); BBI !=(*SI)->end() &&
84 BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
85 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
86 VRegPHIUseCount[BBI->getOperand(i).getReg()]++;
87 }
88
Chris Lattner791f8962004-05-10 18:47:18 +000089 // Get an iterator to the first instruction after the last PHI node (this may
Chris Lattnerbee88722004-05-12 21:47:57 +000090 // also be the end of the basic block). While we are scanning the PHIs,
Chris Lattner80e20eb2004-05-10 19:06:37 +000091 // populate the VRegPHIUseCount map.
Chris Lattner791f8962004-05-10 18:47:18 +000092 MachineBasicBlock::iterator AfterPHIsIt = MBB.begin();
93 while (AfterPHIsIt != MBB.end() &&
Chris Lattnerbee88722004-05-12 21:47:57 +000094 AfterPHIsIt->getOpcode() == TargetInstrInfo::PHI)
Chris Lattner791f8962004-05-10 18:47:18 +000095 ++AfterPHIsIt; // Skip over all of the PHI nodes...
96
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +000097 while (MBB.front().getOpcode() == TargetInstrInfo::PHI) {
Chris Lattnera7bfbba2004-07-22 23:05:12 +000098 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
99 MachineInstr *MPhi = MBB.remove(MBB.begin());
Misha Brukmanedf128a2005-04-21 22:36:52 +0000100
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000101 assert(MRegisterInfo::isVirtualRegister(MPhi->getOperand(0).getReg()) &&
Chris Lattnerbc40e892003-01-13 20:01:16 +0000102 "PHI node doesn't write virt reg?");
103
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000104 unsigned DestReg = MPhi->getOperand(0).getReg();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000105
Chris Lattnerbc40e892003-01-13 20:01:16 +0000106 // Create a new register for the incoming PHI arguments
107 const TargetRegisterClass *RC = MF.getSSARegMap()->getRegClass(DestReg);
108 unsigned IncomingReg = MF.getSSARegMap()->createVirtualRegister(RC);
109
Chris Lattner927ce5d2003-05-12 03:55:21 +0000110 // Insert a register to register copy in the top of the current block (but
Chris Lattnerbc40e892003-01-13 20:01:16 +0000111 // after any remaining phi nodes) which copies the new incoming register
112 // into the phi node destination.
113 //
Chris Lattnerbc40e892003-01-13 20:01:16 +0000114 RegInfo->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000115
Chris Lattner927ce5d2003-05-12 03:55:21 +0000116 // Update live variable information if there is any...
117 if (LV) {
Chris Lattner791f8962004-05-10 18:47:18 +0000118 MachineInstr *PHICopy = prior(AfterPHIsIt);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000119
Chris Lattner927ce5d2003-05-12 03:55:21 +0000120 // Add information to LiveVariables to know that the incoming value is
Chris Lattnerb52e0242003-05-12 17:37:30 +0000121 // killed. Note that because the value is defined in several places (once
122 // each for each incoming block), the "def" block and instruction fields
123 // for the VarInfo is not filled in.
Chris Lattner927ce5d2003-05-12 03:55:21 +0000124 //
Chris Lattner472405e2004-07-19 06:55:21 +0000125 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000126
Chris Lattner927ce5d2003-05-12 03:55:21 +0000127 // Since we are going to be deleting the PHI node, if it is the last use
128 // of any registers, or if the value itself is dead, we need to move this
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000129 // information over to the new copy we just inserted.
Chris Lattner927ce5d2003-05-12 03:55:21 +0000130 //
Misha Brukmanedf128a2005-04-21 22:36:52 +0000131 std::pair<LiveVariables::killed_iterator, LiveVariables::killed_iterator>
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000132 RKs = LV->killed_range(MPhi);
Chris Lattner572c7702003-05-12 14:28:28 +0000133 std::vector<std::pair<MachineInstr*, unsigned> > Range;
Chris Lattner94881e82004-07-23 05:27:43 +0000134 if (RKs.first != RKs.second) // Delete the range.
Chris Lattner927ce5d2003-05-12 03:55:21 +0000135 LV->removeVirtualRegistersKilled(RKs.first, RKs.second);
Chris Lattner572c7702003-05-12 14:28:28 +0000136
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000137 RKs = LV->dead_range(MPhi);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000138 if (RKs.first != RKs.second) {
Chris Lattner572c7702003-05-12 14:28:28 +0000139 // Works as above...
140 Range.assign(RKs.first, RKs.second);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000141 LV->removeVirtualRegistersDead(RKs.first, RKs.second);
Chris Lattner572c7702003-05-12 14:28:28 +0000142 for (unsigned i = 0, e = Range.size(); i != e; ++i)
Chris Lattner472405e2004-07-19 06:55:21 +0000143 LV->addVirtualRegisterDead(Range[i].second, PHICopy);
Chris Lattner927ce5d2003-05-12 03:55:21 +0000144 }
145 }
146
Chris Lattner80e20eb2004-05-10 19:06:37 +0000147 // Adjust the VRegPHIUseCount map to account for the removal of this PHI
148 // node.
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000149 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
150 VRegPHIUseCount[MPhi->getOperand(i).getReg()] -= BBIsSuccOfPreds;
Chris Lattner80e20eb2004-05-10 19:06:37 +0000151
Chris Lattner927ce5d2003-05-12 03:55:21 +0000152 // Now loop over all of the incoming arguments, changing them to copy into
Chris Lattnerbc40e892003-01-13 20:01:16 +0000153 // the IncomingReg register in the corresponding predecessor basic block.
154 //
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000155 for (int i = MPhi->getNumOperands() - 1; i >= 2; i-=2) {
156 MachineOperand &opVal = MPhi->getOperand(i-1);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000157
Chris Lattnerbc40e892003-01-13 20:01:16 +0000158 // Get the MachineBasicBlock equivalent of the BasicBlock that is the
Chris Lattner927ce5d2003-05-12 03:55:21 +0000159 // source path the PHI.
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000160 MachineBasicBlock &opBlock = *MPhi->getOperand(i).getMachineBasicBlock();
Chris Lattnerbc40e892003-01-13 20:01:16 +0000161
Alkis Evlogimenos743d0a12004-02-23 18:14:48 +0000162 MachineBasicBlock::iterator I = opBlock.getFirstTerminator();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000163
Chris Lattnerbc40e892003-01-13 20:01:16 +0000164 // Check to make sure we haven't already emitted the copy for this block.
165 // This can happen because PHI nodes may have multiple entries for the
166 // same basic block. It doesn't matter which entry we use though, because
167 // all incoming values are guaranteed to be the same for a particular bb.
168 //
Chris Lattner98719d72003-05-12 04:08:54 +0000169 // If we emitted a copy for this basic block already, it will be right
170 // where we want to insert one now. Just check for a definition of the
171 // register we are interested in!
Chris Lattnerbc40e892003-01-13 20:01:16 +0000172 //
173 bool HaveNotEmitted = true;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000174
Chris Lattner98719d72003-05-12 04:08:54 +0000175 if (I != opBlock.begin()) {
Alkis Evlogimenosf81af212004-02-14 01:18:34 +0000176 MachineBasicBlock::iterator PrevInst = prior(I);
Chris Lattner98719d72003-05-12 04:08:54 +0000177 for (unsigned i = 0, e = PrevInst->getNumOperands(); i != e; ++i) {
178 MachineOperand &MO = PrevInst->getOperand(i);
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000179 if (MO.isRegister() && MO.getReg() == IncomingReg)
Alkis Evlogimenos4d7af652003-12-14 13:24:17 +0000180 if (MO.isDef()) {
Chris Lattner98719d72003-05-12 04:08:54 +0000181 HaveNotEmitted = false;
182 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000183 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000184 }
Chris Lattner98719d72003-05-12 04:08:54 +0000185 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000186
Chris Lattner572c7702003-05-12 14:28:28 +0000187 if (HaveNotEmitted) { // If the copy has not already been emitted, do it.
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000188 assert(MRegisterInfo::isVirtualRegister(opVal.getReg()) &&
Chris Lattner98719d72003-05-12 04:08:54 +0000189 "Machine PHI Operands must all be virtual registers!");
Chris Lattner572c7702003-05-12 14:28:28 +0000190 unsigned SrcReg = opVal.getReg();
191 RegInfo->copyRegToReg(opBlock, I, IncomingReg, SrcReg, RC);
192
193 // Now update live variable information if we have it.
194 if (LV) {
195 // We want to be able to insert a kill of the register if this PHI
196 // (aka, the copy we just inserted) is the last use of the source
197 // value. Live variable analysis conservatively handles this by
198 // saying that the value is live until the end of the block the PHI
199 // entry lives in. If the value really is dead at the PHI copy, there
200 // will be no successor blocks which have the value live-in.
201 //
202 // Check to see if the copy is the last use, and if so, update the
203 // live variables information so that it knows the copy source
204 // instruction kills the incoming value.
205 //
206 LiveVariables::VarInfo &InRegVI = LV->getVarInfo(SrcReg);
207
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000208 // Loop over all of the successors of the basic block, checking to see
209 // if the value is either live in the block, or if it is killed in the
210 // block. Also check to see if this register is in use by another PHI
211 // node which has not yet been eliminated. If so, it will be killed
212 // at an appropriate point later.
Chris Lattner572c7702003-05-12 14:28:28 +0000213 //
214 bool ValueIsLive = false;
Chris Lattner015959e2004-05-01 21:24:39 +0000215 for (MachineBasicBlock::succ_iterator SI = opBlock.succ_begin(),
216 E = opBlock.succ_end(); SI != E && !ValueIsLive; ++SI) {
Chris Lattnerbee88722004-05-12 21:47:57 +0000217 MachineBasicBlock *SuccMBB = *SI;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000218
Chris Lattner572c7702003-05-12 14:28:28 +0000219 // Is it alive in this successor?
Chris Lattner8ba97712004-07-01 04:29:47 +0000220 unsigned SuccIdx = SuccMBB->getNumber();
Chris Lattner572c7702003-05-12 14:28:28 +0000221 if (SuccIdx < InRegVI.AliveBlocks.size() &&
222 InRegVI.AliveBlocks[SuccIdx]) {
223 ValueIsLive = true;
224 break;
225 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000226
Chris Lattner572c7702003-05-12 14:28:28 +0000227 // Is it killed in this successor?
Chris Lattner572c7702003-05-12 14:28:28 +0000228 for (unsigned i = 0, e = InRegVI.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +0000229 if (InRegVI.Kills[i]->getParent() == SuccMBB) {
Chris Lattner572c7702003-05-12 14:28:28 +0000230 ValueIsLive = true;
231 break;
232 }
Chris Lattner08d2e4e2003-06-05 17:15:04 +0000233
234 // Is it used by any PHI instructions in this block?
Chris Lattner8abf6932004-05-10 19:17:36 +0000235 if (!ValueIsLive)
236 ValueIsLive = VRegPHIUseCount[SrcReg] != 0;
Chris Lattner572c7702003-05-12 14:28:28 +0000237 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000238
Chris Lattner572c7702003-05-12 14:28:28 +0000239 // Okay, if we now know that the value is not live out of the block,
240 // we can add a kill marker to the copy we inserted saying that it
241 // kills the incoming value!
242 //
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000243 if (!ValueIsLive) {
Alkis Evlogimenosf81af212004-02-14 01:18:34 +0000244 MachineBasicBlock::iterator Prev = prior(I);
Chris Lattner472405e2004-07-19 06:55:21 +0000245 LV->addVirtualRegisterKilled(SrcReg, Prev);
Chris Lattner94881e82004-07-23 05:27:43 +0000246
247 // This vreg no longer lives all of the way through opBlock.
248 unsigned opBlockNum = opBlock.getNumber();
249 if (opBlockNum < InRegVI.AliveBlocks.size())
250 InRegVI.AliveBlocks[opBlockNum] = false;
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000251 }
Chris Lattner572c7702003-05-12 14:28:28 +0000252 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000253 }
254 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000255
Chris Lattnera7bfbba2004-07-22 23:05:12 +0000256 // Really delete the PHI instruction now!
257 delete MPhi;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000258 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000259 return true;
260}