blob: c4f2cc7a75d382c0ae089b21da07245ab5913ba1 [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"
Lang Hamesfae02a22009-07-21 23:47:33 +000017#include "PHIElimination.h"
Misha Brukmand7a10c82005-05-05 23:45:17 +000018#include "llvm/CodeGen/LiveVariables.h"
Chris Lattner0742b592004-02-23 18:38:20 +000019#include "llvm/CodeGen/Passes.h"
Jakob Stoklund Olesen9aebb612009-11-14 00:38:06 +000020#include "llvm/CodeGen/MachineDominators.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000021#include "llvm/CodeGen/MachineInstr.h"
Evan Chengf870fbc2008-04-11 17:54:45 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +000024#include "llvm/Function.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000025#include "llvm/Target/TargetMachine.h"
Evan Cheng576a2702008-04-03 16:38:20 +000026#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/ADT/STLExtras.h"
Chris Lattner6db07562005-10-03 07:22:07 +000028#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +000029#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000030#include "llvm/Support/Compiler.h"
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +000031#include "llvm/Support/Debug.h"
Chris Lattner6db07562005-10-03 07:22:07 +000032#include <algorithm>
Evan Cheng10883172008-04-02 17:23:50 +000033#include <map>
Chris Lattner0742b592004-02-23 18:38:20 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattnercd3245a2006-12-19 22:41:21 +000036STATISTIC(NumAtomic, "Number of atomic phis lowered");
Jakob Stoklund Olesenf235f132009-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"),
42 cl::init(false), cl::Hidden);
Chris Lattnercd3245a2006-12-19 22:41:21 +000043
Lang Hamesfae02a22009-07-21 23:47:33 +000044char PHIElimination::ID = 0;
45static RegisterPass<PHIElimination>
Dan Gohman844731a2008-05-13 00:00:25 +000046X("phi-node-elimination", "Eliminate PHI nodes for register allocation");
47
Dan Gohman6ddba2b2008-05-13 02:05:11 +000048const PassInfo *const llvm::PHIEliminationID = &X;
Chris Lattnerbc40e892003-01-13 20:01:16 +000049
Lang Hamesfae02a22009-07-21 23:47:33 +000050void llvm::PHIElimination::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000051 AU.addPreserved<LiveVariables>();
Jakob Stoklund Olesen9aebb612009-11-14 00:38:06 +000052 AU.addPreserved<MachineDominatorTree>();
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +000053 if (SplitEdges) {
54 AU.addRequired<LiveVariables>();
55 } else {
56 AU.setPreservesCFG();
57 AU.addPreservedID(MachineLoopInfoID);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +000058 }
Dan Gohman845012e2009-07-31 23:37:33 +000059 MachineFunctionPass::getAnalysisUsage(AU);
60}
Lang Hamesfae02a22009-07-21 23:47:33 +000061
62bool llvm::PHIElimination::runOnMachineFunction(MachineFunction &Fn) {
Evan Cheng576a2702008-04-03 16:38:20 +000063 MRI = &Fn.getRegInfo();
64
Lang Hames20354632009-07-23 05:44:24 +000065 PHIDefs.clear();
66 PHIKills.clear();
Evan Cheng576a2702008-04-03 16:38:20 +000067 bool Changed = false;
68
Jakob Stoklund Olesen3e204752009-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 Cheng576a2702008-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 Cheng1b38ec82008-06-19 01:21:26 +000086 if (MRI->use_empty(DefReg))
Evan Cheng576a2702008-04-03 16:38:20 +000087 DefMI->eraseFromParent();
88 }
89
90 ImpDefs.clear();
91 VRegPHIUseCount.clear();
92 return Changed;
93}
94
Chris Lattnerbc40e892003-01-13 20:01:16 +000095/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
96/// predecessor basic blocks.
97///
Lang Hamesfae02a22009-07-21 23:47:33 +000098bool llvm::PHIElimination::EliminatePHINodes(MachineFunction &MF,
99 MachineBasicBlock &MBB) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000100 if (MBB.empty() || MBB.front().getOpcode() != TargetInstrInfo::PHI)
Chris Lattner53a79aa2005-10-03 04:47:08 +0000101 return false; // Quick exit for basic blocks without PHIs.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000102
Chris Lattner791f8962004-05-10 18:47:18 +0000103 // Get an iterator to the first instruction after the last PHI node (this may
Chris Lattner53a79aa2005-10-03 04:47:08 +0000104 // also be the end of the basic block).
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000105 MachineBasicBlock::iterator AfterPHIsIt = SkipPHIsAndLabels(MBB, MBB.begin());
Chris Lattner791f8962004-05-10 18:47:18 +0000106
Bill Wendlingca756d22006-09-28 07:10:24 +0000107 while (MBB.front().getOpcode() == TargetInstrInfo::PHI)
108 LowerAtomicPHINode(MBB, AfterPHIsIt);
109
Chris Lattner53a79aa2005-10-03 04:47:08 +0000110 return true;
111}
Misha Brukmanedf128a2005-04-21 22:36:52 +0000112
Evan Cheng1b38ec82008-06-19 01:21:26 +0000113/// isSourceDefinedByImplicitDef - Return true if all sources of the phi node
114/// are implicit_def's.
Bill Wendlingae94dda2008-05-12 22:15:05 +0000115static bool isSourceDefinedByImplicitDef(const MachineInstr *MPhi,
Evan Cheng1b38ec82008-06-19 01:21:26 +0000116 const MachineRegisterInfo *MRI) {
Evan Chengb3e0a6d2008-05-10 00:17:50 +0000117 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2) {
118 unsigned SrcReg = MPhi->getOperand(i).getReg();
Bill Wendlingae94dda2008-05-12 22:15:05 +0000119 const MachineInstr *DefMI = MRI->getVRegDef(SrcReg);
Evan Chengb3e0a6d2008-05-10 00:17:50 +0000120 if (!DefMI || DefMI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF)
121 return false;
122 }
123 return true;
Evan Chengf870fbc2008-04-11 17:54:45 +0000124}
125
Jakob Stoklund Olesen12222872009-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 Hamesfae02a22009-07-21 23:47:33 +0000130MachineBasicBlock::iterator
131llvm::PHIElimination::FindCopyInsertPoint(MachineBasicBlock &MBB,
Jakob Stoklund Olesen12222872009-11-13 21:56:15 +0000132 MachineBasicBlock &SuccMBB,
Lang Hamesfae02a22009-07-21 23:47:33 +0000133 unsigned SrcReg) {
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000134 // Handle the trivial case trivially.
135 if (MBB.empty())
136 return MBB.begin();
Evan Chengfc0b80d2009-03-13 22:59:14 +0000137
Jakob Stoklund Olesen12222872009-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 Sandsa5fec0d2009-03-17 09:46:22 +0000142 return MBB.getFirstTerminator();
143
Lang Hamesb126d052009-11-16 02:00:09 +0000144 // Discover any defs/uses in this basic block.
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000145 SmallPtrSet<MachineInstr*, 8> DefUsesInMBB;
Lang Hamesb126d052009-11-16 02:00:09 +0000146 for (MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(SrcReg),
147 RE = MRI->reg_end(); RI != RE; ++RI) {
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000148 MachineInstr *DefUseMI = &*RI;
149 if (DefUseMI->getParent() == &MBB)
150 DefUsesInMBB.insert(DefUseMI);
Evan Chengfc0b80d2009-03-13 22:59:14 +0000151 }
152
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000153 MachineBasicBlock::iterator InsertPoint;
154 if (DefUsesInMBB.empty()) {
Jakob Stoklund Olesen12222872009-11-13 21:56:15 +0000155 // No defs. Insert the copy at the start of the basic block.
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000156 InsertPoint = MBB.begin();
157 } else if (DefUsesInMBB.size() == 1) {
Lang Hamesb126d052009-11-16 02:00:09 +0000158 // Insert the copy immediately after the def/use.
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000159 InsertPoint = *DefUsesInMBB.begin();
160 ++InsertPoint;
161 } else {
Lang Hamesb126d052009-11-16 02:00:09 +0000162 // Insert the copy immediately after the last def/use.
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000163 InsertPoint = MBB.end();
164 while (!DefUsesInMBB.count(&*--InsertPoint)) {}
165 ++InsertPoint;
Evan Chengfc0b80d2009-03-13 22:59:14 +0000166 }
Duncan Sandsa5fec0d2009-03-17 09:46:22 +0000167
168 // Make sure the copy goes after any phi nodes however.
169 return SkipPHIsAndLabels(MBB, InsertPoint);
Evan Chengfc0b80d2009-03-13 22:59:14 +0000170}
171
Chris Lattner53a79aa2005-10-03 04:47:08 +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 Olesene35e3c32009-11-10 22:00:56 +0000176///
Lang Hamesfae02a22009-07-21 23:47:33 +0000177void llvm::PHIElimination::LowerAtomicPHINode(
178 MachineBasicBlock &MBB,
179 MachineBasicBlock::iterator AfterPHIsIt) {
Chris Lattner53a79aa2005-10-03 04:47:08 +0000180 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
181 MachineInstr *MPhi = MBB.remove(MBB.begin());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000182
Evan Chengf870fbc2008-04-11 17:54:45 +0000183 unsigned NumSrcs = (MPhi->getNumOperands() - 1) / 2;
Chris Lattner53a79aa2005-10-03 04:47:08 +0000184 unsigned DestReg = MPhi->getOperand(0).getReg();
Evan Cheng9f1c8312008-07-03 09:09:37 +0000185 bool isDead = MPhi->getOperand(0).isDead();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000186
Bill Wendlingca756d22006-09-28 07:10:24 +0000187 // Create a new register for the incoming PHI arguments.
Chris Lattner53a79aa2005-10-03 04:47:08 +0000188 MachineFunction &MF = *MBB.getParent();
Chris Lattner84bc5422007-12-31 04:13:23 +0000189 const TargetRegisterClass *RC = MF.getRegInfo().getRegClass(DestReg);
Evan Cheng9f1c8312008-07-03 09:09:37 +0000190 unsigned IncomingReg = 0;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000191
Bill Wendlingae94dda2008-05-12 22:15:05 +0000192 // Insert a register to register copy at the top of the current block (but
Chris Lattner53a79aa2005-10-03 04:47:08 +0000193 // after any remaining phi nodes) which copies the new incoming register
194 // into the phi node destination.
Owen Andersond10fd972007-12-31 06:32:00 +0000195 const TargetInstrInfo *TII = MF.getTarget().getInstrInfo();
Evan Chengb3e0a6d2008-05-10 00:17:50 +0000196 if (isSourceDefinedByImplicitDef(MPhi, MRI))
Evan Cheng9f1c8312008-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 Wendlingd62e06c2009-02-03 02:29:34 +0000199 BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
Evan Cheng9f1c8312008-07-03 09:09:37 +0000200 TII->get(TargetInstrInfo::IMPLICIT_DEF), DestReg);
201 else {
202 IncomingReg = MF.getRegInfo().createVirtualRegister(RC);
Evan Chengf870fbc2008-04-11 17:54:45 +0000203 TII->copyRegToReg(MBB, AfterPHIsIt, DestReg, IncomingReg, RC, RC);
Evan Cheng9f1c8312008-07-03 09:09:37 +0000204 }
Chris Lattner53a79aa2005-10-03 04:47:08 +0000205
Lang Hames287b8b02009-07-23 04:34:03 +0000206 // Record PHI def.
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000207 assert(!hasPHIDef(DestReg) && "Vreg has multiple phi-defs?");
Lang Hames20354632009-07-23 05:44:24 +0000208 PHIDefs[DestReg] = &MBB;
Lang Hames287b8b02009-07-23 04:34:03 +0000209
Bill Wendlingae94dda2008-05-12 22:15:05 +0000210 // Update live variable information if there is any.
Duncan Sands1465d612009-01-28 13:14:17 +0000211 LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>();
Chris Lattner53a79aa2005-10-03 04:47:08 +0000212 if (LV) {
213 MachineInstr *PHICopy = prior(AfterPHIsIt);
214
Evan Cheng9f1c8312008-07-03 09:09:37 +0000215 if (IncomingReg) {
216 // Increment use count of the newly created virtual register.
217 LV->getVarInfo(IncomingReg).NumUses++;
Evan Cheng3fefc182007-04-18 00:36:11 +0000218
Evan Cheng9f1c8312008-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 Cheng9f1c8312008-07-03 09:09:37 +0000224 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000225
Bill Wendlingae94dda2008-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
Chris Lattner53a79aa2005-10-03 04:47:08 +0000228 // information over to the new copy we just inserted.
Chris Lattner53a79aa2005-10-03 04:47:08 +0000229 LV->removeVirtualRegistersKilled(MPhi);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000230
Chris Lattner6db07562005-10-03 07:22:07 +0000231 // If the result is dead, update LV.
Evan Cheng9f1c8312008-07-03 09:09:37 +0000232 if (isDead) {
Chris Lattner6db07562005-10-03 07:22:07 +0000233 LV->addVirtualRegisterDead(DestReg, PHICopy);
Evan Cheng9f1c8312008-07-03 09:09:37 +0000234 LV->removeVirtualRegisterDead(DestReg, MPhi);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000235 }
236 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000237
Bill Wendlingae94dda2008-05-12 22:15:05 +0000238 // Adjust the VRegPHIUseCount map to account for the removal of this PHI node.
Chris Lattner53a79aa2005-10-03 04:47:08 +0000239 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
Chris Lattner8aa797a2007-12-30 23:10:15 +0000240 --VRegPHIUseCount[BBVRegPair(MPhi->getOperand(i + 1).getMBB(),
241 MPhi->getOperand(i).getReg())];
Chris Lattner572c7702003-05-12 14:28:28 +0000242
Bill Wendlingae94dda2008-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 Cheng576a2702008-04-03 16:38:20 +0000245 SmallPtrSet<MachineBasicBlock*, 8> MBBsInsertedInto;
Evan Chengf870fbc2008-04-11 17:54:45 +0000246 for (int i = NumSrcs - 1; i >= 0; --i) {
247 unsigned SrcReg = MPhi->getOperand(i*2+1).getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000248 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
Chris Lattner6db07562005-10-03 07:22:07 +0000249 "Machine PHI Operands must all be virtual registers!");
Chris Lattner53a79aa2005-10-03 04:47:08 +0000250
Lang Hames287b8b02009-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 Hames20354632009-07-23 05:44:24 +0000256 PHIKills[SrcReg].insert(&opBlock);
Lang Hames287b8b02009-07-23 04:34:03 +0000257
Bill Wendlingae94dda2008-05-12 22:15:05 +0000258 // If source is defined by an implicit def, there is no need to insert a
Evan Cheng9f1c8312008-07-03 09:09:37 +0000259 // copy.
Evan Cheng576a2702008-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
Chris Lattner53a79aa2005-10-03 04:47:08 +0000266 // Check to make sure we haven't already emitted the copy for this block.
Bill Wendlingae94dda2008-05-12 22:15:05 +0000267 // This can happen because PHI nodes may have multiple entries for the same
268 // basic block.
Evan Cheng576a2702008-04-03 16:38:20 +0000269 if (!MBBsInsertedInto.insert(&opBlock))
Chris Lattner6db07562005-10-03 07:22:07 +0000270 continue; // If the copy has already been emitted, we're done.
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000271
Bill Wendlingae94dda2008-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 Olesen12222872009-11-13 21:56:15 +0000274 MachineBasicBlock::iterator InsertPos =
275 FindCopyInsertPoint(opBlock, MBB, SrcReg);
Evan Chengfc0b80d2009-03-13 22:59:14 +0000276
Chris Lattner6db07562005-10-03 07:22:07 +0000277 // Insert the copy.
Evan Cheng576a2702008-04-03 16:38:20 +0000278 TII->copyRegToReg(opBlock, InsertPos, IncomingReg, SrcReg, RC, RC);
Chris Lattner53a79aa2005-10-03 04:47:08 +0000279
Chris Lattner6db07562005-10-03 07:22:07 +0000280 // Now update live variable information if we have it. Otherwise we're done
281 if (!LV) continue;
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000282
Bill Wendlingae94dda2008-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.
Chris Lattner6db07562005-10-03 07:22:07 +0000289
Bill Wendlingae94dda2008-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.
Chris Lattner6db07562005-10-03 07:22:07 +0000293
294 // Is it used by any PHI instructions in this block?
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000295 bool ValueIsUsed = VRegPHIUseCount[BBVRegPair(&opBlock, SrcReg)] != 0;
Chris Lattner6db07562005-10-03 07:22:07 +0000296
Bill Wendlingae94dda2008-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 Olesen3e204752009-11-11 19:31:31 +0000299 if (!ValueIsUsed && !isLiveOut(SrcReg, opBlock, *LV)) {
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000300 // In our final twist, we have to decide which instruction kills the
Bill Wendlingae94dda2008-05-12 22:15:05 +0000301 // register. In most cases this is the copy, however, the first
Chris Lattner2adfa7e2006-01-04 07:12:21 +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 Cheng576a2702008-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 Olesene35e3c32009-11-10 22:00:56 +0000310
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000311 // Check that no other terminators use values.
312#ifndef NDEBUG
Evan Cheng576a2702008-04-03 16:38:20 +0000313 for (MachineBasicBlock::iterator TI = next(Term); TI != opBlock.end();
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000314 ++TI) {
Evan Cheng576a2702008-04-03 16:38:20 +0000315 assert(!TI->readsRegister(SrcReg) &&
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000316 "Terminator instructions cannot use virtual registers unless"
317 "they are the first terminator in a block!");
318 }
319#endif
320 }
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000321
Chris Lattner2adfa7e2006-01-04 07:12:21 +0000322 // Finally, mark it killed.
323 LV->addVirtualRegisterKilled(SrcReg, KillInst);
Chris Lattner6db07562005-10-03 07:22:07 +0000324
325 // This vreg no longer lives all of the way through opBlock.
326 unsigned opBlockNum = opBlock.getNumber();
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000327 LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000328 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000329 }
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000330
Chris Lattner53a79aa2005-10-03 04:47:08 +0000331 // Really delete the PHI instruction now!
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000332 MF.DeleteMachineInstr(MPhi);
Chris Lattner6db07562005-10-03 07:22:07 +0000333 ++NumAtomic;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000334}
Bill Wendlingca756d22006-09-28 07:10:24 +0000335
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 Hamesfae02a22009-07-21 23:47:33 +0000341void llvm::PHIElimination::analyzePHINodes(const MachineFunction& Fn) {
Bill Wendlingca756d22006-09-28 07:10:24 +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 Lattner8aa797a2007-12-30 23:10:15 +0000347 ++VRegPHIUseCount[BBVRegPair(BBI->getOperand(i + 1).getMBB(),
348 BBI->getOperand(i).getReg())];
Bill Wendlingca756d22006-09-28 07:10:24 +0000349}
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000350
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000351bool llvm::PHIElimination::SplitPHIEdges(MachineFunction &MF,
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000352 MachineBasicBlock &MBB) {
Jakob Stoklund Olesen3e204752009-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 Olesenf235f132009-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 Olesen3e204752009-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 Olesenf235f132009-11-10 22:01:05 +0000365 SplitCriticalEdge(PreMBB, &MBB);
366 }
367 }
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000368 return true;
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000369}
370
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000371bool llvm::PHIElimination::isLiveOut(unsigned Reg, const MachineBasicBlock &MBB,
372 LiveVariables &LV) {
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000373 LiveVariables::VarInfo &VI = LV.getVarInfo(Reg);
Jakob Stoklund Olesene35e3c32009-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 Olesene35e3c32009-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 Olesen3e204752009-11-11 19:31:31 +0000384 if (VI.AliveBlocks.test(SuccIdx))
Jakob Stoklund Olesene35e3c32009-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 Olesen3e204752009-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 Olesene35e3c32009-11-10 22:00:56 +0000396 return true;
397 break;
398 }
399 case 2: {
400 MachineBasicBlock *SuccMBB1 = OpSuccBlocks[0], *SuccMBB2 = OpSuccBlocks[1];
Jakob Stoklund Olesen3e204752009-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 Olesene35e3c32009-11-10 22:00:56 +0000404 return true;
405 break;
406 }
407 default:
408 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000409 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000410 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000411 VI.Kills[i]->getParent()))
Jakob Stoklund Olesene35e3c32009-11-10 22:00:56 +0000412 return true;
413 }
414 return false;
415}
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000416
Jakob Stoklund Olesen3e204752009-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 Olesen3b6ced12009-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 Olesen3e204752009-11-11 19:31:31 +0000431}
432
Jakob Stoklund Olesenf235f132009-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 Olesen12222872009-11-13 21:56:15 +0000439 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000440 MF->push_back(NMBB);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000441 DEBUG(errs() << "PHIElimination splitting critical edge:"
442 " BB#" << A->getNumber()
Daniel Dunbarbf4af352009-11-12 20:53:43 +0000443 << " -- BB#" << NMBB->getNumber()
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000444 << " -- BB#" << B->getNumber() << '\n');
445
446 A->ReplaceUsesOfBlockWith(B, NMBB);
Jakob Stoklund Olesen3b6ced12009-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 Olesenf235f132009-11-10 22:01:05 +0000450
451 // Insert unconditional "jump B" instruction in NMBB.
Jakob Stoklund Olesen3b6ced12009-11-14 00:38:13 +0000452 NMBB->addSuccessor(B);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000453 SmallVector<MachineOperand, 4> Cond;
454 MF->getTarget().getInstrInfo()->InsertBranch(*NMBB, B, NULL, Cond);
455
Jakob Stoklund Olesenf235f132009-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 Olesen3e204752009-11-11 19:31:31 +0000460 if (i->getOperand(ni+1).getMBB() == A)
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000461 i->getOperand(ni+1).setMBB(NMBB);
Jakob Stoklund Olesen9aebb612009-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 Olesenf235f132009-11-10 22:01:05 +0000469 return NMBB;
470}