blob: c7f0329b3c5723b014172ec82f8f653e0e161243 [file] [log] [blame]
Eugene Zelenko32a40562017-09-11 23:00:48 +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
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "PHIEliminationUtils.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000017#include "llvm/ADT/DenseMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/Statistic.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000020#include "llvm/Analysis/LoopInfo.h"
21#include "llvm/CodeGen/LiveInterval.h"
Cameron Zwarich16b64cb2013-02-10 06:42:36 +000022#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/CodeGen/LiveVariables.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000024#include "llvm/CodeGen/MachineBasicBlock.h"
Jakob Stoklund Olesen15ca0092009-11-14 00:38:06 +000025#include "llvm/CodeGen/MachineDominators.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000026#include "llvm/CodeGen/MachineFunction.h"
27#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnercab0b442003-01-13 20:01:16 +000028#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng33281862008-04-11 17:54:45 +000029#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chengf259efd2010-08-17 01:20:36 +000030#include "llvm/CodeGen/MachineLoopInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000031#include "llvm/CodeGen/MachineOperand.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000033#include "llvm/CodeGen/SlotIndexes.h"
34#include "llvm/Pass.h"
Cameron Zwarich79304072011-03-10 05:59:17 +000035#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +000036#include "llvm/Support/Debug.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000037#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#include "llvm/Target/TargetInstrInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000039#include "llvm/Target/TargetOpcodes.h"
40#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000041#include "llvm/Target/TargetSubtargetInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000042#include <cassert>
43#include <iterator>
44#include <utility>
45
Chris Lattner43df6c22004-02-23 18:38:20 +000046using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000047
Davide Italiano1e8c59a2017-05-10 23:13:26 +000048#define DEBUG_TYPE "phi-node-elimination"
Chandler Carruth1b9dde02014-04-22 02:02:50 +000049
Cameron Zwarich79304072011-03-10 05:59:17 +000050static cl::opt<bool>
51DisableEdgeSplitting("disable-phi-elim-edge-splitting", cl::init(false),
52 cl::Hidden, cl::desc("Disable critical edge splitting "
53 "during PHI elimination"));
54
Cameron Zwarich15eb9252013-02-12 03:49:25 +000055static cl::opt<bool>
56SplitAllCriticalEdges("phi-elim-split-all-critical-edges", cl::init(false),
57 cl::Hidden, cl::desc("Split all critical edges during "
58 "PHI elimination"));
59
Daniel Jasper8f239f82015-03-03 10:23:11 +000060static cl::opt<bool> NoPhiElimLiveOutEarlyExit(
61 "no-phi-elim-live-out-early-exit", cl::init(false), cl::Hidden,
62 cl::desc("Do not use an early exit if isLiveOutPastPHIs returns true."));
63
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000064namespace {
Eugene Zelenko32a40562017-09-11 23:00:48 +000065
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000066 class PHIElimination : public MachineFunctionPass {
67 MachineRegisterInfo *MRI; // Machine register information
Cameron Zwariche0966732013-02-10 06:42:30 +000068 LiveVariables *LV;
Cameron Zwarich16b64cb2013-02-10 06:42:36 +000069 LiveIntervals *LIS;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000070
71 public:
72 static char ID; // Pass identification, replacement for typeid
Eugene Zelenko32a40562017-09-11 23:00:48 +000073
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000074 PHIElimination() : MachineFunctionPass(ID) {
75 initializePHIEliminationPass(*PassRegistry::getPassRegistry());
76 }
77
Craig Topper4584cd52014-03-07 09:26:03 +000078 bool runOnMachineFunction(MachineFunction &Fn) override;
79 void getAnalysisUsage(AnalysisUsage &AU) const override;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000080
81 private:
82 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
83 /// in predecessor basic blocks.
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000084 bool EliminatePHINodes(MachineFunction &MF, MachineBasicBlock &MBB);
Eugene Zelenko32a40562017-09-11 23:00:48 +000085
Cameron Zwaricha158d392013-02-10 06:42:32 +000086 void LowerPHINode(MachineBasicBlock &MBB,
Cameron Zwarich867bfcd2013-07-01 19:42:46 +000087 MachineBasicBlock::iterator LastPHIIt);
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000088
89 /// analyzePHINodes - Gather information about the PHI nodes in
90 /// here. In particular, we want to map the number of uses of a virtual
91 /// register which is used in a PHI node. We map that to the BB the
92 /// vreg is coming from. This is used later to determine when the vreg
93 /// is killed in the BB.
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000094 void analyzePHINodes(const MachineFunction& Fn);
95
96 /// Split critical edges where necessary for good coalescer performance.
97 bool SplitPHIEdges(MachineFunction &MF, MachineBasicBlock &MBB,
Cameron Zwariche0966732013-02-10 06:42:30 +000098 MachineLoopInfo *MLI);
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +000099
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000100 // These functions are temporary abstractions around LiveVariables and
101 // LiveIntervals, so they can go away when LiveVariables does.
Arnaud A. de Grandmaison2e8ffa32015-06-11 07:45:05 +0000102 bool isLiveIn(unsigned Reg, const MachineBasicBlock *MBB);
103 bool isLiveOutPastPHIs(unsigned Reg, const MachineBasicBlock *MBB);
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000104
Eugene Zelenko32a40562017-09-11 23:00:48 +0000105 using BBVRegPair = std::pair<unsigned, unsigned>;
106 using VRegPHIUse = DenseMap<BBVRegPair, unsigned>;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000107
108 VRegPHIUse VRegPHIUseCount;
109
110 // Defs of PHI sources which are implicit_def.
111 SmallPtrSet<MachineInstr*, 4> ImpDefs;
112
113 // Map reusable lowered PHI node -> incoming join register.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000114 using LoweredPHIMap =
115 DenseMap<MachineInstr*, unsigned, MachineInstrExpressionTrait>;
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000116 LoweredPHIMap LoweredPHIs;
117 };
Eugene Zelenko32a40562017-09-11 23:00:48 +0000118
119} // end anonymous namespace
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000120
Cameron Zwaricha158d392013-02-10 06:42:32 +0000121STATISTIC(NumLowered, "Number of phis lowered");
Cameron Zwarich87903962011-02-14 02:09:11 +0000122STATISTIC(NumCriticalEdgesSplit, "Number of critical edges split");
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000123STATISTIC(NumReused, "Number of reused lowered phis");
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000124
Lang Hamesaa037752009-07-21 23:47:33 +0000125char PHIElimination::ID = 0;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000126
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000127char& llvm::PHIEliminationID = PHIElimination::ID;
Chris Lattnercab0b442003-01-13 20:01:16 +0000128
Matthias Braun1527baa2017-05-25 21:26:32 +0000129INITIALIZE_PASS_BEGIN(PHIElimination, DEBUG_TYPE,
Andrew Trickd3f8fe82012-02-10 04:10:36 +0000130 "Eliminate PHI nodes for register allocation",
131 false, false)
132INITIALIZE_PASS_DEPENDENCY(LiveVariables)
Matthias Braun1527baa2017-05-25 21:26:32 +0000133INITIALIZE_PASS_END(PHIElimination, DEBUG_TYPE,
Andrew Trickd3f8fe82012-02-10 04:10:36 +0000134 "Eliminate PHI nodes for register allocation", false, false)
135
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000136void PHIElimination::getAnalysisUsage(AnalysisUsage &AU) const {
Matthias Braunf84547c2016-04-28 23:42:51 +0000137 AU.addUsedIfAvailable<LiveVariables>();
Dan Gohman04023152009-07-31 23:37:33 +0000138 AU.addPreserved<LiveVariables>();
Cameron Zwarich37ca2e82013-02-20 06:46:28 +0000139 AU.addPreserved<SlotIndexes>();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000140 AU.addPreserved<LiveIntervals>();
Jakob Stoklund Olesen15ca0092009-11-14 00:38:06 +0000141 AU.addPreserved<MachineDominatorTree>();
Evan Cheng16bfe5b2010-08-17 21:00:37 +0000142 AU.addPreserved<MachineLoopInfo>();
Dan Gohman04023152009-07-31 23:37:33 +0000143 MachineFunctionPass::getAnalysisUsage(AU);
144}
Lang Hamesaa037752009-07-21 23:47:33 +0000145
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000146bool PHIElimination::runOnMachineFunction(MachineFunction &MF) {
Evan Chenga5c0cc32010-05-04 17:12:26 +0000147 MRI = &MF.getRegInfo();
Cameron Zwariche0966732013-02-10 06:42:30 +0000148 LV = getAnalysisIfAvailable<LiveVariables>();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000149 LIS = getAnalysisIfAvailable<LiveIntervals>();
Evan Chengaacf4f12008-04-03 16:38:20 +0000150
Evan Chengaacf4f12008-04-03 16:38:20 +0000151 bool Changed = false;
152
Jakob Stoklund Olesen9760f042011-07-29 22:51:22 +0000153 // This pass takes the function out of SSA form.
154 MRI->leaveSSA();
155
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000156 // Split critical edges to help the coalescer. This does not yet support
157 // updating LiveIntervals, so we disable it.
Cameron Zwarichb47fb382013-02-11 09:24:47 +0000158 if (!DisableEdgeSplitting && (LV || LIS)) {
Cameron Zwariche0966732013-02-10 06:42:30 +0000159 MachineLoopInfo *MLI = getAnalysisIfAvailable<MachineLoopInfo>();
Arnaud A. de Grandmaison2e8ffa32015-06-11 07:45:05 +0000160 for (auto &MBB : MF)
161 Changed |= SplitPHIEdges(MF, MBB, MLI);
Evan Cheng16bfe5b2010-08-17 21:00:37 +0000162 }
Jakob Stoklund Olesen4f7fd3b2009-11-11 19:31:31 +0000163
164 // Populate VRegPHIUseCount
Evan Chenga5c0cc32010-05-04 17:12:26 +0000165 analyzePHINodes(MF);
Jakob Stoklund Olesen4f7fd3b2009-11-11 19:31:31 +0000166
Evan Chengaacf4f12008-04-03 16:38:20 +0000167 // Eliminate PHI instructions by inserting copies into predecessor blocks.
Arnaud A. de Grandmaison2e8ffa32015-06-11 07:45:05 +0000168 for (auto &MBB : MF)
169 Changed |= EliminatePHINodes(MF, MBB);
Evan Chengaacf4f12008-04-03 16:38:20 +0000170
171 // Remove dead IMPLICIT_DEF instructions.
Craig Topper46276792014-08-24 23:23:06 +0000172 for (MachineInstr *DefMI : ImpDefs) {
Evan Chengaacf4f12008-04-03 16:38:20 +0000173 unsigned DefReg = DefMI->getOperand(0).getReg();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000174 if (MRI->use_nodbg_empty(DefReg)) {
175 if (LIS)
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000176 LIS->RemoveMachineInstrFromMaps(*DefMI);
Evan Chengaacf4f12008-04-03 16:38:20 +0000177 DefMI->eraseFromParent();
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000178 }
Evan Chengaacf4f12008-04-03 16:38:20 +0000179 }
180
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000181 // Clean up the lowered PHI instructions.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000182 for (auto &I : LoweredPHIs) {
Cameron Zwarich4ee9aef2013-02-12 05:48:56 +0000183 if (LIS)
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000184 LIS->RemoveMachineInstrFromMaps(*I.first);
185 MF.DeleteMachineInstr(I.first);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000186 }
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000187
Bill Wendling819c3562009-12-17 23:42:32 +0000188 LoweredPHIs.clear();
Evan Chengaacf4f12008-04-03 16:38:20 +0000189 ImpDefs.clear();
190 VRegPHIUseCount.clear();
Evan Chenga5c0cc32010-05-04 17:12:26 +0000191
Matthias Braun90799ce2016-08-23 21:19:49 +0000192 MF.getProperties().set(MachineFunctionProperties::Property::NoPHIs);
193
Evan Chengaacf4f12008-04-03 16:38:20 +0000194 return Changed;
195}
196
Chris Lattnercab0b442003-01-13 20:01:16 +0000197/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
198/// predecessor basic blocks.
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000199bool PHIElimination::EliminatePHINodes(MachineFunction &MF,
Lang Hamesaa037752009-07-21 23:47:33 +0000200 MachineBasicBlock &MBB) {
Chris Lattnerb06015a2010-02-09 19:54:29 +0000201 if (MBB.empty() || !MBB.front().isPHI())
Chris Lattner5f096e22005-10-03 04:47:08 +0000202 return false; // Quick exit for basic blocks without PHIs.
Chris Lattnercab0b442003-01-13 20:01:16 +0000203
Chris Lattnera2f7b9b2004-05-10 18:47:18 +0000204 // Get an iterator to the first instruction after the last PHI node (this may
Chris Lattner5f096e22005-10-03 04:47:08 +0000205 // also be the end of the basic block).
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000206 MachineBasicBlock::iterator LastPHIIt =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000207 std::prev(MBB.SkipPHIsAndLabels(MBB.begin()));
Chris Lattnera2f7b9b2004-05-10 18:47:18 +0000208
Chris Lattnerb06015a2010-02-09 19:54:29 +0000209 while (MBB.front().isPHI())
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000210 LowerPHINode(MBB, LastPHIIt);
Bill Wendling5d409822006-09-28 07:10:24 +0000211
Chris Lattner5f096e22005-10-03 04:47:08 +0000212 return true;
213}
Misha Brukman835702a2005-04-21 22:36:52 +0000214
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000215/// isImplicitlyDefined - Return true if all defs of VirtReg are implicit-defs.
216/// This includes registers with no defs.
217static bool isImplicitlyDefined(unsigned VirtReg,
218 const MachineRegisterInfo *MRI) {
Owen Andersonb36376e2014-03-17 19:36:09 +0000219 for (MachineInstr &DI : MRI->def_instructions(VirtReg))
220 if (!DI.isImplicitDef())
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000221 return false;
222 return true;
223}
224
Evan Cheng18e46d42008-06-19 01:21:26 +0000225/// isSourceDefinedByImplicitDef - Return true if all sources of the phi node
226/// are implicit_def's.
Bill Wendling6b8bd512008-05-12 22:15:05 +0000227static bool isSourceDefinedByImplicitDef(const MachineInstr *MPhi,
Evan Cheng18e46d42008-06-19 01:21:26 +0000228 const MachineRegisterInfo *MRI) {
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000229 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
230 if (!isImplicitlyDefined(MPhi->getOperand(i).getReg(), MRI))
Evan Chengbec201f2008-05-10 00:17:50 +0000231 return false;
Evan Chengbec201f2008-05-10 00:17:50 +0000232 return true;
Evan Cheng33281862008-04-11 17:54:45 +0000233}
234
Eugene Zelenko32a40562017-09-11 23:00:48 +0000235/// LowerPHINode - Lower the PHI node at the top of the specified block.
Cameron Zwaricha158d392013-02-10 06:42:32 +0000236void PHIElimination::LowerPHINode(MachineBasicBlock &MBB,
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000237 MachineBasicBlock::iterator LastPHIIt) {
Cameron Zwaricha158d392013-02-10 06:42:32 +0000238 ++NumLowered;
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000239
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000240 MachineBasicBlock::iterator AfterPHIsIt = std::next(LastPHIIt);
Cameron Zwarich867bfcd2013-07-01 19:42:46 +0000241
Chris Lattner5f096e22005-10-03 04:47:08 +0000242 // Unlink the PHI node from the basic block, but don't delete the PHI yet.
Duncan P. N. Exon Smith1df1d1d2016-07-01 01:27:19 +0000243 MachineInstr *MPhi = MBB.remove(&*MBB.begin());
Chris Lattnercab0b442003-01-13 20:01:16 +0000244
Evan Cheng33281862008-04-11 17:54:45 +0000245 unsigned NumSrcs = (MPhi->getNumOperands() - 1) / 2;
Chris Lattner5f096e22005-10-03 04:47:08 +0000246 unsigned DestReg = MPhi->getOperand(0).getReg();
Jakob Stoklund Olesen952a6212010-08-18 16:09:47 +0000247 assert(MPhi->getOperand(0).getSubReg() == 0 && "Can't handle sub-reg PHIs");
Evan Cheng7d98a482008-07-03 09:09:37 +0000248 bool isDead = MPhi->getOperand(0).isDead();
Misha Brukman835702a2005-04-21 22:36:52 +0000249
Bill Wendling5d409822006-09-28 07:10:24 +0000250 // Create a new register for the incoming PHI arguments.
Chris Lattner5f096e22005-10-03 04:47:08 +0000251 MachineFunction &MF = *MBB.getParent();
Evan Cheng7d98a482008-07-03 09:09:37 +0000252 unsigned IncomingReg = 0;
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000253 bool reusedIncoming = false; // Is IncomingReg reused from an earlier PHI?
Chris Lattnercab0b442003-01-13 20:01:16 +0000254
Bill Wendling6b8bd512008-05-12 22:15:05 +0000255 // Insert a register to register copy at the top of the current block (but
Chris Lattner5f096e22005-10-03 04:47:08 +0000256 // after any remaining phi nodes) which copies the new incoming register
257 // into the phi node destination.
Eric Christopherfc6de422014-08-05 02:39:49 +0000258 const TargetInstrInfo *TII = MF.getSubtarget().getInstrInfo();
Evan Chengbec201f2008-05-10 00:17:50 +0000259 if (isSourceDefinedByImplicitDef(MPhi, MRI))
Evan Cheng7d98a482008-07-03 09:09:37 +0000260 // If all sources of a PHI node are implicit_def, just emit an
261 // implicit_def instead of a copy.
Bill Wendling67cd3952009-02-03 02:29:34 +0000262 BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
Chris Lattnerb06015a2010-02-09 19:54:29 +0000263 TII->get(TargetOpcode::IMPLICIT_DEF), DestReg);
Evan Cheng7d98a482008-07-03 09:09:37 +0000264 else {
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000265 // Can we reuse an earlier PHI node? This only happens for critical edges,
266 // typically those created by tail duplication.
267 unsigned &entry = LoweredPHIs[MPhi];
268 if (entry) {
269 // An identical PHI node was already lowered. Reuse the incoming register.
270 IncomingReg = entry;
271 reusedIncoming = true;
272 ++NumReused;
Jakob Stoklund Olesen1331a152011-01-09 03:05:53 +0000273 DEBUG(dbgs() << "Reusing " << PrintReg(IncomingReg) << " for " << *MPhi);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000274 } else {
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000275 const TargetRegisterClass *RC = MF.getRegInfo().getRegClass(DestReg);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000276 entry = IncomingReg = MF.getRegInfo().createVirtualRegister(RC);
277 }
Jakob Stoklund Olesene50d30d2010-07-10 19:08:25 +0000278 BuildMI(MBB, AfterPHIsIt, MPhi->getDebugLoc(),
279 TII->get(TargetOpcode::COPY), DestReg)
280 .addReg(IncomingReg);
Evan Cheng7d98a482008-07-03 09:09:37 +0000281 }
Chris Lattner5f096e22005-10-03 04:47:08 +0000282
Bill Wendling6b8bd512008-05-12 22:15:05 +0000283 // Update live variable information if there is any.
Chris Lattner5f096e22005-10-03 04:47:08 +0000284 if (LV) {
Duncan P. N. Exon Smith1df1d1d2016-07-01 01:27:19 +0000285 MachineInstr &PHICopy = *std::prev(AfterPHIsIt);
Chris Lattner5f096e22005-10-03 04:47:08 +0000286
Evan Cheng7d98a482008-07-03 09:09:37 +0000287 if (IncomingReg) {
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000288 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
289
Evan Cheng7d98a482008-07-03 09:09:37 +0000290 // Increment use count of the newly created virtual register.
Jakob Stoklund Olesen38b76e22010-02-23 22:43:58 +0000291 LV->setPHIJoin(IncomingReg);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000292
293 // When we are reusing the incoming register, it may already have been
294 // killed in this block. The old kill will also have been inserted at
295 // AfterPHIsIt, so it appears before the current PHICopy.
296 if (reusedIncoming)
297 if (MachineInstr *OldKill = VI.findKill(&MBB)) {
David Greene25552922010-01-05 01:24:24 +0000298 DEBUG(dbgs() << "Remove old kill from " << *OldKill);
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000299 LV->removeVirtualRegisterKilled(IncomingReg, *OldKill);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000300 DEBUG(MBB.dump());
301 }
Evan Chenga5a0c7c2007-04-18 00:36:11 +0000302
Evan Cheng7d98a482008-07-03 09:09:37 +0000303 // Add information to LiveVariables to know that the incoming value is
304 // killed. Note that because the value is defined in several places (once
305 // each for each incoming block), the "def" block and instruction fields
306 // for the VarInfo is not filled in.
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000307 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
Evan Cheng7d98a482008-07-03 09:09:37 +0000308 }
Misha Brukman835702a2005-04-21 22:36:52 +0000309
Bill Wendling6b8bd512008-05-12 22:15:05 +0000310 // Since we are going to be deleting the PHI node, if it is the last use of
311 // any registers, or if the value itself is dead, we need to move this
Chris Lattner5f096e22005-10-03 04:47:08 +0000312 // information over to the new copy we just inserted.
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000313 LV->removeVirtualRegistersKilled(*MPhi);
Chris Lattnercab0b442003-01-13 20:01:16 +0000314
Chris Lattner57b21f92005-10-03 07:22:07 +0000315 // If the result is dead, update LV.
Evan Cheng7d98a482008-07-03 09:09:37 +0000316 if (isDead) {
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000317 LV->addVirtualRegisterDead(DestReg, PHICopy);
318 LV->removeVirtualRegisterDead(DestReg, *MPhi);
Chris Lattner5f096e22005-10-03 04:47:08 +0000319 }
320 }
Chris Lattnercab0b442003-01-13 20:01:16 +0000321
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000322 // Update LiveIntervals for the new copy or implicit def.
323 if (LIS) {
Duncan P. N. Exon Smith1df1d1d2016-07-01 01:27:19 +0000324 SlotIndex DestCopyIndex =
325 LIS->InsertMachineInstrInMaps(*std::prev(AfterPHIsIt));
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000326
327 SlotIndex MBBStartIndex = LIS->getMBBStartIdx(&MBB);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000328 if (IncomingReg) {
329 // Add the region from the beginning of MBB to the copy instruction to
330 // IncomingReg's live interval.
Mark Lacey9d8103d2013-08-14 23:50:16 +0000331 LiveInterval &IncomingLI = LIS->createEmptyInterval(IncomingReg);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000332 VNInfo *IncomingVNI = IncomingLI.getVNInfoAt(MBBStartIndex);
333 if (!IncomingVNI)
334 IncomingVNI = IncomingLI.getNextValue(MBBStartIndex,
335 LIS->getVNInfoAllocator());
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000336 IncomingLI.addSegment(LiveInterval::Segment(MBBStartIndex,
337 DestCopyIndex.getRegSlot(),
338 IncomingVNI));
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000339 }
340
Cameron Zwarichd1132922013-02-21 08:51:55 +0000341 LiveInterval &DestLI = LIS->getInterval(DestReg);
Cameron Zwarich3ab4c4b2013-02-21 08:51:58 +0000342 assert(DestLI.begin() != DestLI.end() &&
343 "PHIs should have nonempty LiveIntervals.");
344 if (DestLI.endIndex().isDead()) {
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000345 // A dead PHI's live range begins and ends at the start of the MBB, but
346 // the lowered copy, which will still be dead, needs to begin and end at
347 // the copy instruction.
348 VNInfo *OrigDestVNI = DestLI.getVNInfoAt(MBBStartIndex);
349 assert(OrigDestVNI && "PHI destination should be live at block entry.");
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000350 DestLI.removeSegment(MBBStartIndex, MBBStartIndex.getDeadSlot());
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000351 DestLI.createDeadDef(DestCopyIndex.getRegSlot(),
352 LIS->getVNInfoAllocator());
353 DestLI.removeValNo(OrigDestVNI);
354 } else {
355 // Otherwise, remove the region from the beginning of MBB to the copy
356 // instruction from DestReg's live interval.
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000357 DestLI.removeSegment(MBBStartIndex, DestCopyIndex.getRegSlot());
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000358 VNInfo *DestVNI = DestLI.getVNInfoAt(DestCopyIndex.getRegSlot());
359 assert(DestVNI && "PHI destination should be live at its definition.");
360 DestVNI->def = DestCopyIndex.getRegSlot();
361 }
362 }
363
Bill Wendling6b8bd512008-05-12 22:15:05 +0000364 // Adjust the VRegPHIUseCount map to account for the removal of this PHI node.
Chris Lattner5f096e22005-10-03 04:47:08 +0000365 for (unsigned i = 1; i != MPhi->getNumOperands(); i += 2)
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000366 --VRegPHIUseCount[BBVRegPair(MPhi->getOperand(i+1).getMBB()->getNumber(),
Chris Lattnera5bb3702007-12-30 23:10:15 +0000367 MPhi->getOperand(i).getReg())];
Chris Lattner51ae8172003-05-12 14:28:28 +0000368
Bill Wendling6b8bd512008-05-12 22:15:05 +0000369 // Now loop over all of the incoming arguments, changing them to copy into the
370 // IncomingReg register in the corresponding predecessor basic block.
Evan Chengaacf4f12008-04-03 16:38:20 +0000371 SmallPtrSet<MachineBasicBlock*, 8> MBBsInsertedInto;
Evan Cheng33281862008-04-11 17:54:45 +0000372 for (int i = NumSrcs - 1; i >= 0; --i) {
373 unsigned SrcReg = MPhi->getOperand(i*2+1).getReg();
Jakob Stoklund Olesen952a6212010-08-18 16:09:47 +0000374 unsigned SrcSubReg = MPhi->getOperand(i*2+1).getSubReg();
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000375 bool SrcUndef = MPhi->getOperand(i*2+1).isUndef() ||
376 isImplicitlyDefined(SrcReg, MRI);
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000377 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
Chris Lattner57b21f92005-10-03 07:22:07 +0000378 "Machine PHI Operands must all be virtual registers!");
Chris Lattner5f096e22005-10-03 04:47:08 +0000379
Lang Hamesa77a3c32009-07-23 04:34:03 +0000380 // Get the MachineBasicBlock equivalent of the BasicBlock that is the source
381 // path the PHI.
382 MachineBasicBlock &opBlock = *MPhi->getOperand(i*2+2).getMBB();
383
Chris Lattner5f096e22005-10-03 04:47:08 +0000384 // Check to make sure we haven't already emitted the copy for this block.
Bill Wendling6b8bd512008-05-12 22:15:05 +0000385 // This can happen because PHI nodes may have multiple entries for the same
386 // basic block.
David Blaikie70573dc2014-11-19 07:49:26 +0000387 if (!MBBsInsertedInto.insert(&opBlock).second)
Chris Lattner57b21f92005-10-03 07:22:07 +0000388 continue; // If the copy has already been emitted, we're done.
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000389
Bill Wendling6b8bd512008-05-12 22:15:05 +0000390 // Find a safe location to insert the copy, this may be the first terminator
391 // in the block (or end()).
Jakob Stoklund Olesenad205d62009-11-13 21:56:15 +0000392 MachineBasicBlock::iterator InsertPos =
Cameron Zwarichda592a9e2010-12-05 19:51:05 +0000393 findPHICopyInsertPoint(&opBlock, &MBB, SrcReg);
Evan Cheng94419d62009-03-13 22:59:14 +0000394
Chris Lattner57b21f92005-10-03 07:22:07 +0000395 // Insert the copy.
Craig Topperc0196b12014-04-14 00:51:57 +0000396 MachineInstr *NewSrcInstr = nullptr;
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000397 if (!reusedIncoming && IncomingReg) {
398 if (SrcUndef) {
399 // The source register is undefined, so there is no need for a real
400 // COPY, but we still need to ensure joint dominance by defs.
401 // Insert an IMPLICIT_DEF instruction.
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000402 NewSrcInstr = BuildMI(opBlock, InsertPos, MPhi->getDebugLoc(),
403 TII->get(TargetOpcode::IMPLICIT_DEF),
404 IncomingReg);
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000405
406 // Clean up the old implicit-def, if there even was one.
407 if (MachineInstr *DefMI = MRI->getVRegDef(SrcReg))
408 if (DefMI->isImplicitDef())
409 ImpDefs.insert(DefMI);
410 } else {
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000411 NewSrcInstr = BuildMI(opBlock, InsertPos, MPhi->getDebugLoc(),
412 TII->get(TargetOpcode::COPY), IncomingReg)
413 .addReg(SrcReg, 0, SrcSubReg);
Jakob Stoklund Olesen70ed9242012-06-25 03:36:12 +0000414 }
415 }
Chris Lattner5f096e22005-10-03 04:47:08 +0000416
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000417 // We only need to update the LiveVariables kill of SrcReg if this was the
418 // last PHI use of SrcReg to be lowered on this CFG edge and it is not live
419 // out of the predecessor. We can also ignore undef sources.
420 if (LV && !SrcUndef &&
421 !VRegPHIUseCount[BBVRegPair(opBlock.getNumber(), SrcReg)] &&
422 !LV->isLiveOut(SrcReg, opBlock)) {
423 // We want to be able to insert a kill of the register if this PHI (aka,
424 // the copy we just inserted) is the last use of the source value. Live
425 // variable analysis conservatively handles this by saying that the value
426 // is live until the end of the block the PHI entry lives in. If the value
427 // really is dead at the PHI copy, there will be no successor blocks which
428 // have the value live-in.
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000429
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000430 // Okay, if we now know that the value is not live out of the block, we
431 // can add a kill marker in this block saying that it kills the incoming
432 // value!
Chris Lattner57b21f92005-10-03 07:22:07 +0000433
Chris Lattner227e9362006-01-04 07:12:21 +0000434 // In our final twist, we have to decide which instruction kills the
Jakob Stoklund Olesen2d827d62012-07-04 19:52:05 +0000435 // register. In most cases this is the copy, however, terminator
436 // instructions at the end of the block may also use the value. In this
437 // case, we should mark the last such terminator as being the killing
438 // block, not the copy.
439 MachineBasicBlock::iterator KillInst = opBlock.end();
440 MachineBasicBlock::iterator FirstTerm = opBlock.getFirstTerminator();
441 for (MachineBasicBlock::iterator Term = FirstTerm;
442 Term != opBlock.end(); ++Term) {
443 if (Term->readsRegister(SrcReg))
444 KillInst = Term;
445 }
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000446
Jakob Stoklund Olesen2d827d62012-07-04 19:52:05 +0000447 if (KillInst == opBlock.end()) {
448 // No terminator uses the register.
449
450 if (reusedIncoming || !IncomingReg) {
451 // We may have to rewind a bit if we didn't insert a copy this time.
452 KillInst = FirstTerm;
453 while (KillInst != opBlock.begin()) {
454 --KillInst;
455 if (KillInst->isDebugValue())
456 continue;
457 if (KillInst->readsRegister(SrcReg))
458 break;
459 }
460 } else {
461 // We just inserted this copy.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000462 KillInst = std::prev(InsertPos);
Chris Lattner227e9362006-01-04 07:12:21 +0000463 }
Chris Lattner227e9362006-01-04 07:12:21 +0000464 }
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000465 assert(KillInst->readsRegister(SrcReg) && "Cannot find kill instruction");
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000466
Chris Lattner227e9362006-01-04 07:12:21 +0000467 // Finally, mark it killed.
Duncan P. N. Exon Smithd26fdc82016-07-01 01:51:32 +0000468 LV->addVirtualRegisterKilled(SrcReg, *KillInst);
Chris Lattner57b21f92005-10-03 07:22:07 +0000469
470 // This vreg no longer lives all of the way through opBlock.
471 unsigned opBlockNum = opBlock.getNumber();
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000472 LV->getVarInfo(SrcReg).AliveBlocks.reset(opBlockNum);
Chris Lattnercab0b442003-01-13 20:01:16 +0000473 }
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000474
475 if (LIS) {
476 if (NewSrcInstr) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000477 LIS->InsertMachineInstrInMaps(*NewSrcInstr);
478 LIS->addSegmentToEndOfBlock(IncomingReg, *NewSrcInstr);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000479 }
480
481 if (!SrcUndef &&
482 !VRegPHIUseCount[BBVRegPair(opBlock.getNumber(), SrcReg)]) {
483 LiveInterval &SrcLI = LIS->getInterval(SrcReg);
484
485 bool isLiveOut = false;
486 for (MachineBasicBlock::succ_iterator SI = opBlock.succ_begin(),
487 SE = opBlock.succ_end(); SI != SE; ++SI) {
Cameron Zwarich7c85c942013-02-12 05:48:58 +0000488 SlotIndex startIdx = LIS->getMBBStartIdx(*SI);
489 VNInfo *VNI = SrcLI.getVNInfoAt(startIdx);
490
491 // Definitions by other PHIs are not truly live-in for our purposes.
492 if (VNI && VNI->def != startIdx) {
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000493 isLiveOut = true;
494 break;
495 }
496 }
497
498 if (!isLiveOut) {
499 MachineBasicBlock::iterator KillInst = opBlock.end();
500 MachineBasicBlock::iterator FirstTerm = opBlock.getFirstTerminator();
501 for (MachineBasicBlock::iterator Term = FirstTerm;
502 Term != opBlock.end(); ++Term) {
503 if (Term->readsRegister(SrcReg))
504 KillInst = Term;
505 }
506
507 if (KillInst == opBlock.end()) {
508 // No terminator uses the register.
509
510 if (reusedIncoming || !IncomingReg) {
511 // We may have to rewind a bit if we didn't just insert a copy.
512 KillInst = FirstTerm;
513 while (KillInst != opBlock.begin()) {
514 --KillInst;
515 if (KillInst->isDebugValue())
516 continue;
517 if (KillInst->readsRegister(SrcReg))
518 break;
519 }
520 } else {
521 // We just inserted this copy.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000522 KillInst = std::prev(InsertPos);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000523 }
524 }
525 assert(KillInst->readsRegister(SrcReg) &&
526 "Cannot find kill instruction");
527
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000528 SlotIndex LastUseIndex = LIS->getInstructionIndex(*KillInst);
Matthias Braun13ddb7c2013-10-10 21:28:43 +0000529 SrcLI.removeSegment(LastUseIndex.getRegSlot(),
530 LIS->getMBBEndIdx(&opBlock));
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000531 }
532 }
533 }
Chris Lattnercab0b442003-01-13 20:01:16 +0000534 }
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000535
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000536 // Really delete the PHI instruction now, if it is not in the LoweredPHIs map.
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000537 if (reusedIncoming || !IncomingReg) {
538 if (LIS)
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000539 LIS->RemoveMachineInstrFromMaps(*MPhi);
Jakob Stoklund Olesenec20a882009-12-16 18:55:53 +0000540 MF.DeleteMachineInstr(MPhi);
Cameron Zwarich16b64cb2013-02-10 06:42:36 +0000541 }
Chris Lattnercab0b442003-01-13 20:01:16 +0000542}
Bill Wendling5d409822006-09-28 07:10:24 +0000543
544/// analyzePHINodes - Gather information about the PHI nodes in here. In
545/// particular, we want to map the number of uses of a virtual register which is
546/// used in a PHI node. We map that to the BB the vreg is coming from. This is
547/// used later to determine when the vreg is killed in the BB.
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000548void PHIElimination::analyzePHINodes(const MachineFunction& MF) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000549 for (const auto &MBB : MF)
Alexey Samsonovf74bde62014-04-30 22:17:38 +0000550 for (const auto &BBI : MBB) {
551 if (!BBI.isPHI())
552 break;
553 for (unsigned i = 1, e = BBI.getNumOperands(); i != e; i += 2)
554 ++VRegPHIUseCount[BBVRegPair(BBI.getOperand(i+1).getMBB()->getNumber(),
555 BBI.getOperand(i).getReg())];
556 }
Bill Wendling5d409822006-09-28 07:10:24 +0000557}
Jakob Stoklund Olesen19f235e2009-11-10 22:00:56 +0000558
Cameron Zwaricha3fb8cb2010-12-05 21:39:42 +0000559bool PHIElimination::SplitPHIEdges(MachineFunction &MF,
Cameron Zwarichecd44922011-02-17 06:13:46 +0000560 MachineBasicBlock &MBB,
Cameron Zwarichecd44922011-02-17 06:13:46 +0000561 MachineLoopInfo *MLI) {
Reid Kleckner0e288232015-08-27 23:27:47 +0000562 if (MBB.empty() || !MBB.front().isPHI() || MBB.isEHPad())
Jakob Stoklund Olesen4f7fd3b2009-11-11 19:31:31 +0000563 return false; // Quick exit for basic blocks without PHIs.
Jakob Stoklund Olesen736888f2009-11-18 18:01:35 +0000564
Craig Topperc0196b12014-04-14 00:51:57 +0000565 const MachineLoop *CurLoop = MLI ? MLI->getLoopFor(&MBB) : nullptr;
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000566 bool IsLoopHeader = CurLoop && &MBB == CurLoop->getHeader();
567
Evan Chengf259efd2010-08-17 01:20:36 +0000568 bool Changed = false;
Evan Cheng2a81dd42011-12-06 22:12:01 +0000569 for (MachineBasicBlock::iterator BBI = MBB.begin(), BBE = MBB.end();
Chris Lattnerb06015a2010-02-09 19:54:29 +0000570 BBI != BBE && BBI->isPHI(); ++BBI) {
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000571 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
572 unsigned Reg = BBI->getOperand(i).getReg();
573 MachineBasicBlock *PreMBB = BBI->getOperand(i+1).getMBB();
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000574 // Is there a critical edge from PreMBB to MBB?
575 if (PreMBB->succ_size() == 1)
576 continue;
577
Evan Cheng647c5592010-08-17 17:43:50 +0000578 // Avoid splitting backedges of loops. It would introduce small
579 // out-of-line blocks into the loop which is very bad for code placement.
Cameron Zwarich15eb9252013-02-12 03:49:25 +0000580 if (PreMBB == &MBB && !SplitAllCriticalEdges)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000581 continue;
Craig Topperc0196b12014-04-14 00:51:57 +0000582 const MachineLoop *PreLoop = MLI ? MLI->getLoopFor(PreMBB) : nullptr;
Cameron Zwarich15eb9252013-02-12 03:49:25 +0000583 if (IsLoopHeader && PreLoop == CurLoop && !SplitAllCriticalEdges)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000584 continue;
585
586 // LV doesn't consider a phi use live-out, so isLiveOut only returns true
587 // when the source register is live-out for some other reason than a phi
588 // use. That means the copy we will insert in PreMBB won't be a kill, and
589 // there is a risk it may not be coalesced away.
590 //
591 // If the copy would be a kill, there is no need to split the edge.
Daniel Jasper8f239f82015-03-03 10:23:11 +0000592 bool ShouldSplit = isLiveOutPastPHIs(Reg, PreMBB);
593 if (!ShouldSplit && !NoPhiElimLiveOutEarlyExit)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000594 continue;
Daniel Jasper8f239f82015-03-03 10:23:11 +0000595 if (ShouldSplit) {
596 DEBUG(dbgs() << PrintReg(Reg) << " live-out before critical edge BB#"
597 << PreMBB->getNumber() << " -> BB#" << MBB.getNumber()
598 << ": " << *BBI);
599 }
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000600
601 // If Reg is not live-in to MBB, it means it must be live-in to some
602 // other PreMBB successor, and we can avoid the interference by splitting
603 // the edge.
604 //
605 // If Reg *is* live-in to MBB, the interference is inevitable and a copy
606 // is likely to be left after coalescing. If we are looking at a loop
607 // exiting edge, split it so we won't insert code in the loop, otherwise
608 // don't bother.
Daniel Jasper8f239f82015-03-03 10:23:11 +0000609 ShouldSplit = ShouldSplit && !isLiveIn(Reg, &MBB);
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000610
611 // Check for a loop exiting edge.
612 if (!ShouldSplit && CurLoop != PreLoop) {
613 DEBUG({
614 dbgs() << "Split wouldn't help, maybe avoid loop copies?\n";
615 if (PreLoop) dbgs() << "PreLoop: " << *PreLoop;
616 if (CurLoop) dbgs() << "CurLoop: " << *CurLoop;
617 });
618 // This edge could be entering a loop, exiting a loop, or it could be
619 // both: Jumping directly form one loop to the header of a sibling
620 // loop.
621 // Split unless this edge is entering CurLoop from an outer loop.
622 ShouldSplit = PreLoop && !PreLoop->contains(CurLoop);
Evan Cheng647c5592010-08-17 17:43:50 +0000623 }
Daniel Jasper8f239f82015-03-03 10:23:11 +0000624 if (!ShouldSplit && !SplitAllCriticalEdges)
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000625 continue;
Quentin Colombet23341a82016-04-21 21:01:13 +0000626 if (!PreMBB->SplitCriticalEdge(&MBB, *this)) {
Matt Arsenaultd850a062014-01-22 02:38:23 +0000627 DEBUG(dbgs() << "Failed to split critical edge.\n");
Jakob Stoklund Olesenf62c07f2012-07-20 20:49:53 +0000628 continue;
629 }
630 Changed = true;
631 ++NumCriticalEdgesSplit;
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000632 }
633 }
Cameron Zwarich0b0cc4d2011-02-17 06:13:43 +0000634 return Changed;
Jakob Stoklund Olesen4453dc92009-11-10 22:01:05 +0000635}
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000636
Arnaud A. de Grandmaison2e8ffa32015-06-11 07:45:05 +0000637bool PHIElimination::isLiveIn(unsigned Reg, const MachineBasicBlock *MBB) {
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000638 assert((LV || LIS) &&
639 "isLiveIn() requires either LiveVariables or LiveIntervals");
640 if (LIS)
641 return LIS->isLiveInToMBB(LIS->getInterval(Reg), MBB);
642 else
643 return LV->isLiveIn(Reg, *MBB);
644}
645
Arnaud A. de Grandmaison2e8ffa32015-06-11 07:45:05 +0000646bool PHIElimination::isLiveOutPastPHIs(unsigned Reg,
647 const MachineBasicBlock *MBB) {
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000648 assert((LV || LIS) &&
649 "isLiveOutPastPHIs() requires either LiveVariables or LiveIntervals");
650 // LiveVariables considers uses in PHIs to be in the predecessor basic block,
651 // so that a register used only in a PHI is not live out of the block. In
652 // contrast, LiveIntervals considers uses in PHIs to be on the edge rather than
653 // in the predecessor basic block, so that a register used only in a PHI is live
654 // out of the block.
655 if (LIS) {
656 const LiveInterval &LI = LIS->getInterval(Reg);
Arnaud A. de Grandmaison2e8ffa32015-06-11 07:45:05 +0000657 for (const MachineBasicBlock *SI : MBB->successors())
658 if (LI.liveAt(LIS->getMBBStartIdx(SI)))
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000659 return true;
Cameron Zwarichbb9ad312013-02-10 23:29:49 +0000660 return false;
661 } else {
662 return LV->isLiveOut(Reg, *MBB);
663 }
664}