blob: e272d25047e63929d7a91dcc6f35a59c947d19f0 [file] [log] [blame]
Jakob Stoklund Olesenbd5109f2011-09-28 00:01:56 +00001//===- ExecutionDepsFix.cpp - Fix execution dependecy issues ----*- C++ -*-===//
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +00009
Matthias Braune6ff30b2017-03-18 05:08:58 +000010#include "llvm/CodeGen/ExecutionDepsFix.h"
11
Chandler Carruthed0881b2012-12-03 16:50:05 +000012#include "llvm/ADT/PostOrderIterator.h"
Matthias Braun8142efa2014-12-17 19:13:47 +000013#include "llvm/ADT/iterator_range.h"
Juergen Ributzka310034e2013-12-14 06:52:56 +000014#include "llvm/CodeGen/LivePhysRegs.h"
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000015#include "llvm/CodeGen/MachineFunctionPass.h"
16#include "llvm/CodeGen/MachineRegisterInfo.h"
Marina Yatsina53ce3f92016-08-17 19:07:40 +000017#include "llvm/CodeGen/RegisterClassInfo.h"
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +000018#include "llvm/Support/Allocator.h"
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000019#include "llvm/Support/Debug.h"
20#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/Target/TargetInstrInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000022#include "llvm/Target/TargetSubtargetInfo.h"
23
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +000024using namespace llvm;
25
Matthias Braune9f82092017-03-18 05:05:40 +000026#define DEBUG_TYPE "execution-deps-fix"
Chandler Carruth1b9dde02014-04-22 02:02:50 +000027
Matthias Braun046318b2015-03-06 18:56:20 +000028/// Translate TRI register number to a list of indices into our smaller tables
Matthias Braun8142efa2014-12-17 19:13:47 +000029/// of interesting registers.
30iterator_range<SmallVectorImpl<int>::const_iterator>
Matthias Braune9f82092017-03-18 05:05:40 +000031ExecutionDepsFix::regIndices(unsigned Reg) const {
Jakob Stoklund Olesen30c81122011-09-27 23:50:46 +000032 assert(Reg < AliasMap.size() && "Invalid register");
Matthias Braun8142efa2014-12-17 19:13:47 +000033 const auto &Entry = AliasMap[Reg];
34 return make_range(Entry.begin(), Entry.end());
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +000035}
36
Matthias Braune9f82092017-03-18 05:05:40 +000037DomainValue *ExecutionDepsFix::alloc(int domain) {
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +000038 DomainValue *dv = Avail.empty() ?
39 new(Allocator.Allocate()) DomainValue :
40 Avail.pop_back_val();
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +000041 if (domain >= 0)
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +000042 dv->addDomain(domain);
Jakob Stoklund Olesenb7e44a32011-11-08 23:26:00 +000043 assert(dv->Refs == 0 && "Reference count wasn't cleared");
Jakob Stoklund Olesen53ec9772011-11-09 00:06:18 +000044 assert(!dv->Next && "Chained DomainValue shouldn't have been recycled");
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +000045 return dv;
46}
47
Sanjay Patel4297c3f2015-03-15 18:16:04 +000048/// Release a reference to DV. When the last reference is released,
Jakob Stoklund Olesen1438e192011-11-08 21:57:44 +000049/// collapse if needed.
Matthias Braune9f82092017-03-18 05:05:40 +000050void ExecutionDepsFix::release(DomainValue *DV) {
Jakob Stoklund Olesen53ec9772011-11-09 00:06:18 +000051 while (DV) {
52 assert(DV->Refs && "Bad DomainValue");
53 if (--DV->Refs)
54 return;
Jakob Stoklund Olesen1438e192011-11-08 21:57:44 +000055
Jakob Stoklund Olesen53ec9772011-11-09 00:06:18 +000056 // There are no more DV references. Collapse any contained instructions.
57 if (DV->AvailableDomains && !DV->isCollapsed())
58 collapse(DV, DV->getFirstDomain());
Jakob Stoklund Olesen1438e192011-11-08 21:57:44 +000059
Jakob Stoklund Olesen53ec9772011-11-09 00:06:18 +000060 DomainValue *Next = DV->Next;
61 DV->clear();
62 Avail.push_back(DV);
63 // Also release the next DomainValue in the chain.
64 DV = Next;
65 }
66}
67
Sanjay Patel4297c3f2015-03-15 18:16:04 +000068/// Follow the chain of dead DomainValues until a live DomainValue is reached.
69/// Update the referenced pointer when necessary.
Matthias Braune9f82092017-03-18 05:05:40 +000070DomainValue *ExecutionDepsFix::resolve(DomainValue *&DVRef) {
Jakob Stoklund Olesen53ec9772011-11-09 00:06:18 +000071 DomainValue *DV = DVRef;
72 if (!DV || !DV->Next)
73 return DV;
74
75 // DV has a chain. Find the end.
76 do DV = DV->Next;
77 while (DV->Next);
78
79 // Update DVRef to point to DV.
80 retain(DV);
81 release(DVRef);
82 DVRef = DV;
83 return DV;
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +000084}
85
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +000086/// Set LiveRegs[rx] = dv, updating reference counts.
Matthias Braune9f82092017-03-18 05:05:40 +000087void ExecutionDepsFix::setLiveReg(int rx, DomainValue *dv) {
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +000088 assert(unsigned(rx) < NumRegs && "Invalid index");
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +000089 assert(LiveRegs && "Must enter basic block first.");
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +000090
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +000091 if (LiveRegs[rx].Value == dv)
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +000092 return;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +000093 if (LiveRegs[rx].Value)
94 release(LiveRegs[rx].Value);
95 LiveRegs[rx].Value = retain(dv);
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +000096}
97
98// Kill register rx, recycle or collapse any DomainValue.
Matthias Braune9f82092017-03-18 05:05:40 +000099void ExecutionDepsFix::kill(int rx) {
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000100 assert(unsigned(rx) < NumRegs && "Invalid index");
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000101 assert(LiveRegs && "Must enter basic block first.");
102 if (!LiveRegs[rx].Value)
103 return;
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000104
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000105 release(LiveRegs[rx].Value);
Craig Topperc0196b12014-04-14 00:51:57 +0000106 LiveRegs[rx].Value = nullptr;
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000107}
108
109/// Force register rx into domain.
Matthias Braune9f82092017-03-18 05:05:40 +0000110void ExecutionDepsFix::force(int rx, unsigned domain) {
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000111 assert(unsigned(rx) < NumRegs && "Invalid index");
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000112 assert(LiveRegs && "Must enter basic block first.");
113 if (DomainValue *dv = LiveRegs[rx].Value) {
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000114 if (dv->isCollapsed())
115 dv->addDomain(domain);
Jakob Stoklund Olesen41051a02010-04-06 19:48:56 +0000116 else if (dv->hasDomain(domain))
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000117 collapse(dv, domain);
Jakob Stoklund Olesen41051a02010-04-06 19:48:56 +0000118 else {
Jakob Stoklund Olesenbd5109f2011-09-28 00:01:56 +0000119 // This is an incompatible open DomainValue. Collapse it to whatever and
120 // force the new value into domain. This costs a domain crossing.
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000121 collapse(dv, dv->getFirstDomain());
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000122 assert(LiveRegs[rx].Value && "Not live after collapse?");
123 LiveRegs[rx].Value->addDomain(domain);
Jakob Stoklund Olesen41051a02010-04-06 19:48:56 +0000124 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000125 } else {
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000126 // Set up basic collapsed DomainValue.
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000127 setLiveReg(rx, alloc(domain));
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000128 }
129}
130
131/// Collapse open DomainValue into given domain. If there are multiple
132/// registers using dv, they each get a unique collapsed DomainValue.
Matthias Braune9f82092017-03-18 05:05:40 +0000133void ExecutionDepsFix::collapse(DomainValue *dv, unsigned domain) {
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000134 assert(dv->hasDomain(domain) && "Cannot collapse");
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000135
136 // Collapse all the instructions.
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000137 while (!dv->Instrs.empty())
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000138 TII->setExecutionDomain(*dv->Instrs.pop_back_val(), domain);
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000139 dv->setSingleDomain(domain);
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000140
141 // If there are multiple users, give them new, unique DomainValues.
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +0000142 if (LiveRegs && dv->Refs > 1)
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000143 for (unsigned rx = 0; rx != NumRegs; ++rx)
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000144 if (LiveRegs[rx].Value == dv)
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000145 setLiveReg(rx, alloc(domain));
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000146}
147
Sanjay Patel4297c3f2015-03-15 18:16:04 +0000148/// All instructions and registers in B are moved to A, and B is released.
Matthias Braune9f82092017-03-18 05:05:40 +0000149bool ExecutionDepsFix::merge(DomainValue *A, DomainValue *B) {
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000150 assert(!A->isCollapsed() && "Cannot merge into collapsed");
151 assert(!B->isCollapsed() && "Cannot merge from collapsed");
Jakob Stoklund Olesen58ca0a62010-03-31 20:05:12 +0000152 if (A == B)
Jakob Stoklund Olesen4cd58662010-03-31 17:13:16 +0000153 return true;
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000154 // Restrict to the domains that A and B have in common.
155 unsigned common = A->getCommonDomains(B->AvailableDomains);
156 if (!common)
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000157 return false;
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000158 A->AvailableDomains = common;
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000159 A->Instrs.append(B->Instrs.begin(), B->Instrs.end());
Jakob Stoklund Olesen12058812011-11-08 20:57:04 +0000160
161 // Clear the old DomainValue so we won't try to swizzle instructions twice.
Jakob Stoklund Olesenb7e44a32011-11-08 23:26:00 +0000162 B->clear();
Jakob Stoklund Olesen53ec9772011-11-09 00:06:18 +0000163 // All uses of B are referred to A.
164 B->Next = retain(A);
Jakob Stoklund Olesen12058812011-11-08 20:57:04 +0000165
Michael Ilsemanaddddc42014-12-15 18:48:43 +0000166 for (unsigned rx = 0; rx != NumRegs; ++rx) {
167 assert(LiveRegs && "no space allocated for live registers");
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000168 if (LiveRegs[rx].Value == B)
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000169 setLiveReg(rx, A);
Michael Ilsemanaddddc42014-12-15 18:48:43 +0000170 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000171 return true;
172}
173
Sanjay Patel4297c3f2015-03-15 18:16:04 +0000174/// Set up LiveRegs by merging predecessor live-out values.
Matthias Braune9f82092017-03-18 05:05:40 +0000175void ExecutionDepsFix::enterBasicBlock(MachineBasicBlock *MBB) {
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000176 // Reset instruction counter in each basic block.
177 CurInstr = 0;
178
Andrew Trickb6d56be2013-10-14 22:19:03 +0000179 // Set up UndefReads to track undefined register reads.
180 UndefReads.clear();
Juergen Ributzka310034e2013-12-14 06:52:56 +0000181 LiveRegSet.clear();
Andrew Trickb6d56be2013-10-14 22:19:03 +0000182
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000183 // Set up LiveRegs to represent registers entering MBB.
184 if (!LiveRegs)
185 LiveRegs = new LiveReg[NumRegs];
186
187 // Default values are 'nothing happened a long time ago'.
188 for (unsigned rx = 0; rx != NumRegs; ++rx) {
Craig Topperc0196b12014-04-14 00:51:57 +0000189 LiveRegs[rx].Value = nullptr;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000190 LiveRegs[rx].Def = -(1 << 20);
191 }
192
193 // This is the entry block.
194 if (MBB->pred_empty()) {
Matthias Braund9da1622015-09-09 18:08:03 +0000195 for (const auto &LI : MBB->liveins()) {
196 for (int rx : regIndices(LI.PhysReg)) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000197 // Treat function live-ins as if they were defined just before the first
198 // instruction. Usually, function arguments are set up immediately
199 // before the call.
200 LiveRegs[rx].Def = -1;
201 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000202 }
203 DEBUG(dbgs() << "BB#" << MBB->getNumber() << ": entry\n");
204 return;
205 }
Jakob Stoklund Olesen3dc89c92011-11-09 01:06:56 +0000206
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000207 // Try to coalesce live-out registers from predecessors.
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000208 for (MachineBasicBlock::const_pred_iterator pi = MBB->pred_begin(),
209 pe = MBB->pred_end(); pi != pe; ++pi) {
Keno Fischer578cf7a2017-01-30 23:37:03 +0000210 auto fi = MBBInfos.find(*pi);
211 assert(fi != MBBInfos.end() &&
212 "Should have pre-allocated MBBInfos for all MBBs");
213 LiveReg *Incoming = fi->second.OutRegs;
214 // Incoming is null if this is a backedge from a BB
215 // we haven't processed yet
216 if (Incoming == nullptr) {
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000217 continue;
218 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000219
220 for (unsigned rx = 0; rx != NumRegs; ++rx) {
221 // Use the most recent predecessor def for each register.
Keno Fischer578cf7a2017-01-30 23:37:03 +0000222 LiveRegs[rx].Def = std::max(LiveRegs[rx].Def, Incoming[rx].Def);
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000223
Keno Fischer578cf7a2017-01-30 23:37:03 +0000224 DomainValue *pdv = resolve(Incoming[rx].Value);
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000225 if (!pdv)
Jakob Stoklund Olesen3dc89c92011-11-09 01:06:56 +0000226 continue;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000227 if (!LiveRegs[rx].Value) {
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000228 setLiveReg(rx, pdv);
Chris Lattner503a0ef2010-03-31 20:32:51 +0000229 continue;
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000230 }
Chris Lattner503a0ef2010-03-31 20:32:51 +0000231
232 // We have a live DomainValue from more than one predecessor.
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000233 if (LiveRegs[rx].Value->isCollapsed()) {
Eric Christopher650c8f22014-05-20 17:11:11 +0000234 // We are already collapsed, but predecessor is not. Force it.
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000235 unsigned Domain = LiveRegs[rx].Value->getFirstDomain();
236 if (!pdv->isCollapsed() && pdv->hasDomain(Domain))
237 collapse(pdv, Domain);
Chris Lattner503a0ef2010-03-31 20:32:51 +0000238 continue;
239 }
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +0000240
Chris Lattner503a0ef2010-03-31 20:32:51 +0000241 // Currently open, merge in predecessor.
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000242 if (!pdv->isCollapsed())
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000243 merge(LiveRegs[rx].Value, pdv);
Chris Lattner503a0ef2010-03-31 20:32:51 +0000244 else
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000245 force(rx, pdv->getFirstDomain());
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000246 }
247 }
Keno Fischer578cf7a2017-01-30 23:37:03 +0000248 DEBUG(
249 dbgs() << "BB#" << MBB->getNumber()
250 << (!isBlockDone(MBB) ? ": incomplete\n" : ": all preds known\n"));
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000251}
252
Matthias Braune9f82092017-03-18 05:05:40 +0000253void ExecutionDepsFix::leaveBasicBlock(MachineBasicBlock *MBB) {
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000254 assert(LiveRegs && "Must enter basic block first.");
Keno Fischer578cf7a2017-01-30 23:37:03 +0000255 LiveReg *OldOutRegs = MBBInfos[MBB].OutRegs;
256 // Save register clearances at end of MBB - used by enterBasicBlock().
257 MBBInfos[MBB].OutRegs = LiveRegs;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000258
Keno Fischer578cf7a2017-01-30 23:37:03 +0000259 // While processing the basic block, we kept `Def` relative to the start
260 // of the basic block for convenience. However, future use of this information
261 // only cares about the clearance from the end of the block, so adjust
262 // everything to be relative to the end of the basic block.
263 for (unsigned i = 0, e = NumRegs; i != e; ++i)
264 LiveRegs[i].Def -= CurInstr;
265 if (OldOutRegs) {
266 // This must be the second pass.
Jakob Stoklund Olesen3dc89c92011-11-09 01:06:56 +0000267 // Release all the DomainValues instead of keeping them.
268 for (unsigned i = 0, e = NumRegs; i != e; ++i)
Keno Fischer578cf7a2017-01-30 23:37:03 +0000269 release(OldOutRegs[i].Value);
270 delete[] OldOutRegs;
Jakob Stoklund Olesen3dc89c92011-11-09 01:06:56 +0000271 }
Craig Topperc0196b12014-04-14 00:51:57 +0000272 LiveRegs = nullptr;
Jakob Stoklund Olesen736cf462011-11-07 21:40:27 +0000273}
274
Matthias Braune9f82092017-03-18 05:05:40 +0000275bool ExecutionDepsFix::visitInstr(MachineInstr *MI) {
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000276 // Update instructions with explicit execution domains.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000277 std::pair<uint16_t, uint16_t> DomP = TII->getExecutionDomain(*MI);
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000278 if (DomP.first) {
279 if (DomP.second)
280 visitSoftInstr(MI, DomP.second);
Jakob Stoklund Olesen736cf462011-11-07 21:40:27 +0000281 else
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000282 visitHardInstr(MI, DomP.first);
283 }
284
Keno Fischer578cf7a2017-01-30 23:37:03 +0000285 return !DomP.first;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000286}
287
Marina Yatsina88f0c312016-08-11 07:32:08 +0000288/// \brief Helps avoid false dependencies on undef registers by updating the
289/// machine instructions' undef operand to use a register that the instruction
290/// is truly dependent on, or use a register with clearance higher than Pref.
Keno Fischer282c6242017-04-04 20:30:47 +0000291/// Returns true if it was able to find a true dependency, thus not requiring
292/// a dependency breaking instruction regardless of clearance.
293bool ExecutionDepsFix::pickBestRegisterForUndef(MachineInstr *MI,
294 unsigned OpIdx, unsigned Pref) {
Marina Yatsina88f0c312016-08-11 07:32:08 +0000295 MachineOperand &MO = MI->getOperand(OpIdx);
296 assert(MO.isUndef() && "Expected undef machine operand");
297
298 unsigned OriginalReg = MO.getReg();
299
300 // Update only undef operands that are mapped to one register.
301 if (AliasMap[OriginalReg].size() != 1)
Keno Fischer282c6242017-04-04 20:30:47 +0000302 return false;
Marina Yatsina88f0c312016-08-11 07:32:08 +0000303
304 // Get the undef operand's register class
305 const TargetRegisterClass *OpRC =
306 TII->getRegClass(MI->getDesc(), OpIdx, TRI, *MF);
307
308 // If the instruction has a true dependency, we can hide the false depdency
309 // behind it.
310 for (MachineOperand &CurrMO : MI->operands()) {
311 if (!CurrMO.isReg() || CurrMO.isDef() || CurrMO.isUndef() ||
312 !OpRC->contains(CurrMO.getReg()))
313 continue;
314 // We found a true dependency - replace the undef register with the true
315 // dependency.
316 MO.setReg(CurrMO.getReg());
Keno Fischer282c6242017-04-04 20:30:47 +0000317 return true;
Marina Yatsina88f0c312016-08-11 07:32:08 +0000318 }
319
320 // Go over all registers in the register class and find the register with
321 // max clearance or clearance higher than Pref.
322 unsigned MaxClearance = 0;
323 unsigned MaxClearanceReg = OriginalReg;
Marina Yatsina53ce3f92016-08-17 19:07:40 +0000324 ArrayRef<MCPhysReg> Order = RegClassInfo.getOrder(OpRC);
325 for (auto Reg : Order) {
Marina Yatsina4b226422016-08-17 11:40:21 +0000326 assert(AliasMap[Reg].size() == 1 &&
327 "Reg is expected to be mapped to a single index");
328 int RCrx = *regIndices(Reg).begin();
329 unsigned Clearance = CurInstr - LiveRegs[RCrx].Def;
Marina Yatsina88f0c312016-08-11 07:32:08 +0000330 if (Clearance <= MaxClearance)
331 continue;
332 MaxClearance = Clearance;
Marina Yatsina4b226422016-08-17 11:40:21 +0000333 MaxClearanceReg = Reg;
Marina Yatsina88f0c312016-08-11 07:32:08 +0000334
335 if (MaxClearance > Pref)
336 break;
337 }
338
339 // Update the operand if we found a register with better clearance.
340 if (MaxClearanceReg != OriginalReg)
341 MO.setReg(MaxClearanceReg);
Keno Fischer282c6242017-04-04 20:30:47 +0000342
343 return false;
Marina Yatsina88f0c312016-08-11 07:32:08 +0000344}
345
Andrew Trickb6d56be2013-10-14 22:19:03 +0000346/// \brief Return true to if it makes sense to break dependence on a partial def
347/// or undef use.
Matthias Braune9f82092017-03-18 05:05:40 +0000348bool ExecutionDepsFix::shouldBreakDependence(MachineInstr *MI, unsigned OpIdx,
349 unsigned Pref) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000350 unsigned reg = MI->getOperand(OpIdx).getReg();
Matthias Braun046318b2015-03-06 18:56:20 +0000351 for (int rx : regIndices(reg)) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000352 unsigned Clearance = CurInstr - LiveRegs[rx].Def;
353 DEBUG(dbgs() << "Clearance: " << Clearance << ", want " << Pref);
Andrew Trickb6d56be2013-10-14 22:19:03 +0000354
Matthias Braun8142efa2014-12-17 19:13:47 +0000355 if (Pref > Clearance) {
356 DEBUG(dbgs() << ": Break dependency.\n");
357 continue;
358 }
Keno Fischer578cf7a2017-01-30 23:37:03 +0000359 DEBUG(dbgs() << ": OK .\n");
Andrew Trickb6d56be2013-10-14 22:19:03 +0000360 return false;
361 }
Matthias Braun8142efa2014-12-17 19:13:47 +0000362 return true;
Andrew Trickb6d56be2013-10-14 22:19:03 +0000363}
364
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000365// Update def-ages for registers defined by MI.
366// If Kill is set, also kill off DomainValues clobbered by the defs.
Andrew Trickb6d56be2013-10-14 22:19:03 +0000367//
368// Also break dependencies on partial defs and undef uses.
Matthias Braune9f82092017-03-18 05:05:40 +0000369void ExecutionDepsFix::processDefs(MachineInstr *MI, bool breakDependency,
370 bool Kill) {
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000371 assert(!MI->isDebugValue() && "Won't process debug values");
Andrew Trickb6d56be2013-10-14 22:19:03 +0000372
373 // Break dependence on undef uses. Do this before updating LiveRegs below.
374 unsigned OpNum;
Keno Fischer578cf7a2017-01-30 23:37:03 +0000375 if (breakDependency) {
376 unsigned Pref = TII->getUndefRegClearance(*MI, OpNum, TRI);
377 if (Pref) {
Keno Fischer282c6242017-04-04 20:30:47 +0000378 bool HadTrueDependency = pickBestRegisterForUndef(MI, OpNum, Pref);
379 // We don't need to bother trying to break a dependency if this
380 // instruction has a true dependency on that register through another
381 // operand - we'll have to wait for it to be available regardless.
382 if (!HadTrueDependency && shouldBreakDependence(MI, OpNum, Pref))
Keno Fischer578cf7a2017-01-30 23:37:03 +0000383 UndefReads.push_back(std::make_pair(MI, OpNum));
384 }
Andrew Trickb6d56be2013-10-14 22:19:03 +0000385 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000386 const MCInstrDesc &MCID = MI->getDesc();
387 for (unsigned i = 0,
Evan Cheng7f8e5632011-12-07 07:15:52 +0000388 e = MI->isVariadic() ? MI->getNumOperands() : MCID.getNumDefs();
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000389 i != e; ++i) {
390 MachineOperand &MO = MI->getOperand(i);
391 if (!MO.isReg())
392 continue;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000393 if (MO.isUse())
394 continue;
Matthias Braun046318b2015-03-06 18:56:20 +0000395 for (int rx : regIndices(MO.getReg())) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000396 // This instruction explicitly defines rx.
397 DEBUG(dbgs() << TRI->getName(RC->getRegister(rx)) << ":\t" << CurInstr
398 << '\t' << *MI);
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000399
Keno Fischer578cf7a2017-01-30 23:37:03 +0000400 if (breakDependency) {
401 // Check clearance before partial register updates.
402 // Call breakDependence before setting LiveRegs[rx].Def.
403 unsigned Pref = TII->getPartialRegUpdateClearance(*MI, i, TRI);
404 if (Pref && shouldBreakDependence(MI, i, Pref))
405 TII->breakPartialRegDependency(*MI, i, TRI);
406 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000407
Matthias Braun8142efa2014-12-17 19:13:47 +0000408 // How many instructions since rx was last written?
409 LiveRegs[rx].Def = CurInstr;
Andrew Trickb6d56be2013-10-14 22:19:03 +0000410
Matthias Braun8142efa2014-12-17 19:13:47 +0000411 // Kill off domains redefined by generic instructions.
412 if (Kill)
413 kill(rx);
414 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000415 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000416 ++CurInstr;
Jakob Stoklund Olesen736cf462011-11-07 21:40:27 +0000417}
418
Andrew Trickb6d56be2013-10-14 22:19:03 +0000419/// \break Break false dependencies on undefined register reads.
420///
421/// Walk the block backward computing precise liveness. This is expensive, so we
422/// only do it on demand. Note that the occurrence of undefined register reads
423/// that should be broken is very rare, but when they occur we may have many in
424/// a single block.
Matthias Braune9f82092017-03-18 05:05:40 +0000425void ExecutionDepsFix::processUndefReads(MachineBasicBlock *MBB) {
Andrew Trickb6d56be2013-10-14 22:19:03 +0000426 if (UndefReads.empty())
427 return;
428
429 // Collect this block's live out register units.
Matthias Braun0c989a82016-12-08 00:15:51 +0000430 LiveRegSet.init(*TRI);
Matthias Braun24f26e62016-05-03 00:08:46 +0000431 // We do not need to care about pristine registers as they are just preserved
432 // but not actually used in the function.
Matthias Braund1aabb22016-05-03 00:24:32 +0000433 LiveRegSet.addLiveOutsNoPristines(*MBB);
Juergen Ributzka310034e2013-12-14 06:52:56 +0000434
Andrew Trickb6d56be2013-10-14 22:19:03 +0000435 MachineInstr *UndefMI = UndefReads.back().first;
436 unsigned OpIdx = UndefReads.back().second;
437
Pete Cooper7679afd2015-07-24 21:13:43 +0000438 for (MachineInstr &I : make_range(MBB->rbegin(), MBB->rend())) {
Andrew Trick60cf0ad2013-12-13 22:23:54 +0000439 // Update liveness, including the current instruction's defs.
Pete Cooper7679afd2015-07-24 21:13:43 +0000440 LiveRegSet.stepBackward(I);
Andrew Trick3a996932013-10-15 03:39:43 +0000441
Pete Cooper7679afd2015-07-24 21:13:43 +0000442 if (UndefMI == &I) {
Juergen Ributzka310034e2013-12-14 06:52:56 +0000443 if (!LiveRegSet.contains(UndefMI->getOperand(OpIdx).getReg()))
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000444 TII->breakPartialRegDependency(*UndefMI, OpIdx, TRI);
Andrew Trickb6d56be2013-10-14 22:19:03 +0000445
446 UndefReads.pop_back();
447 if (UndefReads.empty())
448 return;
449
450 UndefMI = UndefReads.back().first;
451 OpIdx = UndefReads.back().second;
452 }
Andrew Trickb6d56be2013-10-14 22:19:03 +0000453 }
454}
455
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000456// A hard instruction only works in one domain. All input registers will be
457// forced into that domain.
Matthias Braune9f82092017-03-18 05:05:40 +0000458void ExecutionDepsFix::visitHardInstr(MachineInstr *mi, unsigned domain) {
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000459 // Collapse all uses.
460 for (unsigned i = mi->getDesc().getNumDefs(),
461 e = mi->getDesc().getNumOperands(); i != e; ++i) {
462 MachineOperand &mo = mi->getOperand(i);
463 if (!mo.isReg()) continue;
Matthias Braun046318b2015-03-06 18:56:20 +0000464 for (int rx : regIndices(mo.getReg())) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000465 force(rx, domain);
466 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000467 }
468
469 // Kill all defs and force them.
470 for (unsigned i = 0, e = mi->getDesc().getNumDefs(); i != e; ++i) {
471 MachineOperand &mo = mi->getOperand(i);
472 if (!mo.isReg()) continue;
Matthias Braun046318b2015-03-06 18:56:20 +0000473 for (int rx : regIndices(mo.getReg())) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000474 kill(rx);
475 force(rx, domain);
476 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000477 }
478}
479
480// A soft instruction can be changed to work in other domains given by mask.
Matthias Braune9f82092017-03-18 05:05:40 +0000481void ExecutionDepsFix::visitSoftInstr(MachineInstr *mi, unsigned mask) {
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000482 // Bitmask of available domains for this instruction after taking collapsed
483 // operands into account.
484 unsigned available = mask;
485
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000486 // Scan the explicit use operands for incoming domains.
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000487 SmallVector<int, 4> used;
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000488 if (LiveRegs)
489 for (unsigned i = mi->getDesc().getNumDefs(),
490 e = mi->getDesc().getNumOperands(); i != e; ++i) {
Chris Lattner503a0ef2010-03-31 20:32:51 +0000491 MachineOperand &mo = mi->getOperand(i);
492 if (!mo.isReg()) continue;
Matthias Braun046318b2015-03-06 18:56:20 +0000493 for (int rx : regIndices(mo.getReg())) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000494 DomainValue *dv = LiveRegs[rx].Value;
495 if (dv == nullptr)
496 continue;
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000497 // Bitmask of domains that dv and available have in common.
498 unsigned common = dv->getCommonDomains(available);
Chris Lattner503a0ef2010-03-31 20:32:51 +0000499 // Is it possible to use this collapsed register for free?
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000500 if (dv->isCollapsed()) {
501 // Restrict available domains to the ones in common with the operand.
Andrew Trickb6d56be2013-10-14 22:19:03 +0000502 // If there are no common domains, we must pay the cross-domain
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000503 // penalty for this operand.
504 if (common) available = common;
505 } else if (common)
506 // Open DomainValue is compatible, save it for merging.
Chris Lattner503a0ef2010-03-31 20:32:51 +0000507 used.push_back(rx);
508 else
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000509 // Open DomainValue is not compatible with instruction. It is useless
510 // now.
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000511 kill(rx);
Chris Lattner503a0ef2010-03-31 20:32:51 +0000512 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000513 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000514
515 // If the collapsed operands force a single domain, propagate the collapse.
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000516 if (isPowerOf2_32(available)) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000517 unsigned domain = countTrailingZeros(available);
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000518 TII->setExecutionDomain(*mi, domain);
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000519 visitHardInstr(mi, domain);
520 return;
521 }
522
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000523 // Kill off any remaining uses that don't match available, and build a list of
524 // incoming DomainValues that we want to merge.
Craig Topper3b8aca22017-02-25 18:12:25 +0000525 SmallVector<const LiveReg *, 4> Regs;
Craig Topperc446b1f2017-02-24 06:38:24 +0000526 for (int rx : used) {
Michael Ilsemanaddddc42014-12-15 18:48:43 +0000527 assert(LiveRegs && "no space allocated for live registers");
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000528 const LiveReg &LR = LiveRegs[rx];
Jakob Stoklund Olesen3b9af402010-03-30 20:04:01 +0000529 // This useless DomainValue could have been missed above.
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000530 if (!LR.Value->getCommonDomains(available)) {
531 kill(rx);
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000532 continue;
533 }
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000534 // Sorted insertion.
Craig Topper3b8aca22017-02-25 18:12:25 +0000535 auto I = std::upper_bound(Regs.begin(), Regs.end(), &LR,
536 [](const LiveReg *LHS, const LiveReg *RHS) {
537 return LHS->Def < RHS->Def;
538 });
539 Regs.insert(I, &LR);
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000540 }
541
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000542 // doms are now sorted in order of appearance. Try to merge them all, giving
543 // priority to the latest ones.
Craig Topperc0196b12014-04-14 00:51:57 +0000544 DomainValue *dv = nullptr;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000545 while (!Regs.empty()) {
Chris Lattner503a0ef2010-03-31 20:32:51 +0000546 if (!dv) {
Craig Topper3b8aca22017-02-25 18:12:25 +0000547 dv = Regs.pop_back_val()->Value;
Jakob Stoklund Olesen02845412011-11-23 04:03:08 +0000548 // Force the first dv to match the current instruction.
549 dv->AvailableDomains = dv->getCommonDomains(available);
550 assert(dv->AvailableDomains && "Domain should have been filtered");
Chris Lattner503a0ef2010-03-31 20:32:51 +0000551 continue;
552 }
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +0000553
Craig Topper3b8aca22017-02-25 18:12:25 +0000554 DomainValue *Latest = Regs.pop_back_val()->Value;
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000555 // Skip already merged values.
556 if (Latest == dv || Latest->Next)
557 continue;
558 if (merge(dv, Latest))
559 continue;
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +0000560
Jakob Stoklund Olesend03ac952010-04-04 21:27:26 +0000561 // If latest didn't merge, it is useless now. Kill all registers using it.
Michael Ilsemanaddddc42014-12-15 18:48:43 +0000562 for (int i : used) {
563 assert(LiveRegs && "no space allocated for live registers");
564 if (LiveRegs[i].Value == Latest)
565 kill(i);
566 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000567 }
568
569 // dv is the DomainValue we are going to use for this instruction.
Jakob Stoklund Olesen02845412011-11-23 04:03:08 +0000570 if (!dv) {
Jakob Stoklund Olesen9e338bb2011-11-08 21:57:47 +0000571 dv = alloc();
Jakob Stoklund Olesen02845412011-11-23 04:03:08 +0000572 dv->AvailableDomains = available;
573 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000574 dv->Instrs.push_back(mi);
575
Silviu Baranga3c314992012-10-03 08:29:36 +0000576 // Finally set all defs and non-collapsed uses to dv. We must iterate through
577 // all the operators, including imp-def ones.
578 for (MachineInstr::mop_iterator ii = mi->operands_begin(),
579 ee = mi->operands_end();
580 ii != ee; ++ii) {
581 MachineOperand &mo = *ii;
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000582 if (!mo.isReg()) continue;
Matthias Braun046318b2015-03-06 18:56:20 +0000583 for (int rx : regIndices(mo.getReg())) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000584 if (!LiveRegs[rx].Value || (mo.isDef() && LiveRegs[rx].Value != dv)) {
585 kill(rx);
586 setLiveReg(rx, dv);
587 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000588 }
589 }
590}
591
Matthias Braune9f82092017-03-18 05:05:40 +0000592void ExecutionDepsFix::processBasicBlock(MachineBasicBlock *MBB,
593 bool PrimaryPass) {
Keno Fischer578cf7a2017-01-30 23:37:03 +0000594 enterBasicBlock(MBB);
595 // If this block is not done, it makes little sense to make any decisions
596 // based on clearance information. We need to make a second pass anyway,
597 // and by then we'll have better information, so we can avoid doing the work
598 // to try and break dependencies now.
599 bool breakDependency = isBlockDone(MBB);
600 for (MachineInstr &MI : *MBB) {
601 if (!MI.isDebugValue()) {
602 bool Kill = false;
603 if (PrimaryPass)
604 Kill = visitInstr(&MI);
605 processDefs(&MI, breakDependency, Kill);
606 }
607 }
608 if (breakDependency)
609 processUndefReads(MBB);
610 leaveBasicBlock(MBB);
611}
612
Matthias Braune9f82092017-03-18 05:05:40 +0000613bool ExecutionDepsFix::isBlockDone(MachineBasicBlock *MBB) {
Keno Fischer578cf7a2017-01-30 23:37:03 +0000614 return MBBInfos[MBB].PrimaryCompleted &&
615 MBBInfos[MBB].IncomingCompleted == MBBInfos[MBB].PrimaryIncoming &&
616 MBBInfos[MBB].IncomingProcessed == MBB->pred_size();
617}
618
Matthias Braune9f82092017-03-18 05:05:40 +0000619bool ExecutionDepsFix::runOnMachineFunction(MachineFunction &mf) {
Andrew Kaylor50271f72016-05-03 22:32:30 +0000620 if (skipFunction(*mf.getFunction()))
621 return false;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000622 MF = &mf;
Eric Christopherfc6de422014-08-05 02:39:49 +0000623 TII = MF->getSubtarget().getInstrInfo();
624 TRI = MF->getSubtarget().getRegisterInfo();
Marina Yatsina53ce3f92016-08-17 19:07:40 +0000625 RegClassInfo.runOnMachineFunction(mf);
Craig Topperc0196b12014-04-14 00:51:57 +0000626 LiveRegs = nullptr;
Jakob Stoklund Olesen30c81122011-09-27 23:50:46 +0000627 assert(NumRegs == RC->getNumRegs() && "Bad regclass");
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000628
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000629 DEBUG(dbgs() << "********** FIX EXECUTION DEPENDENCIES: "
Craig Toppercf0444b2014-11-17 05:50:14 +0000630 << TRI->getRegClassName(RC) << " **********\n");
Jakob Stoklund Olesen543bef62011-11-15 01:15:25 +0000631
Jakob Stoklund Olesenbd5109f2011-09-28 00:01:56 +0000632 // If no relevant registers are used in the function, we can skip it
633 // completely.
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000634 bool anyregs = false;
Matthias Braun9912bb82015-07-14 17:52:07 +0000635 const MachineRegisterInfo &MRI = mf.getRegInfo();
Matthias Braund55bcf22015-08-18 18:54:27 +0000636 for (unsigned Reg : *RC) {
637 if (MRI.isPhysRegUsed(Reg)) {
638 anyregs = true;
639 break;
640 }
641 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000642 if (!anyregs) return false;
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000643
Jakob Stoklund Olesen30c81122011-09-27 23:50:46 +0000644 // Initialize the AliasMap on the first use.
645 if (AliasMap.empty()) {
Matthias Braun8142efa2014-12-17 19:13:47 +0000646 // Given a PhysReg, AliasMap[PhysReg] returns a list of indices into RC and
647 // therefore the LiveRegs array.
648 AliasMap.resize(TRI->getNumRegs());
Jakob Stoklund Olesen30c81122011-09-27 23:50:46 +0000649 for (unsigned i = 0, e = RC->getNumRegs(); i != e; ++i)
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000650 for (MCRegAliasIterator AI(RC->getRegister(i), TRI, true);
651 AI.isValid(); ++AI)
Matthias Braun8142efa2014-12-17 19:13:47 +0000652 AliasMap[*AI].push_back(i);
Jakob Stoklund Olesen30c81122011-09-27 23:50:46 +0000653 }
654
Keno Fischer578cf7a2017-01-30 23:37:03 +0000655 // Initialize the MMBInfos
656 for (auto &MBB : mf) {
657 MBBInfo InitialInfo;
658 MBBInfos.insert(std::make_pair(&MBB, InitialInfo));
659 }
660
661 /*
662 * We want to visit every instruction in every basic block in order to update
663 * it's execution domain or break any false dependencies. However, for the
664 * dependency breaking, we need to know clearances from all predecessors
665 * (including any backedges). One way to do so would be to do two complete
666 * passes over all basic blocks/instructions, the first for recording
667 * clearances, the second to break the dependencies. However, for functions
668 * without backedges, or functions with a lot of straight-line code, and
669 * a small loop, that would be a lot of unnecessary work (since only the
670 * BBs that are part of the loop require two passes). As an example,
671 * consider the following loop.
672 *
673 *
674 * PH -> A -> B (xmm<Undef> -> xmm<Def>) -> C -> D -> EXIT
675 * ^ |
676 * +----------------------------------+
677 *
678 * The iteration order is as follows:
679 * Naive: PH A B C D A' B' C' D'
680 * Optimized: PH A B C A' B' C' D
681 *
682 * Note that we avoid processing D twice, because we can entirely process
683 * the predecessors before getting to D. We call a block that is ready
684 * for its second round of processing `done` (isBlockDone). Once we finish
685 * processing some block, we update the counters in MBBInfos and re-process
686 * any successors that are now done.
687 */
688
Duncan P. N. Exon Smith8f11e1a2015-10-09 16:54:49 +0000689 MachineBasicBlock *Entry = &*MF->begin();
Jakob Stoklund Olesen68e197e2011-11-07 21:59:29 +0000690 ReversePostOrderTraversal<MachineBasicBlock*> RPOT(Entry);
Keno Fischer4ecee772017-04-05 17:42:56 +0000691 SmallVector<MachineBasicBlock *, 4> Workqueue;
Jakob Stoklund Olesen68e197e2011-11-07 21:59:29 +0000692 for (ReversePostOrderTraversal<MachineBasicBlock*>::rpo_iterator
693 MBBI = RPOT.begin(), MBBE = RPOT.end(); MBBI != MBBE; ++MBBI) {
694 MachineBasicBlock *MBB = *MBBI;
Keno Fischer578cf7a2017-01-30 23:37:03 +0000695 // N.B: IncomingProcessed and IncomingCompleted were already updated while
696 // processing this block's predecessors.
697 MBBInfos[MBB].PrimaryCompleted = true;
698 MBBInfos[MBB].PrimaryIncoming = MBBInfos[MBB].IncomingProcessed;
Keno Fischer4ecee772017-04-05 17:42:56 +0000699 bool Primary = true;
700 Workqueue.push_back(MBB);
701 while (!Workqueue.empty()) {
702 MachineBasicBlock *ActiveMBB = &*Workqueue.back();
703 Workqueue.pop_back();
704 processBasicBlock(ActiveMBB, Primary);
705 bool Done = isBlockDone(ActiveMBB);
706 for (auto *Succ : ActiveMBB->successors()) {
707 if (!isBlockDone(Succ)) {
708 if (Primary) {
709 MBBInfos[Succ].IncomingProcessed++;
710 }
711 if (Done) {
712 MBBInfos[Succ].IncomingCompleted++;
713 }
714 if (isBlockDone(Succ)) {
715 Workqueue.push_back(Succ);
716 }
717 }
718 }
719 Primary = false;
720 }
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000721 }
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000722
Keno Fischer578cf7a2017-01-30 23:37:03 +0000723 // We need to go through again and finalize any blocks that are not done yet.
724 // This is possible if blocks have dead predecessors, so we didn't visit them
725 // above.
726 for (ReversePostOrderTraversal<MachineBasicBlock *>::rpo_iterator
727 MBBI = RPOT.begin(),
728 MBBE = RPOT.end();
729 MBBI != MBBE; ++MBBI) {
730 MachineBasicBlock *MBB = *MBBI;
731 if (!isBlockDone(MBB)) {
732 processBasicBlock(MBB, false);
733 // Don't update successors here. We'll get to them anyway through this
734 // loop.
735 }
Jakob Stoklund Olesen3dc89c92011-11-09 01:06:56 +0000736 }
737
Jakob Stoklund Olesena70e9412011-11-07 23:08:21 +0000738 // Clear the LiveOuts vectors and collapse any remaining DomainValues.
739 for (ReversePostOrderTraversal<MachineBasicBlock*>::rpo_iterator
740 MBBI = RPOT.begin(), MBBE = RPOT.end(); MBBI != MBBE; ++MBBI) {
Keno Fischer578cf7a2017-01-30 23:37:03 +0000741 auto FI = MBBInfos.find(*MBBI);
742 if (FI == MBBInfos.end() || !FI->second.OutRegs)
Jakob Stoklund Olesena70e9412011-11-07 23:08:21 +0000743 continue;
Jakob Stoklund Olesena70e9412011-11-07 23:08:21 +0000744 for (unsigned i = 0, e = NumRegs; i != e; ++i)
Keno Fischer578cf7a2017-01-30 23:37:03 +0000745 if (FI->second.OutRegs[i].Value)
746 release(FI->second.OutRegs[i].Value);
747 delete[] FI->second.OutRegs;
Jakob Stoklund Olesena70e9412011-11-07 23:08:21 +0000748 }
Keno Fischer578cf7a2017-01-30 23:37:03 +0000749 MBBInfos.clear();
Andrew Trickb6d56be2013-10-14 22:19:03 +0000750 UndefReads.clear();
Jakob Stoklund Olesen42caaa42010-04-04 18:00:21 +0000751 Avail.clear();
752 Allocator.DestroyAll();
Jakob Stoklund Olesenb551aa42010-03-29 23:24:21 +0000753
Jakob Stoklund Olesen49e121d2010-03-25 17:25:00 +0000754 return false;
755}