blob: 82a7d5d2ba2184b62d27528c7e1846f169739f73 [file] [log] [blame]
Chris Lattnercab0b442003-01-13 20:01:16 +00001//===-- PhiElimination.cpp - Eliminate PHI nodes by inserting copies ------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman835702a2005-04-21 22:36:52 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnercab0b442003-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 Lattner43df6c22004-02-23 18:38:20 +000016#include "llvm/CodeGen/Passes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "PHIEliminationUtils.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallPtrSet.h"
20#include "llvm/ADT/Statistic.h"
Cameron Zwarich16b64cb2013-02-10 06:42:36 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/CodeGen/LiveVariables.h"
Jakob Stoklund Olesen15ca0092009-11-14 00:38:06 +000023#include "llvm/CodeGen/MachineDominators.h"
Chris Lattnercab0b442003-01-13 20:01:16 +000024#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng33281862008-04-11 17:54:45 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chengf259efd2010-08-17 01:20:36 +000026#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Function.h"
Cameron Zwarich79304072011-03-10 05:59:17 +000029#include "llvm/Support/CommandLine.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000030#include "llvm/Support/Compiler.h"
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +000031#include "llvm/Support/Debug.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Target/TargetInstrInfo.h"
33#include "llvm/Target/TargetMachine.h"
Eric Christopherd9134482014-08-04 21:25:23 +000034#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner57b21f92005-10-03 07:22:07 +000035#include <algorithm>
Chris Lattner43df6c22004-02-23 18:38:20 +000036using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000037
Chandler Carruth1b9dde02014-04-22 02:02:50 +000038#define DEBUG_TYPE "phielim"
39
Cameron Zwarich79304072011-03-10 05:59:17 +000040static cl::opt<bool>
41DisableEdgeSplitting("disable-phi-elim-edge-splitting", cl::init(false),
42 cl::Hidden, cl::desc("Disable critical edge splitting "
43 "during PHI elimination"));
44
Cameron Zwarich15eb9252013-02-12 03:49:25 +000045static cl::opt<bool>
46SplitAllCriticalEdges("phi-elim-split-all-critical-edges", cl::init(false),
47 cl::Hidden, cl::desc("Split all critical edges during "
48 "PHI elimination"));
49
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000050namespace {
51 class PHIElimination : public MachineFunctionPass {
52 MachineRegisterInfo *MRI; // Machine register information
Cameron Zwariche0966732013-02-10 06:42:30 +000053 LiveVariables *LV;
Cameron Zwarich16b64cb2013-02-10 06:42:36 +000054 LiveIntervals *LIS;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000055
56 public:
57 static char ID; // Pass identification, replacement for typeid
58 PHIElimination() : MachineFunctionPass(ID) {
59 initializePHIEliminationPass(*PassRegistry::getPassRegistry());
60 }
61
Craig Topper4584cd52014-03-07 09:26:03 +000062 bool runOnMachineFunction(MachineFunction &Fn) override;
63 void getAnalysisUsage(AnalysisUsage &AU) const override;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000064
65 private:
66 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
67 /// in predecessor basic blocks.
68 ///
69 bool EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB);
Cameron Zwaricha158d392013-02-10 06:42:32 +000070 void LowerPHINode(MachineBasicBlock &MBB,
Cameron Zwarich867bfcd2013-07-01 19:42:46 +000071 MachineBasicBlock::iterator LastPHIIt);
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000072
73 /// analyzePHINodes - Gather information about the PHI nodes in
74 /// here. In particular, we want to map the number of uses of a virtual
75 /// register which is used in a PHI node. We map that to the BB the
76 /// vreg is coming from. This is used later to determine when the vreg
77 /// is killed in the BB.
78 ///
79 void analyzePHINodes(const MachineFunction& Fn);
80
81 /// Split critical edges where necessary for good coalescer performance.
82 bool SplitPHIEdges(MachineFunction &MF, MachineBasicBlock &MBB,
Cameron Zwariche0966732013-02-10 06:42:30 +000083 MachineLoopInfo *MLI);
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000084
Cameron Zwarichbb9ad312013-02-10 23:29:49 +000085 // These functions are temporary abstractions around LiveVariables and
86 // LiveIntervals, so they can go away when LiveVariables does.
87 bool isLiveIn(unsigned Reg, MachineBasicBlock *MBB);
88 bool isLiveOutPastPHIs(unsigned Reg, MachineBasicBlock *MBB);
89
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000090 typedef std::pair<unsigned, unsigned> BBVRegPair;
91 typedef DenseMap<BBVRegPair, unsigned> VRegPHIUse;
92
93 VRegPHIUse VRegPHIUseCount;
94
95 // Defs of PHI sources which are implicit_def.
96 SmallPtrSet<MachineInstr*, 4> ImpDefs;
97
98 // Map reusable lowered PHI node -> incoming join register.
99 typedef DenseMap<MachineInstr*, unsigned,
100 MachineInstrExpressionTrait> LoweredPHIMap;
101 LoweredPHIMap LoweredPHIs;
102 };
103}
104
Cameron Zwaricha158d392013-02-10 06:42:32 +0000105STATISTIC(NumLowered, "Number of phis lowered");
Cameron Zwarich87903962011-02-14 02:09:11 +0000106STATISTIC(NumCriticalEdgesSplit, "Number of critical edges split");
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000107STATISTIC(NumReused, "Number of reused lowered phis");
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000108
Lang Hamesaa037752009-07-21 23:47:33 +0000109char PHIElimination::ID = 0;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000110char& llvm::PHIEliminationID = PHIElimination::ID;
Chris Lattnercab0b442003-01-13 20:01:16 +0000111
Andrew Trickd3f8fe82012-02-10 04:10:36 +0000112INITIALIZE_PASS_BEGIN(PHIElimination, "phi-node-elimination",
113 "Eliminate PHI nodes for register allocation",
114 false, false)
115INITIALIZE_PASS_DEPENDENCY(LiveVariables)
116INITIALIZE_PASS_END(PHIElimination, "phi-node-elimination",
117 "Eliminate PHI nodes for register allocation", false, false)
118
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000119void PHIElimination::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman04023152009-07-31 23:37:33 +0000120 AU.addPreserved<LiveVariables>();
Cameron Zwarich37ca2e82013-02-20 06:46:28 +0000121 AU.addPreserved<SlotIndexes>();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000122 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen15ca0092009-11-14 00:38:06 +0000123 AU.addPreserved<MachineDominatorTree>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +0000124 AU.addPreserved<MachineLoopInfo>();
Dan Gohman04023152009-07-31 23:37:33 +0000125 MachineFunctionPass::getAnalysisUsage(AU);
126}
Lang Hamesaa037752009-07-21 23:47:33 +0000127
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000128bool PHIElimination::runOnMachineFunction(MachineFunction &MF) {
Evan Chenga5c0cc32010-05-04 17:12:26 +0000129 MRI = &MF.getRegInfo();
Cameron Zwariche0966732013-02-10 06:42:30 +0000130 LV = getAnalysisIfAvailable<LiveVariables>();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000131 LIS = getAnalysisIfAvailable<LiveIntervals>();
Evan Chengaacf4f12008-04-03 16:38:20 +0000132
Evan Chengaacf4f12008-04-03 16:38:20 +0000133 bool Changed = false;
134
Jakob Stoklund Olesen9760f042011-07-29 22:51:22 +0000135 // This pass takes the function out of SSA form.
136 MRI->leaveSSA();
137
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000138 // Split critical edges to help the coalescer. This does not yet support
139 // updating LiveIntervals, so we disable it.
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000140 if (!DisableEdgeSplitting && (LV || LIS)) {
Cameron Zwariche0966732013-02-10 06:42:30 +0000141 MachineLoopInfo *MLI = getAnalysisIfAvailable<MachineLoopInfo>();
142 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
143 Changed |= SplitPHIEdges(MF, *I, MLI);
Evan Cheng16bfe5b2010-08-17 21:00:37 +0000144 }
Jakob Stoklund Olesen4f7fd3b2009-11-11 19:31:31 +0000145
146 // Populate VRegPHIUseCount
Evan Chenga5c0cc32010-05-04 17:12:26 +0000147 analyzePHINodes(MF);
Jakob Stoklund Olesen4f7fd3b2009-11-11 19:31:31 +0000148
Evan Chengaacf4f12008-04-03 16:38:20 +0000149 // Eliminate PHI instructions by inserting copies into predecessor blocks.
Evan Chenga5c0cc32010-05-04 17:12:26 +0000150 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
151 Changed |= EliminatePHINodes(MF, *I);
Evan Chengaacf4f12008-04-03 16:38:20 +0000152
153 // Remove dead IMPLICIT_DEF instructions.
Bill Wendling819c3562009-12-17 23:42:32 +0000154 for (SmallPtrSet<MachineInstr*, 4>::iterator I = ImpDefs.begin(),
Evan Chengaacf4f12008-04-03 16:38:20 +0000155 E = ImpDefs.end(); I != E; ++I) {
156 MachineInstr *DefMI = *I;
157 unsigned DefReg = DefMI->getOperand(0).getReg();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000158 if (MRI->use_nodbg_empty(DefReg)) {
159 if (LIS)
160 LIS->RemoveMachineInstrFromMaps(DefMI);
Evan Chengaacf4f12008-04-03 16:38:20 +0000161 DefMI->eraseFromParent();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000162 }
Evan Chengaacf4f12008-04-03 16:38:20 +0000163 }
164
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000165 // Clean up the lowered PHI instructions.
166 for (LoweredPHIMap::iterator I = LoweredPHIs.begin(), E = LoweredPHIs.end();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000167 I != E; ++I) {
Cameron Zwarich4ee9aef2013-02-12 05:48:56 +0000168 if (LIS)
169 LIS->RemoveMachineInstrFromMaps(I->first);
Evan Chenga5c0cc32010-05-04 17:12:26 +0000170 MF.DeleteMachineInstr(I->first);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000171 }
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000172
Bill Wendling819c3562009-12-17 23:42:32 +0000173 LoweredPHIs.clear();
Evan Chengaacf4f12008-04-03 16:38:20 +0000174 ImpDefs.clear();
175 VRegPHIUseCount.clear();
Evan Chenga5c0cc32010-05-04 17:12:26 +0000176
Evan Chengaacf4f12008-04-03 16:38:20 +0000177 return Changed;
178}
179
Chris Lattnercab0b442003-01-13 20:01:16 +0000180/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
181/// predecessor basic blocks.
182///
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000183bool PHIElimination::EliminatePHINodes(MachineFunction &MF,
Lang Hamesaa037752009-07-21 23:47:33 +0000184 MachineBasicBlock &MBB) {
Chris Lattnerb06015a2010-02-09 19:54:29 +0000185 if (MBB.empty() || !MBB.front().isPHI())
Chris Lattner5f096e22005-10-03 04:47:08 +0000186 return false; // Quick exit for basic blocks without PHIs.
Chris Lattnercab0b442003-01-13 20:01:16 +0000187
Chris Lattnera2f7b9b2004-05-10 18:47:18 +0000188 // Get an iterator to the first instruction after the last PHI node (this may
Chris Lattner5f096e22005-10-03 04:47:08 +0000189 // also be the end of the basic block).
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000190 MachineBasicBlock::iterator LastPHIIt =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000191 std::prev(MBB.SkipPHIsAndLabels(MBB.begin()));
Chris Lattnera2f7b9b2004-05-10 18:47:18 +0000192
Chris Lattnerb06015a2010-02-09 19:54:29 +0000193 while (MBB.front().isPHI())
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000194 LowerPHINode(MBB, LastPHIIt);
Bill Wendling5d409822006-09-28 07:10:24 +0000195
Chris Lattner5f096e22005-10-03 04:47:08 +0000196 return true;
197}
Misha Brukman835702a2005-04-21 22:36:52 +0000198
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000199/// isImplicitlyDefined - Return true if all defs of VirtReg are implicit-defs.
200/// This includes registers with no defs.
201static bool isImplicitlyDefined(unsigned VirtReg,
202 const MachineRegisterInfo *MRI) {
Owen Andersonb36376e2014-03-17 19:36:09 +0000203 for (MachineInstr &DI : MRI->def_instructions(VirtReg))
204 if (!DI.isImplicitDef())
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000205 return false;
206 return true;
207}
208
Evan Cheng18e46d42008-06-19 01:21:26 +0000209/// isSourceDefinedByImplicitDef - Return true if all sources of the phi node
210/// are implicit_def's.
Bill Wendling6b8bd512008-05-12 22:15:05 +0000211static bool isSourceDefinedByImplicitDef(const MachineInstr *MPhi,
Evan Cheng18e46d42008-06-19 01:21:26 +0000212 const MachineRegisterInfo *MRI) {
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000213 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
214 if (!isImplicitlyDefined(MPhi->getOperand(i).getReg(), MRI))
Evan Chengbec201f2008-05-10 00:17:50 +0000215 return false;
Evan Chengbec201f2008-05-10 00:17:50 +0000216 return true;
Evan Cheng33281862008-04-11 17:54:45 +0000217}
218
Evan Cheng94419d62009-03-13 22:59:14 +0000219
Cameron Zwaricha158d392013-02-10 06:42:32 +0000220/// LowerPHINode - Lower the PHI node at the top of the specified block,
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000221///
Cameron Zwaricha158d392013-02-10 06:42:32 +0000222void PHIElimination::LowerPHINode(MachineBasicBlock &MBB,
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000223 MachineBasicBlock::iterator LastPHIIt) {
Cameron Zwaricha158d392013-02-10 06:42:32 +0000224 ++NumLowered;
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000225
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000226 MachineBasicBlock::iterator AfterPHIsIt = std::next(LastPHIIt);
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000227
Chris Lattner5f096e22005-10-03 04:47:08 +0000228 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
229 MachineInstr *MPhi = MBB.remove(MBB.begin());
Chris Lattnercab0b442003-01-13 20:01:16 +0000230
Evan Cheng33281862008-04-11 17:54:45 +0000231 unsigned NumSrcs = (MPhi->getNumOperands() - 1) / 2;
Chris Lattner5f096e22005-10-03 04:47:08 +0000232 unsigned DestReg = MPhi->getOperand(0).getReg();
Jakob Stoklund Olesen952a6212010-08-18 16:09:47 +0000233 assert(MPhi->getOperand(0).getSubReg() == 0 && "Can't handle sub-reg PHIs");
Evan Cheng7d98a482008-07-03 09:09:37 +0000234 bool isDead = MPhi->getOperand(0).isDead();
Misha Brukman835702a2005-04-21 22:36:52 +0000235
Bill Wendling5d409822006-09-28 07:10:24 +0000236 // Create a new register for the incoming PHI arguments.
Chris Lattner5f096e22005-10-03 04:47:08 +0000237 MachineFunction &MF = *MBB.getParent();
Evan Cheng7d98a482008-07-03 09:09:37 +0000238 unsigned IncomingReg = 0;
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000239 bool reusedIncoming = false; // Is IncomingReg reused from an earlier PHI?
Chris Lattnercab0b442003-01-13 20:01:16 +0000240
Bill Wendling6b8bd512008-05-12 22:15:05 +0000241 // Insert a register to register copy at the top of the current block (but
Chris Lattner5f096e22005-10-03 04:47:08 +0000242 // after any remaining phi nodes) which copies the new incoming register
243 // into the phi node destination.
Eric Christopherd9134482014-08-04 21:25:23 +0000244 const TargetInstrInfo *TII =
245 MF.getTarget().getSubtargetImpl()->getInstrInfo();
Evan Chengbec201f2008-05-10 00:17:50 +0000246 if (isSourceDefinedByImplicitDef(MPhi, MRI))
Evan Cheng7d98a482008-07-03 09:09:37 +0000247 // If all sources of a PHI node are implicit_def, just emit an
248 // implicit_def instead of a copy.
Bill Wendling67cd3952009-02-03 02:29:34 +0000249 BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
Chris Lattnerb06015a2010-02-09 19:54:29 +0000250 TII->get(TargetOpcode::IMPLICIT_DEF), DestReg);
Evan Cheng7d98a482008-07-03 09:09:37 +0000251 else {
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000252 // Can we reuse an earlier PHI node? This only happens for critical edges,
253 // typically those created by tail duplication.
254 unsigned &entry = LoweredPHIs[MPhi];
255 if (entry) {
256 // An identical PHI node was already lowered. Reuse the incoming register.
257 IncomingReg = entry;
258 reusedIncoming = true;
259 ++NumReused;
Jakob Stoklund Olesen1331a152011-01-09 03:05:53 +0000260 DEBUG(dbgs() << "Reusing " << PrintReg(IncomingReg) << " for " << *MPhi);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000261 } else {
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000262 const TargetRegisterClass *RC = MF.getRegInfo().getRegClass(DestReg);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000263 entry = IncomingReg = MF.getRegInfo().createVirtualRegister(RC);
264 }
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000265 BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
266 TII->get(TargetOpcode::COPY), DestReg)
267 .addReg(IncomingReg);
Evan Cheng7d98a482008-07-03 09:09:37 +0000268 }
Chris Lattner5f096e22005-10-03 04:47:08 +0000269
Bill Wendling6b8bd512008-05-12 22:15:05 +0000270 // Update live variable information if there is any.
Chris Lattner5f096e22005-10-03 04:47:08 +0000271 if (LV) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000272 MachineInstr *PHICopy = std::prev(AfterPHIsIt);
Chris Lattner5f096e22005-10-03 04:47:08 +0000273
Evan Cheng7d98a482008-07-03 09:09:37 +0000274 if (IncomingReg) {
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000275 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
276
Evan Cheng7d98a482008-07-03 09:09:37 +0000277 // Increment use count of the newly created virtual register.
Jakob Stoklund Olesen38b76e22010-02-23 22:43:58 +0000278 LV->setPHIJoin(IncomingReg);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000279
280 // When we are reusing the incoming register, it may already have been
281 // killed in this block. The old kill will also have been inserted at
282 // AfterPHIsIt, so it appears before the current PHICopy.
283 if (reusedIncoming)
284 if (MachineInstr *OldKill = VI.findKill(&MBB)) {
David Greene25552922010-01-05 01:24:24 +0000285 DEBUG(dbgs() << "Remove old kill from " << *OldKill);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000286 LV->removeVirtualRegisterKilled(IncomingReg, OldKill);
287 DEBUG(MBB.dump());
288 }
Evan Chenga5a0c7c2007-04-18 00:36:11 +0000289
Evan Cheng7d98a482008-07-03 09:09:37 +0000290 // Add information to LiveVariables to know that the incoming value is
291 // killed. Note that because the value is defined in several places (once
292 // each for each incoming block), the "def" block and instruction fields
293 // for the VarInfo is not filled in.
294 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
Evan Cheng7d98a482008-07-03 09:09:37 +0000295 }
Misha Brukman835702a2005-04-21 22:36:52 +0000296
Bill Wendling6b8bd512008-05-12 22:15:05 +0000297 // Since we are going to be deleting the PHI node, if it is the last use of
298 // any registers, or if the value itself is dead, we need to move this
Chris Lattner5f096e22005-10-03 04:47:08 +0000299 // information over to the new copy we just inserted.
Chris Lattner5f096e22005-10-03 04:47:08 +0000300 LV->removeVirtualRegistersKilled(MPhi);
Chris Lattnercab0b442003-01-13 20:01:16 +0000301
Chris Lattner57b21f92005-10-03 07:22:07 +0000302 // If the result is dead, update LV.
Evan Cheng7d98a482008-07-03 09:09:37 +0000303 if (isDead) {
Chris Lattner57b21f92005-10-03 07:22:07 +0000304 LV->addVirtualRegisterDead(DestReg, PHICopy);
Evan Cheng7d98a482008-07-03 09:09:37 +0000305 LV->removeVirtualRegisterDead(DestReg, MPhi);
Chris Lattner5f096e22005-10-03 04:47:08 +0000306 }
307 }
Chris Lattnercab0b442003-01-13 20:01:16 +0000308
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000309 // Update LiveIntervals for the new copy or implicit def.
310 if (LIS) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000311 MachineInstr *NewInstr = std::prev(AfterPHIsIt);
Cameron Zwarich68fbc4f2013-02-20 06:46:32 +0000312 SlotIndex DestCopyIndex = LIS->InsertMachineInstrInMaps(NewInstr);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000313
314 SlotIndex MBBStartIndex = LIS->getMBBStartIdx(&MBB);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000315 if (IncomingReg) {
316 // Add the region from the beginning of MBB to the copy instruction to
317 // IncomingReg's live interval.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000318 LiveInterval &IncomingLI = LIS->createEmptyInterval(IncomingReg);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000319 VNInfo *IncomingVNI = IncomingLI.getVNInfoAt(MBBStartIndex);
320 if (!IncomingVNI)
321 IncomingVNI = IncomingLI.getNextValue(MBBStartIndex,
322 LIS->getVNInfoAllocator());
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000323 IncomingLI.addSegment(LiveInterval::Segment(MBBStartIndex,
324 DestCopyIndex.getRegSlot(),
325 IncomingVNI));
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000326 }
327
Cameron Zwarichd1132922013-02-21 08:51:55 +0000328 LiveInterval &DestLI = LIS->getInterval(DestReg);
Cameron Zwarich3ab4c4b2013-02-21 08:51:58 +0000329 assert(DestLI.begin() != DestLI.end() &&
330 "PHIs should have nonempty LiveIntervals.");
331 if (DestLI.endIndex().isDead()) {
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000332 // A dead PHI's live range begins and ends at the start of the MBB, but
333 // the lowered copy, which will still be dead, needs to begin and end at
334 // the copy instruction.
335 VNInfo *OrigDestVNI = DestLI.getVNInfoAt(MBBStartIndex);
336 assert(OrigDestVNI && "PHI destination should be live at block entry.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000337 DestLI.removeSegment(MBBStartIndex, MBBStartIndex.getDeadSlot());
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000338 DestLI.createDeadDef(DestCopyIndex.getRegSlot(),
339 LIS->getVNInfoAllocator());
340 DestLI.removeValNo(OrigDestVNI);
341 } else {
342 // Otherwise, remove the region from the beginning of MBB to the copy
343 // instruction from DestReg's live interval.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000344 DestLI.removeSegment(MBBStartIndex, DestCopyIndex.getRegSlot());
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000345 VNInfo *DestVNI = DestLI.getVNInfoAt(DestCopyIndex.getRegSlot());
346 assert(DestVNI && "PHI destination should be live at its definition.");
347 DestVNI->def = DestCopyIndex.getRegSlot();
348 }
349 }
350
Bill Wendling6b8bd512008-05-12 22:15:05 +0000351 // Adjust the VRegPHIUseCount map to account for the removal of this PHI node.
Chris Lattner5f096e22005-10-03 04:47:08 +0000352 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000353 --VRegPHIUseCount[BBVRegPair(MPhi->getOperand(i+1).getMBB()->getNumber(),
Chris Lattnera5bb3702007-12-30 23:10:15 +0000354 MPhi->getOperand(i).getReg())];
Chris Lattner51ae8172003-05-12 14:28:28 +0000355
Bill Wendling6b8bd512008-05-12 22:15:05 +0000356 // Now loop over all of the incoming arguments, changing them to copy into the
357 // IncomingReg register in the corresponding predecessor basic block.
Evan Chengaacf4f12008-04-03 16:38:20 +0000358 SmallPtrSet<MachineBasicBlock*, 8> MBBsInsertedInto;
Evan Cheng33281862008-04-11 17:54:45 +0000359 for (int i = NumSrcs - 1; i >= 0; --i) {
360 unsigned SrcReg = MPhi->getOperand(i*2+1).getReg();
Jakob Stoklund Olesen952a6212010-08-18 16:09:47 +0000361 unsigned SrcSubReg = MPhi->getOperand(i*2+1).getSubReg();
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000362 bool SrcUndef = MPhi->getOperand(i*2+1).isUndef() ||
363 isImplicitlyDefined(SrcReg, MRI);
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000364 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
Chris Lattner57b21f92005-10-03 07:22:07 +0000365 "Machine PHI Operands must all be virtual registers!");
Chris Lattner5f096e22005-10-03 04:47:08 +0000366
Lang Hamesa77a3c32009-07-23 04:34:03 +0000367 // Get the MachineBasicBlock equivalent of the BasicBlock that is the source
368 // path the PHI.
369 MachineBasicBlock &opBlock = *MPhi->getOperand(i*2+2).getMBB();
370
Chris Lattner5f096e22005-10-03 04:47:08 +0000371 // Check to make sure we haven't already emitted the copy for this block.
Bill Wendling6b8bd512008-05-12 22:15:05 +0000372 // This can happen because PHI nodes may have multiple entries for the same
373 // basic block.
Evan Chengaacf4f12008-04-03 16:38:20 +0000374 if (!MBBsInsertedInto.insert(&opBlock))
Chris Lattner57b21f92005-10-03 07:22:07 +0000375 continue; // If the copy has already been emitted, we're done.
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000376
Bill Wendling6b8bd512008-05-12 22:15:05 +0000377 // Find a safe location to insert the copy, this may be the first terminator
378 // in the block (or end()).
Jakob Stoklund Olesenad205d62009-11-13 21:56:15 +0000379 MachineBasicBlock::iterator InsertPos =
Cameron Zwarichda592a9e2010-12-05 19:51:05 +0000380 findPHICopyInsertPoint(&opBlock, &MBB, SrcReg);
Evan Cheng94419d62009-03-13 22:59:14 +0000381
Chris Lattner57b21f92005-10-03 07:22:07 +0000382 // Insert the copy.
Craig Topperc0196b12014-04-14 00:51:57 +0000383 MachineInstr *NewSrcInstr = nullptr;
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000384 if (!reusedIncoming && IncomingReg) {
385 if (SrcUndef) {
386 // The source register is undefined, so there is no need for a real
387 // COPY, but we still need to ensure joint dominance by defs.
388 // Insert an IMPLICIT_DEF instruction.
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000389 NewSrcInstr = BuildMI(opBlock, InsertPos, MPhi->getDebugLoc(),
390 TII->get(TargetOpcode::IMPLICIT_DEF),
391 IncomingReg);
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000392
393 // Clean up the old implicit-def, if there even was one.
394 if (MachineInstr *DefMI = MRI->getVRegDef(SrcReg))
395 if (DefMI->isImplicitDef())
396 ImpDefs.insert(DefMI);
397 } else {
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000398 NewSrcInstr = BuildMI(opBlock, InsertPos, MPhi->getDebugLoc(),
399 TII->get(TargetOpcode::COPY), IncomingReg)
400 .addReg(SrcReg, 0, SrcSubReg);
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000401 }
402 }
Chris Lattner5f096e22005-10-03 04:47:08 +0000403
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000404 // We only need to update the LiveVariables kill of SrcReg if this was the
405 // last PHI use of SrcReg to be lowered on this CFG edge and it is not live
406 // out of the predecessor. We can also ignore undef sources.
407 if (LV && !SrcUndef &&
408 !VRegPHIUseCount[BBVRegPair(opBlock.getNumber(), SrcReg)] &&
409 !LV->isLiveOut(SrcReg, opBlock)) {
410 // We want to be able to insert a kill of the register if this PHI (aka,
411 // the copy we just inserted) is the last use of the source value. Live
412 // variable analysis conservatively handles this by saying that the value
413 // is live until the end of the block the PHI entry lives in. If the value
414 // really is dead at the PHI copy, there will be no successor blocks which
415 // have the value live-in.
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000416
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000417 // Okay, if we now know that the value is not live out of the block, we
418 // can add a kill marker in this block saying that it kills the incoming
419 // value!
Chris Lattner57b21f92005-10-03 07:22:07 +0000420
Chris Lattner227e9362006-01-04 07:12:21 +0000421 // In our final twist, we have to decide which instruction kills the
Jakob Stoklund Olesen2d827d62012-07-04 19:52:05 +0000422 // register. In most cases this is the copy, however, terminator
423 // instructions at the end of the block may also use the value. In this
424 // case, we should mark the last such terminator as being the killing
425 // block, not the copy.
426 MachineBasicBlock::iterator KillInst = opBlock.end();
427 MachineBasicBlock::iterator FirstTerm = opBlock.getFirstTerminator();
428 for (MachineBasicBlock::iterator Term = FirstTerm;
429 Term != opBlock.end(); ++Term) {
430 if (Term->readsRegister(SrcReg))
431 KillInst = Term;
432 }
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000433
Jakob Stoklund Olesen2d827d62012-07-04 19:52:05 +0000434 if (KillInst == opBlock.end()) {
435 // No terminator uses the register.
436
437 if (reusedIncoming || !IncomingReg) {
438 // We may have to rewind a bit if we didn't insert a copy this time.
439 KillInst = FirstTerm;
440 while (KillInst != opBlock.begin()) {
441 --KillInst;
442 if (KillInst->isDebugValue())
443 continue;
444 if (KillInst->readsRegister(SrcReg))
445 break;
446 }
447 } else {
448 // We just inserted this copy.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000449 KillInst = std::prev(InsertPos);
Chris Lattner227e9362006-01-04 07:12:21 +0000450 }
Chris Lattner227e9362006-01-04 07:12:21 +0000451 }
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000452 assert(KillInst->readsRegister(SrcReg) && "Cannot find kill instruction");
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000453
Chris Lattner227e9362006-01-04 07:12:21 +0000454 // Finally, mark it killed.
455 LV->addVirtualRegisterKilled(SrcReg, KillInst);
Chris Lattner57b21f92005-10-03 07:22:07 +0000456
457 // This vreg no longer lives all of the way through opBlock.
458 unsigned opBlockNum = opBlock.getNumber();
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000459 LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum);
Chris Lattnercab0b442003-01-13 20:01:16 +0000460 }
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000461
462 if (LIS) {
463 if (NewSrcInstr) {
464 LIS->InsertMachineInstrInMaps(NewSrcInstr);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000465 LIS->addSegmentToEndOfBlock(IncomingReg, NewSrcInstr);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000466 }
467
468 if (!SrcUndef &&
469 !VRegPHIUseCount[BBVRegPair(opBlock.getNumber(), SrcReg)]) {
470 LiveInterval &SrcLI = LIS->getInterval(SrcReg);
471
472 bool isLiveOut = false;
473 for (MachineBasicBlock::succ_iterator SI = opBlock.succ_begin(),
474 SE = opBlock.succ_end(); SI != SE; ++SI) {
Cameron Zwarich7c85c942013-02-12 05:48:58 +0000475 SlotIndex startIdx = LIS->getMBBStartIdx(*SI);
476 VNInfo *VNI = SrcLI.getVNInfoAt(startIdx);
477
478 // Definitions by other PHIs are not truly live-in for our purposes.
479 if (VNI && VNI->def != startIdx) {
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000480 isLiveOut = true;
481 break;
482 }
483 }
484
485 if (!isLiveOut) {
486 MachineBasicBlock::iterator KillInst = opBlock.end();
487 MachineBasicBlock::iterator FirstTerm = opBlock.getFirstTerminator();
488 for (MachineBasicBlock::iterator Term = FirstTerm;
489 Term != opBlock.end(); ++Term) {
490 if (Term->readsRegister(SrcReg))
491 KillInst = Term;
492 }
493
494 if (KillInst == opBlock.end()) {
495 // No terminator uses the register.
496
497 if (reusedIncoming || !IncomingReg) {
498 // We may have to rewind a bit if we didn't just insert a copy.
499 KillInst = FirstTerm;
500 while (KillInst != opBlock.begin()) {
501 --KillInst;
502 if (KillInst->isDebugValue())
503 continue;
504 if (KillInst->readsRegister(SrcReg))
505 break;
506 }
507 } else {
508 // We just inserted this copy.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000509 KillInst = std::prev(InsertPos);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000510 }
511 }
512 assert(KillInst->readsRegister(SrcReg) &&
513 "Cannot find kill instruction");
514
515 SlotIndex LastUseIndex = LIS->getInstructionIndex(KillInst);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000516 SrcLI.removeSegment(LastUseIndex.getRegSlot(),
517 LIS->getMBBEndIdx(&opBlock));
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000518 }
519 }
520 }
Chris Lattnercab0b442003-01-13 20:01:16 +0000521 }
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000522
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000523 // Really delete the PHI instruction now, if it is not in the LoweredPHIs map.
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000524 if (reusedIncoming || !IncomingReg) {
525 if (LIS)
526 LIS->RemoveMachineInstrFromMaps(MPhi);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000527 MF.DeleteMachineInstr(MPhi);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000528 }
Chris Lattnercab0b442003-01-13 20:01:16 +0000529}
Bill Wendling5d409822006-09-28 07:10:24 +0000530
531/// analyzePHINodes - Gather information about the PHI nodes in here. In
532/// particular, we want to map the number of uses of a virtual register which is
533/// used in a PHI node. We map that to the BB the vreg is coming from. This is
534/// used later to determine when the vreg is killed in the BB.
535///
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000536void PHIElimination::analyzePHINodes(const MachineFunction& MF) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000537 for (const auto &MBB : MF)
Alexey Samsonovf74bde62014-04-30 22:17:38 +0000538 for (const auto &BBI : MBB) {
539 if (!BBI.isPHI())
540 break;
541 for (unsigned i = 1, e = BBI.getNumOperands(); i != e; i += 2)
542 ++VRegPHIUseCount[BBVRegPair(BBI.getOperand(i+1).getMBB()->getNumber(),
543 BBI.getOperand(i).getReg())];
544 }
Bill Wendling5d409822006-09-28 07:10:24 +0000545}
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000546
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000547bool PHIElimination::SplitPHIEdges(MachineFunction &MF,
Cameron Zwarichecd44922011-02-17 06:13:46 +0000548 MachineBasicBlock &MBB,
Cameron Zwarichecd44922011-02-17 06:13:46 +0000549 MachineLoopInfo *MLI) {
Chris Lattnerb06015a2010-02-09 19:54:29 +0000550 if (MBB.empty() || !MBB.front().isPHI() || MBB.isLandingPad())
Jakob Stoklund Olesen4f7fd3b2009-11-11 19:31:31 +0000551 return false; // Quick exit for basic blocks without PHIs.
Jakob Stoklund Olesen736888f2009-11-18 18:01:35 +0000552
Craig Topperc0196b12014-04-14 00:51:57 +0000553 const MachineLoop *CurLoop = MLI ? MLI->getLoopFor(&MBB) : nullptr;
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000554 bool IsLoopHeader = CurLoop && &MBB == CurLoop->getHeader();
555
Evan Chengf259efd2010-08-17 01:20:36 +0000556 bool Changed = false;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000557 for (MachineBasicBlock::iterator BBI = MBB.begin(), BBE = MBB.end();
Chris Lattnerb06015a2010-02-09 19:54:29 +0000558 BBI != BBE && BBI->isPHI(); ++BBI) {
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000559 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
560 unsigned Reg = BBI->getOperand(i).getReg();
561 MachineBasicBlock *PreMBB = BBI->getOperand(i+1).getMBB();
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000562 // Is there a critical edge from PreMBB to MBB?
563 if (PreMBB->succ_size() == 1)
564 continue;
565
Evan Cheng647c5592010-08-17 17:43:50 +0000566 // Avoid splitting backedges of loops. It would introduce small
567 // out-of-line blocks into the loop which is very bad for code placement.
Cameron Zwarich15eb9252013-02-12 03:49:25 +0000568 if (PreMBB == &MBB && !SplitAllCriticalEdges)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000569 continue;
Craig Topperc0196b12014-04-14 00:51:57 +0000570 const MachineLoop *PreLoop = MLI ? MLI->getLoopFor(PreMBB) : nullptr;
Cameron Zwarich15eb9252013-02-12 03:49:25 +0000571 if (IsLoopHeader && PreLoop == CurLoop && !SplitAllCriticalEdges)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000572 continue;
573
574 // LV doesn't consider a phi use live-out, so isLiveOut only returns true
575 // when the source register is live-out for some other reason than a phi
576 // use. That means the copy we will insert in PreMBB won't be a kill, and
577 // there is a risk it may not be coalesced away.
578 //
579 // If the copy would be a kill, there is no need to split the edge.
Cameron Zwarich15eb9252013-02-12 03:49:25 +0000580 if (!isLiveOutPastPHIs(Reg, PreMBB) && !SplitAllCriticalEdges)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000581 continue;
582
583 DEBUG(dbgs() << PrintReg(Reg) << " live-out before critical edge BB#"
584 << PreMBB->getNumber() << " -> BB#" << MBB.getNumber()
585 << ": " << *BBI);
586
587 // If Reg is not live-in to MBB, it means it must be live-in to some
588 // other PreMBB successor, and we can avoid the interference by splitting
589 // the edge.
590 //
591 // If Reg *is* live-in to MBB, the interference is inevitable and a copy
592 // is likely to be left after coalescing. If we are looking at a loop
593 // exiting edge, split it so we won't insert code in the loop, otherwise
594 // don't bother.
Cameron Zwarich15eb9252013-02-12 03:49:25 +0000595 bool ShouldSplit = !isLiveIn(Reg, &MBB) || SplitAllCriticalEdges;
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000596
597 // Check for a loop exiting edge.
598 if (!ShouldSplit && CurLoop != PreLoop) {
599 DEBUG({
600 dbgs() << "Split wouldn't help, maybe avoid loop copies?\n";
601 if (PreLoop) dbgs() << "PreLoop: " << *PreLoop;
602 if (CurLoop) dbgs() << "CurLoop: " << *CurLoop;
603 });
604 // This edge could be entering a loop, exiting a loop, or it could be
605 // both: Jumping directly form one loop to the header of a sibling
606 // loop.
607 // Split unless this edge is entering CurLoop from an outer loop.
608 ShouldSplit = PreLoop && !PreLoop->contains(CurLoop);
Evan Cheng647c5592010-08-17 17:43:50 +0000609 }
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000610 if (!ShouldSplit)
611 continue;
612 if (!PreMBB->SplitCriticalEdge(&MBB, this)) {
Matt Arsenaultd850a062014-01-22 02:38:23 +0000613 DEBUG(dbgs() << "Failed to split critical edge.\n");
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000614 continue;
615 }
616 Changed = true;
617 ++NumCriticalEdgesSplit;
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000618 }
619 }
Cameron Zwarich0b0cc4d2011-02-17 06:13:43 +0000620 return Changed;
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000621}
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000622
623bool PHIElimination::isLiveIn(unsigned Reg, MachineBasicBlock *MBB) {
624 assert((LV || LIS) &&
625 "isLiveIn() requires either LiveVariables or LiveIntervals");
626 if (LIS)
627 return LIS->isLiveInToMBB(LIS->getInterval(Reg), MBB);
628 else
629 return LV->isLiveIn(Reg, *MBB);
630}
631
632bool PHIElimination::isLiveOutPastPHIs(unsigned Reg, MachineBasicBlock *MBB) {
633 assert((LV || LIS) &&
634 "isLiveOutPastPHIs() requires either LiveVariables or LiveIntervals");
635 // LiveVariables considers uses in PHIs to be in the predecessor basic block,
636 // so that a register used only in a PHI is not live out of the block. In
637 // contrast, LiveIntervals considers uses in PHIs to be on the edge rather than
638 // in the predecessor basic block, so that a register used only in a PHI is live
639 // out of the block.
640 if (LIS) {
641 const LiveInterval &LI = LIS->getInterval(Reg);
642 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
643 SE = MBB->succ_end(); SI != SE; ++SI) {
644 if (LI.liveAt(LIS->getMBBStartIdx(*SI)))
645 return true;
646 }
647 return false;
648 } else {
649 return LV->isLiveOut(Reg, *MBB);
650 }
651}