blob: 9adc56234a0cbacbf0316c276d56da3a81b5f584 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PhiElimination.cpp - Eliminate PHI nodes by inserting copies ------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
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
16#define DEBUG_TYPE "phielim"
Lang Hames6ffaeb42009-07-21 23:47:33 +000017#include "PHIElimination.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/CodeGen/LiveVariables.h"
19#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen4e3a7412009-11-14 00:38:06 +000020#include "llvm/CodeGen/MachineDominators.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng59d43002008-04-11 17:54:45 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +000024#include "llvm/Function.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/Target/TargetMachine.h"
Evan Cheng7b66cd12008-04-03 16:38:20 +000026#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/ADT/STLExtras.h"
28#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000029#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/Support/Compiler.h"
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000031#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include <algorithm>
Evan Cheng0d34ac92008-04-02 17:23:50 +000033#include <map>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034using namespace llvm;
35
36STATISTIC(NumAtomic, "Number of atomic phis lowered");
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000037STATISTIC(NumSplits, "Number of critical edges split on demand");
38
39static cl::opt<bool>
40SplitEdges("split-phi-edges",
41 cl::desc("Split critical edges during phi elimination"),
Jakob Stoklund Olesen3bf51602009-11-17 01:07:22 +000042 cl::init(true), cl::Hidden);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043
Lang Hames6ffaeb42009-07-21 23:47:33 +000044char PHIElimination::ID = 0;
45static RegisterPass<PHIElimination>
Dan Gohman089efff2008-05-13 00:00:25 +000046X("phi-node-elimination", "Eliminate PHI nodes for register allocation");
47
Dan Gohman66a636e2008-05-13 02:05:11 +000048const PassInfo *const llvm::PHIEliminationID = &X;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
Lang Hames6ffaeb42009-07-21 23:47:33 +000050void llvm::PHIElimination::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohmanecb436f2009-07-31 23:37:33 +000051 AU.addPreserved<LiveVariables>();
Jakob Stoklund Olesen4e3a7412009-11-14 00:38:06 +000052 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000053 if (SplitEdges) {
54 AU.addRequired<LiveVariables>();
55 } else {
56 AU.setPreservesCFG();
57 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000058 }
Dan Gohmanecb436f2009-07-31 23:37:33 +000059 MachineFunctionPass::getAnalysisUsage(AU);
60}
Lang Hames6ffaeb42009-07-21 23:47:33 +000061
62bool llvm::PHIElimination::runOnMachineFunction(MachineFunction &Fn) {
Evan Cheng7b66cd12008-04-03 16:38:20 +000063 MRI = &Fn.getRegInfo();
64
Lang Hames0ef653e2009-07-23 05:44:24 +000065 PHIDefs.clear();
66 PHIKills.clear();
Evan Cheng7b66cd12008-04-03 16:38:20 +000067 bool Changed = false;
68
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +000069 // Split critical edges to help the coalescer
70 if (SplitEdges)
71 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
72 Changed |= SplitPHIEdges(Fn, *I);
73
74 // Populate VRegPHIUseCount
75 analyzePHINodes(Fn);
76
Evan Cheng7b66cd12008-04-03 16:38:20 +000077 // Eliminate PHI instructions by inserting copies into predecessor blocks.
78 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
79 Changed |= EliminatePHINodes(Fn, *I);
80
81 // Remove dead IMPLICIT_DEF instructions.
82 for (SmallPtrSet<MachineInstr*,4>::iterator I = ImpDefs.begin(),
83 E = ImpDefs.end(); I != E; ++I) {
84 MachineInstr *DefMI = *I;
85 unsigned DefReg = DefMI->getOperand(0).getReg();
Evan Chenga43fc8c2008-06-19 01:21:26 +000086 if (MRI->use_empty(DefReg))
Evan Cheng7b66cd12008-04-03 16:38:20 +000087 DefMI->eraseFromParent();
88 }
89
90 ImpDefs.clear();
91 VRegPHIUseCount.clear();
92 return Changed;
93}
94
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
96/// predecessor basic blocks.
97///
Lang Hames6ffaeb42009-07-21 23:47:33 +000098bool llvm::PHIElimination::EliminatePHINodes(MachineFunction &MF,
99 MachineBasicBlock &MBB) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 if (MBB.empty() || MBB.front().getOpcode() != TargetInstrInfo::PHI)
101 return false; // Quick exit for basic blocks without PHIs.
102
103 // Get an iterator to the first instruction after the last PHI node (this may
104 // also be the end of the basic block).
Duncan Sands5ce58d02009-03-17 09:46:22 +0000105 MachineBasicBlock::iterator AfterPHIsIt = SkipPHIsAndLabels(MBB, MBB.begin());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
107 while (MBB.front().getOpcode() == TargetInstrInfo::PHI)
108 LowerAtomicPHINode(MBB, AfterPHIsIt);
109
110 return true;
111}
112
Evan Chenga43fc8c2008-06-19 01:21:26 +0000113/// isSourceDefinedByImplicitDef - Return true if all sources of the phi node
114/// are implicit_def's.
Bill Wendling49beda22008-05-12 22:15:05 +0000115static bool isSourceDefinedByImplicitDef(const MachineInstr *MPhi,
Evan Chenga43fc8c2008-06-19 01:21:26 +0000116 const MachineRegisterInfo *MRI) {
Evan Cheng7418d082008-05-10 00:17:50 +0000117 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2) {
118 unsigned SrcReg = MPhi->getOperand(i).getReg();
Bill Wendling49beda22008-05-12 22:15:05 +0000119 const MachineInstr *DefMI = MRI->getVRegDef(SrcReg);
Evan Cheng7418d082008-05-10 00:17:50 +0000120 if (!DefMI || DefMI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF)
121 return false;
122 }
123 return true;
Evan Cheng59d43002008-04-11 17:54:45 +0000124}
125
Jakob Stoklund Olesenabb56222009-11-13 21:56:15 +0000126// FindCopyInsertPoint - Find a safe place in MBB to insert a copy from SrcReg
127// when following the CFG edge to SuccMBB. This needs to be after any def of
128// SrcReg, but before any subsequent point where control flow might jump out of
129// the basic block.
Lang Hames6ffaeb42009-07-21 23:47:33 +0000130MachineBasicBlock::iterator
131llvm::PHIElimination::FindCopyInsertPoint(MachineBasicBlock &MBB,
Jakob Stoklund Olesenabb56222009-11-13 21:56:15 +0000132 MachineBasicBlock &SuccMBB,
Lang Hames6ffaeb42009-07-21 23:47:33 +0000133 unsigned SrcReg) {
Duncan Sands5ce58d02009-03-17 09:46:22 +0000134 // Handle the trivial case trivially.
135 if (MBB.empty())
136 return MBB.begin();
Evan Cheng81b44352009-03-13 22:59:14 +0000137
Jakob Stoklund Olesenabb56222009-11-13 21:56:15 +0000138 // Usually, we just want to insert the copy before the first terminator
139 // instruction. However, for the edge going to a landing pad, we must insert
140 // the copy before the call/invoke instruction.
141 if (!SuccMBB.isLandingPad())
Duncan Sands5ce58d02009-03-17 09:46:22 +0000142 return MBB.getFirstTerminator();
143
Lang Hames248a8542009-11-16 02:00:09 +0000144 // Discover any defs/uses in this basic block.
Duncan Sands5ce58d02009-03-17 09:46:22 +0000145 SmallPtrSet<MachineInstr*, 8> DefUsesInMBB;
Lang Hames248a8542009-11-16 02:00:09 +0000146 for (MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(SrcReg),
147 RE = MRI->reg_end(); RI != RE; ++RI) {
Duncan Sands5ce58d02009-03-17 09:46:22 +0000148 MachineInstr *DefUseMI = &*RI;
149 if (DefUseMI->getParent() == &MBB)
150 DefUsesInMBB.insert(DefUseMI);
Evan Cheng81b44352009-03-13 22:59:14 +0000151 }
152
Duncan Sands5ce58d02009-03-17 09:46:22 +0000153 MachineBasicBlock::iterator InsertPoint;
154 if (DefUsesInMBB.empty()) {
Jakob Stoklund Olesenabb56222009-11-13 21:56:15 +0000155 // No defs. Insert the copy at the start of the basic block.
Duncan Sands5ce58d02009-03-17 09:46:22 +0000156 InsertPoint = MBB.begin();
157 } else if (DefUsesInMBB.size() == 1) {
Lang Hames248a8542009-11-16 02:00:09 +0000158 // Insert the copy immediately after the def/use.
Duncan Sands5ce58d02009-03-17 09:46:22 +0000159 InsertPoint = *DefUsesInMBB.begin();
160 ++InsertPoint;
161 } else {
Lang Hames248a8542009-11-16 02:00:09 +0000162 // Insert the copy immediately after the last def/use.
Duncan Sands5ce58d02009-03-17 09:46:22 +0000163 InsertPoint = MBB.end();
164 while (!DefUsesInMBB.count(&*--InsertPoint)) {}
165 ++InsertPoint;
Evan Cheng81b44352009-03-13 22:59:14 +0000166 }
Duncan Sands5ce58d02009-03-17 09:46:22 +0000167
168 // Make sure the copy goes after any phi nodes however.
169 return SkipPHIsAndLabels(MBB, InsertPoint);
Evan Cheng81b44352009-03-13 22:59:14 +0000170}
171
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172/// LowerAtomicPHINode - Lower the PHI node at the top of the specified block,
173/// under the assuption that it needs to be lowered in a way that supports
174/// atomic execution of PHIs. This lowering method is always correct all of the
175/// time.
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000176///
Lang Hames6ffaeb42009-07-21 23:47:33 +0000177void llvm::PHIElimination::LowerAtomicPHINode(
178 MachineBasicBlock &MBB,
179 MachineBasicBlock::iterator AfterPHIsIt) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
181 MachineInstr *MPhi = MBB.remove(MBB.begin());
182
Evan Cheng59d43002008-04-11 17:54:45 +0000183 unsigned NumSrcs = (MPhi->getNumOperands() - 1) / 2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 unsigned DestReg = MPhi->getOperand(0).getReg();
Evan Chenge52c1912008-07-03 09:09:37 +0000185 bool isDead = MPhi->getOperand(0).isDead();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186
187 // Create a new register for the incoming PHI arguments.
188 MachineFunction &MF = *MBB.getParent();
Chris Lattner1b989192007-12-31 04:13:23 +0000189 const TargetRegisterClass *RC = MF.getRegInfo().getRegClass(DestReg);
Evan Chenge52c1912008-07-03 09:09:37 +0000190 unsigned IncomingReg = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191
Bill Wendling49beda22008-05-12 22:15:05 +0000192 // Insert a register to register copy at the top of the current block (but
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 // after any remaining phi nodes) which copies the new incoming register
194 // into the phi node destination.
Owen Anderson8f2c8932007-12-31 06:32:00 +0000195 const TargetInstrInfo *TII = MF.getTarget().getInstrInfo();
Evan Cheng7418d082008-05-10 00:17:50 +0000196 if (isSourceDefinedByImplicitDef(MPhi, MRI))
Evan Chenge52c1912008-07-03 09:09:37 +0000197 // If all sources of a PHI node are implicit_def, just emit an
198 // implicit_def instead of a copy.
Bill Wendling57c81152009-02-03 02:29:34 +0000199 BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
Evan Chenge52c1912008-07-03 09:09:37 +0000200 TII->get(TargetInstrInfo::IMPLICIT_DEF), DestReg);
201 else {
202 IncomingReg = MF.getRegInfo().createVirtualRegister(RC);
Evan Cheng59d43002008-04-11 17:54:45 +0000203 TII->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC, RC);
Evan Chenge52c1912008-07-03 09:09:37 +0000204 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205
Lang Hames26a3c1b2009-07-23 04:34:03 +0000206 // Record PHI def.
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000207 assert(!hasPHIDef(DestReg) && "Vreg has multiple phi-defs?");
Lang Hames0ef653e2009-07-23 05:44:24 +0000208 PHIDefs[DestReg] = &MBB;
Lang Hames26a3c1b2009-07-23 04:34:03 +0000209
Bill Wendling49beda22008-05-12 22:15:05 +0000210 // Update live variable information if there is any.
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000211 LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 if (LV) {
213 MachineInstr *PHICopy = prior(AfterPHIsIt);
214
Evan Chenge52c1912008-07-03 09:09:37 +0000215 if (IncomingReg) {
216 // Increment use count of the newly created virtual register.
217 LV->getVarInfo(IncomingReg).NumUses++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218
Evan Chenge52c1912008-07-03 09:09:37 +0000219 // Add information to LiveVariables to know that the incoming value is
220 // killed. Note that because the value is defined in several places (once
221 // each for each incoming block), the "def" block and instruction fields
222 // for the VarInfo is not filled in.
223 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
Evan Chenge52c1912008-07-03 09:09:37 +0000224 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225
Bill Wendling49beda22008-05-12 22:15:05 +0000226 // Since we are going to be deleting the PHI node, if it is the last use of
227 // any registers, or if the value itself is dead, we need to move this
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 // information over to the new copy we just inserted.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 LV->removeVirtualRegistersKilled(MPhi);
230
231 // If the result is dead, update LV.
Evan Chenge52c1912008-07-03 09:09:37 +0000232 if (isDead) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233 LV->addVirtualRegisterDead(DestReg, PHICopy);
Evan Chenge52c1912008-07-03 09:09:37 +0000234 LV->removeVirtualRegisterDead(DestReg, MPhi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 }
237
Bill Wendling49beda22008-05-12 22:15:05 +0000238 // Adjust the VRegPHIUseCount map to account for the removal of this PHI node.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
Chris Lattner6017d482007-12-30 23:10:15 +0000240 --VRegPHIUseCount[BBVRegPair(MPhi->getOperand(i + 1).getMBB(),
241 MPhi->getOperand(i).getReg())];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242
Bill Wendling49beda22008-05-12 22:15:05 +0000243 // Now loop over all of the incoming arguments, changing them to copy into the
244 // IncomingReg register in the corresponding predecessor basic block.
Evan Cheng7b66cd12008-04-03 16:38:20 +0000245 SmallPtrSet<MachineBasicBlock*, 8> MBBsInsertedInto;
Evan Cheng59d43002008-04-11 17:54:45 +0000246 for (int i = NumSrcs - 1; i >= 0; --i) {
247 unsigned SrcReg = MPhi->getOperand(i*2+1).getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000248 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 "Machine PHI Operands must all be virtual registers!");
250
Lang Hames26a3c1b2009-07-23 04:34:03 +0000251 // Get the MachineBasicBlock equivalent of the BasicBlock that is the source
252 // path the PHI.
253 MachineBasicBlock &opBlock = *MPhi->getOperand(i*2+2).getMBB();
254
255 // Record the kill.
Lang Hames0ef653e2009-07-23 05:44:24 +0000256 PHIKills[SrcReg].insert(&opBlock);
Lang Hames26a3c1b2009-07-23 04:34:03 +0000257
Bill Wendling49beda22008-05-12 22:15:05 +0000258 // If source is defined by an implicit def, there is no need to insert a
Evan Chenge52c1912008-07-03 09:09:37 +0000259 // copy.
Evan Cheng7b66cd12008-04-03 16:38:20 +0000260 MachineInstr *DefMI = MRI->getVRegDef(SrcReg);
261 if (DefMI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
262 ImpDefs.insert(DefMI);
263 continue;
264 }
265
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 // Check to make sure we haven't already emitted the copy for this block.
Bill Wendling49beda22008-05-12 22:15:05 +0000267 // This can happen because PHI nodes may have multiple entries for the same
268 // basic block.
Evan Cheng7b66cd12008-04-03 16:38:20 +0000269 if (!MBBsInsertedInto.insert(&opBlock))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 continue; // If the copy has already been emitted, we're done.
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000271
Bill Wendling49beda22008-05-12 22:15:05 +0000272 // Find a safe location to insert the copy, this may be the first terminator
273 // in the block (or end()).
Jakob Stoklund Olesenabb56222009-11-13 21:56:15 +0000274 MachineBasicBlock::iterator InsertPos =
275 FindCopyInsertPoint(opBlock, MBB, SrcReg);
Evan Cheng81b44352009-03-13 22:59:14 +0000276
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 // Insert the copy.
Evan Cheng7b66cd12008-04-03 16:38:20 +0000278 TII->copyRegToReg(opBlock, InsertPos, IncomingReg, SrcReg, RC, RC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279
280 // Now update live variable information if we have it. Otherwise we're done
281 if (!LV) continue;
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000282
Bill Wendling49beda22008-05-12 22:15:05 +0000283 // We want to be able to insert a kill of the register if this PHI (aka, the
284 // copy we just inserted) is the last use of the source value. Live
285 // variable analysis conservatively handles this by saying that the value is
286 // live until the end of the block the PHI entry lives in. If the value
287 // really is dead at the PHI copy, there will be no successor blocks which
288 // have the value live-in.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289
Bill Wendling49beda22008-05-12 22:15:05 +0000290 // Also check to see if this register is in use by another PHI node which
291 // has not yet been eliminated. If so, it will be killed at an appropriate
292 // point later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293
294 // Is it used by any PHI instructions in this block?
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000295 bool ValueIsUsed = VRegPHIUseCount[BBVRegPair(&opBlock, SrcReg)] != 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296
Bill Wendling49beda22008-05-12 22:15:05 +0000297 // Okay, if we now know that the value is not live out of the block, we can
298 // add a kill marker in this block saying that it kills the incoming value!
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000299 if (!ValueIsUsed && !isLiveOut(SrcReg, opBlock, *LV)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 // In our final twist, we have to decide which instruction kills the
Bill Wendling49beda22008-05-12 22:15:05 +0000301 // register. In most cases this is the copy, however, the first
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 // terminator instruction at the end of the block may also use the value.
303 // In this case, we should mark *it* as being the killing block, not the
304 // copy.
Evan Cheng7b66cd12008-04-03 16:38:20 +0000305 MachineBasicBlock::iterator KillInst = prior(InsertPos);
306 MachineBasicBlock::iterator Term = opBlock.getFirstTerminator();
307 if (Term != opBlock.end()) {
308 if (Term->readsRegister(SrcReg))
309 KillInst = Term;
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000310
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 // Check that no other terminators use values.
312#ifndef NDEBUG
Evan Cheng7b66cd12008-04-03 16:38:20 +0000313 for (MachineBasicBlock::iterator TI = next(Term); TI != opBlock.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 ++TI) {
Evan Cheng7b66cd12008-04-03 16:38:20 +0000315 assert(!TI->readsRegister(SrcReg) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 "Terminator instructions cannot use virtual registers unless"
317 "they are the first terminator in a block!");
318 }
319#endif
320 }
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000321
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 // Finally, mark it killed.
323 LV->addVirtualRegisterKilled(SrcReg, KillInst);
324
325 // This vreg no longer lives all of the way through opBlock.
326 unsigned opBlockNum = opBlock.getNumber();
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000327 LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 }
329 }
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000330
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331 // Really delete the PHI instruction now!
Dan Gohman221a4372008-07-07 23:14:23 +0000332 MF.DeleteMachineInstr(MPhi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333 ++NumAtomic;
334}
335
336/// analyzePHINodes - Gather information about the PHI nodes in here. In
337/// particular, we want to map the number of uses of a virtual register which is
338/// used in a PHI node. We map that to the BB the vreg is coming from. This is
339/// used later to determine when the vreg is killed in the BB.
340///
Lang Hames6ffaeb42009-07-21 23:47:33 +0000341void llvm::PHIElimination::analyzePHINodes(const MachineFunction& Fn) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
343 I != E; ++I)
344 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
345 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
346 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Chris Lattner6017d482007-12-30 23:10:15 +0000347 ++VRegPHIUseCount[BBVRegPair(BBI->getOperand(i + 1).getMBB(),
348 BBI->getOperand(i).getReg())];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349}
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000350
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000351bool llvm::PHIElimination::SplitPHIEdges(MachineFunction &MF,
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000352 MachineBasicBlock &MBB) {
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000353 if (MBB.empty() || MBB.front().getOpcode() != TargetInstrInfo::PHI)
354 return false; // Quick exit for basic blocks without PHIs.
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000355 LiveVariables &LV = getAnalysis<LiveVariables>();
356 for (MachineBasicBlock::const_iterator BBI = MBB.begin(), BBE = MBB.end();
357 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI) {
358 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
359 unsigned Reg = BBI->getOperand(i).getReg();
360 MachineBasicBlock *PreMBB = BBI->getOperand(i+1).getMBB();
361 // We break edges when registers are live out from the predecessor block
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000362 // (not considering PHI nodes). If the register is live in to this block
363 // anyway, we would gain nothing from splitting.
364 if (isLiveOut(Reg, *PreMBB, LV) && !isLiveIn(Reg, MBB, LV))
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000365 SplitCriticalEdge(PreMBB, &MBB);
366 }
367 }
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000368 return true;
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000369}
370
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000371bool llvm::PHIElimination::isLiveOut(unsigned Reg, const MachineBasicBlock &MBB,
372 LiveVariables &LV) {
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000373 LiveVariables::VarInfo &VI = LV.getVarInfo(Reg);
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000374
375 // Loop over all of the successors of the basic block, checking to see if
376 // the value is either live in the block, or if it is killed in the block.
377 std::vector<MachineBasicBlock*> OpSuccBlocks;
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000378 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(),
379 E = MBB.succ_end(); SI != E; ++SI) {
380 MachineBasicBlock *SuccMBB = *SI;
381
382 // Is it alive in this successor?
383 unsigned SuccIdx = SuccMBB->getNumber();
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000384 if (VI.AliveBlocks.test(SuccIdx))
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000385 return true;
386 OpSuccBlocks.push_back(SuccMBB);
387 }
388
389 // Check to see if this value is live because there is a use in a successor
390 // that kills it.
391 switch (OpSuccBlocks.size()) {
392 case 1: {
393 MachineBasicBlock *SuccMBB = OpSuccBlocks[0];
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000394 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
395 if (VI.Kills[i]->getParent() == SuccMBB)
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000396 return true;
397 break;
398 }
399 case 2: {
400 MachineBasicBlock *SuccMBB1 = OpSuccBlocks[0], *SuccMBB2 = OpSuccBlocks[1];
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000401 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
402 if (VI.Kills[i]->getParent() == SuccMBB1 ||
403 VI.Kills[i]->getParent() == SuccMBB2)
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000404 return true;
405 break;
406 }
407 default:
408 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000409 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000410 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000411 VI.Kills[i]->getParent()))
Jakob Stoklund Olesen4e45f872009-11-10 22:00:56 +0000412 return true;
413 }
414 return false;
415}
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000416
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000417bool llvm::PHIElimination::isLiveIn(unsigned Reg, const MachineBasicBlock &MBB,
418 LiveVariables &LV) {
419 LiveVariables::VarInfo &VI = LV.getVarInfo(Reg);
420
Jakob Stoklund Olesen257ed142009-11-14 00:38:13 +0000421 if (VI.AliveBlocks.test(MBB.getNumber()))
422 return true;
423
424 // defined in MBB?
425 const MachineInstr *Def = MRI->getVRegDef(Reg);
426 if (Def && Def->getParent() == &MBB)
427 return false;
428
429 // killed in MBB?
430 return VI.findKill(&MBB);
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000431}
432
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000433MachineBasicBlock *PHIElimination::SplitCriticalEdge(MachineBasicBlock *A,
434 MachineBasicBlock *B) {
435 assert(A && B && "Missing MBB end point");
436 ++NumSplits;
437
438 MachineFunction *MF = A->getParent();
Jakob Stoklund Olesenabb56222009-11-13 21:56:15 +0000439 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000440 MF->push_back(NMBB);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000441 DEBUG(errs() << "PHIElimination splitting critical edge:"
442 " BB#" << A->getNumber()
Daniel Dunbar3824bc82009-11-12 20:53:43 +0000443 << " -- BB#" << NMBB->getNumber()
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000444 << " -- BB#" << B->getNumber() << '\n');
445
446 A->ReplaceUsesOfBlockWith(B, NMBB);
Jakob Stoklund Olesen257ed142009-11-14 00:38:13 +0000447 // If A may fall through to B, we may have to insert a branch.
448 if (A->isLayoutSuccessor(B))
449 A->updateTerminator();
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000450
451 // Insert unconditional "jump B" instruction in NMBB.
Jakob Stoklund Olesen257ed142009-11-14 00:38:13 +0000452 NMBB->addSuccessor(B);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000453 SmallVector<MachineOperand, 4> Cond;
454 MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, B, NULL, Cond);
455
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000456 // Fix PHI nodes in B so they refer to NMBB instead of A
457 for (MachineBasicBlock::iterator i = B->begin(), e = B->end();
458 i != e && i->getOpcode() == TargetInstrInfo::PHI; ++i)
459 for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000460 if (i->getOperand(ni+1).getMBB() == A)
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000461 i->getOperand(ni+1).setMBB(NMBB);
Jakob Stoklund Olesen4e3a7412009-11-14 00:38:06 +0000462
463 if (LiveVariables *LV=getAnalysisIfAvailable<LiveVariables>())
464 LV->addNewBlock(NMBB, A);
465
466 if (MachineDominatorTree *MDT=getAnalysisIfAvailable<MachineDominatorTree>())
467 MDT->addNewBlock(NMBB, A);
468
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000469 return NMBB;
470}