blob: 632ea8e9cdc417a1d659c1e3339a3f3c0085699c [file] [log] [blame]
Eugene Zelenko94348112017-09-29 21:55:49 +00001//===- AggressiveAntiDepBreaker.cpp - Anti-dep breaker --------------------===//
David Goodwin34877712009-10-26 19:32:42 +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//===----------------------------------------------------------------------===//
9//
10// This file implements the AggressiveAntiDepBreaker class, which
11// implements register anti-dependence breaking during post-RA
12// scheduling. It attempts to break all anti-dependencies within a
13// block.
14//
15//===----------------------------------------------------------------------===//
16
David Goodwin34877712009-10-26 19:32:42 +000017#include "AggressiveAntiDepBreaker.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000018#include "llvm/ADT/ArrayRef.h"
19#include "llvm/ADT/BitVector.h"
20#include "llvm/ADT/SmallSet.h"
21#include "llvm/ADT/iterator_range.h"
David Goodwin34877712009-10-26 19:32:42 +000022#include "llvm/CodeGen/MachineBasicBlock.h"
23#include "llvm/CodeGen/MachineFrameInfo.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000024#include "llvm/CodeGen/MachineFunction.h"
David Goodwin34877712009-10-26 19:32:42 +000025#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000026#include "llvm/CodeGen/MachineOperand.h"
27#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Trick15252602012-06-06 20:29:31 +000028#include "llvm/CodeGen/RegisterClassInfo.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000029#include "llvm/CodeGen/ScheduleDAG.h"
David Blaikie48319232017-11-08 01:01:31 +000030#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikiee3a9b4c2017-11-17 01:07:10 +000031#include "llvm/CodeGen/TargetRegisterInfo.h"
32#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000033#include "llvm/MC/MCInstrDesc.h"
34#include "llvm/MC/MCRegisterInfo.h"
David Goodwine10deca2009-10-26 22:31:16 +000035#include "llvm/Support/CommandLine.h"
David Goodwin34877712009-10-26 19:32:42 +000036#include "llvm/Support/Debug.h"
David Blaikie9d9a46a2018-03-23 23:58:25 +000037#include "llvm/Support/MachineValueType.h"
David Goodwin34877712009-10-26 19:32:42 +000038#include "llvm/Support/raw_ostream.h"
Eugene Zelenko94348112017-09-29 21:55:49 +000039#include <cassert>
40#include <map>
41#include <set>
42#include <utility>
43#include <vector>
44
David Goodwin34877712009-10-26 19:32:42 +000045using namespace llvm;
46
Chandler Carruth8677f2f2014-04-22 02:02:50 +000047#define DEBUG_TYPE "post-RA-sched"
48
David Goodwin3e72d302009-11-19 23:12:37 +000049// If DebugDiv > 0 then only break antidep with (ID % DebugDiv) == DebugMod
50static cl::opt<int>
51DebugDiv("agg-antidep-debugdiv",
Bob Wilson347fa3f2010-04-09 21:38:26 +000052 cl::desc("Debug control for aggressive anti-dep breaker"),
53 cl::init(0), cl::Hidden);
Eugene Zelenko94348112017-09-29 21:55:49 +000054
David Goodwin3e72d302009-11-19 23:12:37 +000055static cl::opt<int>
56DebugMod("agg-antidep-debugmod",
Bob Wilson347fa3f2010-04-09 21:38:26 +000057 cl::desc("Debug control for aggressive anti-dep breaker"),
58 cl::init(0), cl::Hidden);
David Goodwin3e72d302009-11-19 23:12:37 +000059
David Goodwin990d2852009-12-09 17:18:22 +000060AggressiveAntiDepState::AggressiveAntiDepState(const unsigned TargetRegs,
Eugene Zelenko94348112017-09-29 21:55:49 +000061 MachineBasicBlock *BB)
62 : NumTargetRegs(TargetRegs), GroupNodes(TargetRegs, 0),
63 GroupNodeIndices(TargetRegs, 0), KillIndices(TargetRegs, 0),
64 DefIndices(TargetRegs, 0) {
David Goodwin990d2852009-12-09 17:18:22 +000065 const unsigned BBSize = BB->size();
66 for (unsigned i = 0; i < NumTargetRegs; ++i) {
67 // Initialize all registers to be in their own group. Initially we
68 // assign the register to the same-indexed GroupNode.
69 GroupNodeIndices[i] = i;
70 // Initialize the indices to indicate that no registers are live.
71 KillIndices[i] = ~0u;
72 DefIndices[i] = BBSize;
73 }
David Goodwin34877712009-10-26 19:32:42 +000074}
75
Bill Wendlinge4a41472010-07-15 19:41:20 +000076unsigned AggressiveAntiDepState::GetGroup(unsigned Reg) {
David Goodwin34877712009-10-26 19:32:42 +000077 unsigned Node = GroupNodeIndices[Reg];
78 while (GroupNodes[Node] != Node)
79 Node = GroupNodes[Node];
80
81 return Node;
82}
83
David Goodwin87d21b92009-11-13 19:52:48 +000084void AggressiveAntiDepState::GetGroupRegs(
85 unsigned Group,
86 std::vector<unsigned> &Regs,
87 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs)
David Goodwin34877712009-10-26 19:32:42 +000088{
David Goodwin990d2852009-12-09 17:18:22 +000089 for (unsigned Reg = 0; Reg != NumTargetRegs; ++Reg) {
David Goodwin87d21b92009-11-13 19:52:48 +000090 if ((GetGroup(Reg) == Group) && (RegRefs->count(Reg) > 0))
David Goodwin34877712009-10-26 19:32:42 +000091 Regs.push_back(Reg);
92 }
93}
94
Eugene Zelenko94348112017-09-29 21:55:49 +000095unsigned AggressiveAntiDepState::UnionGroups(unsigned Reg1, unsigned Reg2) {
David Goodwin34877712009-10-26 19:32:42 +000096 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!");
97 assert(GroupNodeIndices[0] == 0 && "Reg 0 not in Group 0!");
Jim Grosbach2973b572010-01-06 16:48:02 +000098
David Goodwin34877712009-10-26 19:32:42 +000099 // find group for each register
100 unsigned Group1 = GetGroup(Reg1);
101 unsigned Group2 = GetGroup(Reg2);
Jim Grosbach2973b572010-01-06 16:48:02 +0000102
David Goodwin34877712009-10-26 19:32:42 +0000103 // if either group is 0, then that must become the parent
104 unsigned Parent = (Group1 == 0) ? Group1 : Group2;
105 unsigned Other = (Parent == Group1) ? Group2 : Group1;
106 GroupNodes.at(Other) = Parent;
107 return Parent;
108}
Jim Grosbach2973b572010-01-06 16:48:02 +0000109
Eugene Zelenko94348112017-09-29 21:55:49 +0000110unsigned AggressiveAntiDepState::LeaveGroup(unsigned Reg) {
David Goodwin34877712009-10-26 19:32:42 +0000111 // Create a new GroupNode for Reg. Reg's existing GroupNode must
112 // stay as is because there could be other GroupNodes referring to
113 // it.
114 unsigned idx = GroupNodes.size();
115 GroupNodes.push_back(idx);
116 GroupNodeIndices[Reg] = idx;
117 return idx;
118}
119
Eugene Zelenko94348112017-09-29 21:55:49 +0000120bool AggressiveAntiDepState::IsLive(unsigned Reg) {
David Goodwin34877712009-10-26 19:32:42 +0000121 // KillIndex must be defined and DefIndex not defined for a register
122 // to be live.
123 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
124}
125
Eric Christopher9f85dcc2014-08-04 21:25:23 +0000126AggressiveAntiDepBreaker::AggressiveAntiDepBreaker(
127 MachineFunction &MFi, const RegisterClassInfo &RCI,
128 TargetSubtargetInfo::RegClassVector &CriticalPathRCs)
129 : AntiDepBreaker(), MF(MFi), MRI(MF.getRegInfo()),
Eric Christopher60355182014-08-05 02:39:49 +0000130 TII(MF.getSubtarget().getInstrInfo()),
Eugene Zelenko94348112017-09-29 21:55:49 +0000131 TRI(MF.getSubtarget().getRegisterInfo()), RegClassInfo(RCI) {
David Goodwin87d21b92009-11-13 19:52:48 +0000132 /* Collect a bitset of all registers that are only broken if they
133 are on the critical path. */
134 for (unsigned i = 0, e = CriticalPathRCs.size(); i < e; ++i) {
135 BitVector CPSet = TRI->getAllocatableSet(MF, CriticalPathRCs[i]);
136 if (CriticalPathSet.none())
137 CriticalPathSet = CPSet;
138 else
139 CriticalPathSet |= CPSet;
140 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000141
Nicola Zaghen0818e782018-05-14 12:53:11 +0000142 LLVM_DEBUG(dbgs() << "AntiDep Critical-Path Registers:");
143 LLVM_DEBUG(for (unsigned r
144 : CriticalPathSet.set_bits()) dbgs()
145 << " " << printReg(r, TRI));
146 LLVM_DEBUG(dbgs() << '\n');
David Goodwine10deca2009-10-26 22:31:16 +0000147}
148
149AggressiveAntiDepBreaker::~AggressiveAntiDepBreaker() {
150 delete State;
David Goodwine10deca2009-10-26 22:31:16 +0000151}
152
153void AggressiveAntiDepBreaker::StartBlock(MachineBasicBlock *BB) {
Craig Topper4ba84432014-04-14 00:51:57 +0000154 assert(!State);
David Goodwin990d2852009-12-09 17:18:22 +0000155 State = new AggressiveAntiDepState(TRI->getNumRegs(), BB);
David Goodwine10deca2009-10-26 22:31:16 +0000156
Matthias Braun63daa142015-09-25 21:25:19 +0000157 bool IsReturnBlock = BB->isReturnBlock();
Bill Wendling38306d52010-07-15 18:43:09 +0000158 std::vector<unsigned> &KillIndices = State->GetKillIndices();
159 std::vector<unsigned> &DefIndices = State->GetDefIndices();
David Goodwine10deca2009-10-26 22:31:16 +0000160
Jakob Stoklund Olesenb45e4de2013-02-05 18:21:52 +0000161 // Examine the live-in regs of all successors.
Evan Cheng46df4eb2010-06-16 07:35:02 +0000162 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
163 SE = BB->succ_end(); SI != SE; ++SI)
Matthias Braunaf5ff602015-09-09 18:08:03 +0000164 for (const auto &LI : (*SI)->liveins()) {
165 for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) {
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000166 unsigned Reg = *AI;
Jakob Stoklund Olesen597faa82010-12-14 23:23:15 +0000167 State->UnionGroups(Reg, 0);
168 KillIndices[Reg] = BB->size();
169 DefIndices[Reg] = ~0u;
Evan Cheng46df4eb2010-06-16 07:35:02 +0000170 }
171 }
172
David Goodwine10deca2009-10-26 22:31:16 +0000173 // Mark live-out callee-saved registers. In a return block this is
174 // all callee-saved registers. In non-return this is any
175 // callee-saved register that is not saved in the prolog.
Matthias Braunf79c57a2016-07-28 18:40:00 +0000176 const MachineFrameInfo &MFI = MF.getFrameInfo();
177 BitVector Pristine = MFI.getPristineRegs(MF);
Oren Ben Simhon6095a792017-03-14 09:09:26 +0000178 for (const MCPhysReg *I = MF.getRegInfo().getCalleeSavedRegs(); *I;
179 ++I) {
David Goodwine10deca2009-10-26 22:31:16 +0000180 unsigned Reg = *I;
Tim Shen400ba832017-05-30 22:26:52 +0000181 if (!IsReturnBlock && !Pristine.test(Reg))
Eric Christopher95604f92017-03-30 22:34:20 +0000182 continue;
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000183 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {
184 unsigned AliasReg = *AI;
David Goodwine10deca2009-10-26 22:31:16 +0000185 State->UnionGroups(AliasReg, 0);
186 KillIndices[AliasReg] = BB->size();
187 DefIndices[AliasReg] = ~0u;
188 }
189 }
190}
191
192void AggressiveAntiDepBreaker::FinishBlock() {
193 delete State;
Craig Topper4ba84432014-04-14 00:51:57 +0000194 State = nullptr;
David Goodwine10deca2009-10-26 22:31:16 +0000195}
196
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000197void AggressiveAntiDepBreaker::Observe(MachineInstr &MI, unsigned Count,
Bob Wilson347fa3f2010-04-09 21:38:26 +0000198 unsigned InsertPosIndex) {
David Goodwine10deca2009-10-26 22:31:16 +0000199 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
200
David Goodwin5b3c3082009-10-29 23:30:59 +0000201 std::set<unsigned> PassthruRegs;
202 GetPassthruRegs(MI, PassthruRegs);
203 PrescanInstruction(MI, Count, PassthruRegs);
204 ScanInstruction(MI, Count);
205
Nicola Zaghen0818e782018-05-14 12:53:11 +0000206 LLVM_DEBUG(dbgs() << "Observe: ");
207 LLVM_DEBUG(MI.dump());
208 LLVM_DEBUG(dbgs() << "\tRegs:");
David Goodwine10deca2009-10-26 22:31:16 +0000209
Bill Wendling38306d52010-07-15 18:43:09 +0000210 std::vector<unsigned> &DefIndices = State->GetDefIndices();
David Goodwin990d2852009-12-09 17:18:22 +0000211 for (unsigned Reg = 0; Reg != TRI->getNumRegs(); ++Reg) {
David Goodwine10deca2009-10-26 22:31:16 +0000212 // If Reg is current live, then mark that it can't be renamed as
213 // we don't know the extent of its live-range anymore (now that it
214 // has been scheduled). If it is not live but was defined in the
215 // previous schedule region, then set its def index to the most
216 // conservative location (i.e. the beginning of the previous
217 // schedule region).
218 if (State->IsLive(Reg)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000219 LLVM_DEBUG(if (State->GetGroup(Reg) != 0) dbgs()
220 << " " << printReg(Reg, TRI) << "=g" << State->GetGroup(Reg)
221 << "->g0(region live-out)");
David Goodwine10deca2009-10-26 22:31:16 +0000222 State->UnionGroups(Reg, 0);
Jim Grosbach2973b572010-01-06 16:48:02 +0000223 } else if ((DefIndices[Reg] < InsertPosIndex)
224 && (DefIndices[Reg] >= Count)) {
David Goodwine10deca2009-10-26 22:31:16 +0000225 DefIndices[Reg] = Count;
226 }
227 }
Nicola Zaghen0818e782018-05-14 12:53:11 +0000228 LLVM_DEBUG(dbgs() << '\n');
David Goodwine10deca2009-10-26 22:31:16 +0000229}
230
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000231bool AggressiveAntiDepBreaker::IsImplicitDefUse(MachineInstr &MI,
232 MachineOperand &MO) {
David Goodwin34877712009-10-26 19:32:42 +0000233 if (!MO.isReg() || !MO.isImplicit())
234 return false;
235
236 unsigned Reg = MO.getReg();
237 if (Reg == 0)
238 return false;
239
Chad Rosier262f3542015-10-09 19:48:48 +0000240 MachineOperand *Op = nullptr;
241 if (MO.isDef())
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000242 Op = MI.findRegisterUseOperand(Reg, true);
Chad Rosier262f3542015-10-09 19:48:48 +0000243 else
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000244 Op = MI.findRegisterDefOperand(Reg);
Chad Rosier262f3542015-10-09 19:48:48 +0000245
Craig Topper4ba84432014-04-14 00:51:57 +0000246 return(Op && Op->isImplicit());
David Goodwin34877712009-10-26 19:32:42 +0000247}
248
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000249void AggressiveAntiDepBreaker::GetPassthruRegs(
250 MachineInstr &MI, std::set<unsigned> &PassthruRegs) {
251 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
252 MachineOperand &MO = MI.getOperand(i);
David Goodwin34877712009-10-26 19:32:42 +0000253 if (!MO.isReg()) continue;
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000254 if ((MO.isDef() && MI.isRegTiedToUseOperand(i)) ||
David Goodwin34877712009-10-26 19:32:42 +0000255 IsImplicitDefUse(MI, MO)) {
256 const unsigned Reg = MO.getReg();
Chad Rosier62c320a2013-05-22 23:17:36 +0000257 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
258 SubRegs.isValid(); ++SubRegs)
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000259 PassthruRegs.insert(*SubRegs);
David Goodwin34877712009-10-26 19:32:42 +0000260 }
261 }
262}
263
David Goodwin557bbe62009-11-20 19:32:48 +0000264/// AntiDepEdges - Return in Edges the anti- and output- dependencies
265/// in SU that we want to consider for breaking.
Eugene Zelenko94348112017-09-29 21:55:49 +0000266static void AntiDepEdges(const SUnit *SU, std::vector<const SDep *> &Edges) {
David Goodwin557bbe62009-11-20 19:32:48 +0000267 SmallSet<unsigned, 4> RegSet;
Dan Gohman66db3a02010-04-19 23:11:58 +0000268 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
David Goodwin34877712009-10-26 19:32:42 +0000269 P != PE; ++P) {
David Goodwin12dd99d2009-11-12 19:08:21 +0000270 if ((P->getKind() == SDep::Anti) || (P->getKind() == SDep::Output)) {
David Blaikie5401ba72014-11-19 07:49:26 +0000271 if (RegSet.insert(P->getReg()).second)
David Goodwin34877712009-10-26 19:32:42 +0000272 Edges.push_back(&*P);
David Goodwin34877712009-10-26 19:32:42 +0000273 }
274 }
275}
276
David Goodwin87d21b92009-11-13 19:52:48 +0000277/// CriticalPathStep - Return the next SUnit after SU on the bottom-up
278/// critical path.
Dan Gohman66db3a02010-04-19 23:11:58 +0000279static const SUnit *CriticalPathStep(const SUnit *SU) {
Craig Topper4ba84432014-04-14 00:51:57 +0000280 const SDep *Next = nullptr;
David Goodwin87d21b92009-11-13 19:52:48 +0000281 unsigned NextDepth = 0;
282 // Find the predecessor edge with the greatest depth.
Craig Topper4ba84432014-04-14 00:51:57 +0000283 if (SU) {
Dan Gohman66db3a02010-04-19 23:11:58 +0000284 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
David Goodwin87d21b92009-11-13 19:52:48 +0000285 P != PE; ++P) {
Dan Gohman66db3a02010-04-19 23:11:58 +0000286 const SUnit *PredSU = P->getSUnit();
David Goodwin87d21b92009-11-13 19:52:48 +0000287 unsigned PredLatency = P->getLatency();
288 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
289 // In the case of a latency tie, prefer an anti-dependency edge over
290 // other types of edges.
291 if (NextDepth < PredTotalLatency ||
292 (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) {
293 NextDepth = PredTotalLatency;
294 Next = &*P;
295 }
296 }
297 }
298
Craig Topper4ba84432014-04-14 00:51:57 +0000299 return (Next) ? Next->getSUnit() : nullptr;
David Goodwin87d21b92009-11-13 19:52:48 +0000300}
301
David Goodwin67a8a7b2009-10-29 19:17:04 +0000302void AggressiveAntiDepBreaker::HandleLastUse(unsigned Reg, unsigned KillIdx,
Jim Grosbach2973b572010-01-06 16:48:02 +0000303 const char *tag,
304 const char *header,
David Goodwin3e72d302009-11-19 23:12:37 +0000305 const char *footer) {
Bill Wendling38306d52010-07-15 18:43:09 +0000306 std::vector<unsigned> &KillIndices = State->GetKillIndices();
307 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000308 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwin67a8a7b2009-10-29 19:17:04 +0000309 RegRefs = State->GetRegRefs();
310
Hal Finkel11e00a52015-01-28 14:44:14 +0000311 // FIXME: We must leave subregisters of live super registers as live, so that
312 // we don't clear out the register tracking information for subregisters of
313 // super registers we're still tracking (and with which we're unioning
314 // subregister definitions).
315 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
316 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000317 LLVM_DEBUG(if (!header && footer) dbgs() << footer);
Hal Finkel11e00a52015-01-28 14:44:14 +0000318 return;
319 }
320
David Goodwin67a8a7b2009-10-29 19:17:04 +0000321 if (!State->IsLive(Reg)) {
322 KillIndices[Reg] = KillIdx;
323 DefIndices[Reg] = ~0u;
324 RegRefs.erase(Reg);
325 State->LeaveGroup(Reg);
Nicola Zaghen0818e782018-05-14 12:53:11 +0000326 LLVM_DEBUG(if (header) {
327 dbgs() << header << printReg(Reg, TRI);
328 header = nullptr;
329 });
330 LLVM_DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << tag);
Chuang-Yu Cheng0835dfe2016-04-01 02:05:29 +0000331 // Repeat for subregisters. Note that we only do this if the superregister
332 // was not live because otherwise, regardless whether we have an explicit
333 // use of the subregister, the subregister's contents are needed for the
334 // uses of the superregister.
335 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
336 unsigned SubregReg = *SubRegs;
337 if (!State->IsLive(SubregReg)) {
338 KillIndices[SubregReg] = KillIdx;
339 DefIndices[SubregReg] = ~0u;
340 RegRefs.erase(SubregReg);
341 State->LeaveGroup(SubregReg);
Nicola Zaghen0818e782018-05-14 12:53:11 +0000342 LLVM_DEBUG(if (header) {
343 dbgs() << header << printReg(Reg, TRI);
344 header = nullptr;
345 });
346 LLVM_DEBUG(dbgs() << " " << printReg(SubregReg, TRI) << "->g"
347 << State->GetGroup(SubregReg) << tag);
Chuang-Yu Cheng0835dfe2016-04-01 02:05:29 +0000348 }
David Goodwin67a8a7b2009-10-29 19:17:04 +0000349 }
350 }
David Goodwin3e72d302009-11-19 23:12:37 +0000351
Nicola Zaghen0818e782018-05-14 12:53:11 +0000352 LLVM_DEBUG(if (!header && footer) dbgs() << footer);
David Goodwin67a8a7b2009-10-29 19:17:04 +0000353}
354
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000355void AggressiveAntiDepBreaker::PrescanInstruction(
356 MachineInstr &MI, unsigned Count, std::set<unsigned> &PassthruRegs) {
Bill Wendling38306d52010-07-15 18:43:09 +0000357 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000358 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000359 RegRefs = State->GetRegRefs();
360
David Goodwin67a8a7b2009-10-29 19:17:04 +0000361 // Handle dead defs by simulating a last-use of the register just
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000362 // after the def. A dead def can occur because the def is truly
David Goodwin67a8a7b2009-10-29 19:17:04 +0000363 // dead, or because only a subregister is live at the def. If we
364 // don't do this the dead def will be incorrectly merged into the
365 // previous def.
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000366 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
367 MachineOperand &MO = MI.getOperand(i);
David Goodwin34877712009-10-26 19:32:42 +0000368 if (!MO.isReg() || !MO.isDef()) continue;
369 unsigned Reg = MO.getReg();
370 if (Reg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000371
David Goodwin3e72d302009-11-19 23:12:37 +0000372 HandleLastUse(Reg, Count + 1, "", "\tDead Def: ", "\n");
David Goodwin34877712009-10-26 19:32:42 +0000373 }
374
Nicola Zaghen0818e782018-05-14 12:53:11 +0000375 LLVM_DEBUG(dbgs() << "\tDef Groups:");
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000376 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
377 MachineOperand &MO = MI.getOperand(i);
David Goodwin34877712009-10-26 19:32:42 +0000378 if (!MO.isReg() || !MO.isDef()) continue;
379 unsigned Reg = MO.getReg();
380 if (Reg == 0) continue;
381
Nicola Zaghen0818e782018-05-14 12:53:11 +0000382 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI) << "=g"
383 << State->GetGroup(Reg));
David Goodwin34877712009-10-26 19:32:42 +0000384
David Goodwin67a8a7b2009-10-29 19:17:04 +0000385 // If MI's defs have a special allocation requirement, don't allow
David Goodwin34877712009-10-26 19:32:42 +0000386 // any def registers to be changed. Also assume all registers
Kyle Butt325a79d2015-12-02 18:58:51 +0000387 // defined in a call must not be changed (ABI). Inline assembly may
388 // reference either system calls or the register directly. Skip it until we
389 // can tell user specified registers from compiler-specified.
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000390 if (MI.isCall() || MI.hasExtraDefRegAllocReq() || TII->isPredicated(MI) ||
391 MI.isInlineAsm()) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000392 LLVM_DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)");
David Goodwine10deca2009-10-26 22:31:16 +0000393 State->UnionGroups(Reg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000394 }
395
396 // Any aliased that are live at this point are completely or
David Goodwin67a8a7b2009-10-29 19:17:04 +0000397 // partially defined here, so group those aliases with Reg.
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000398 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) {
399 unsigned AliasReg = *AI;
David Goodwine10deca2009-10-26 22:31:16 +0000400 if (State->IsLive(AliasReg)) {
401 State->UnionGroups(Reg, AliasReg);
Nicola Zaghen0818e782018-05-14 12:53:11 +0000402 LLVM_DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << "(via "
403 << printReg(AliasReg, TRI) << ")");
David Goodwin34877712009-10-26 19:32:42 +0000404 }
405 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000406
David Goodwin34877712009-10-26 19:32:42 +0000407 // Note register reference...
Craig Topper4ba84432014-04-14 00:51:57 +0000408 const TargetRegisterClass *RC = nullptr;
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000409 if (i < MI.getDesc().getNumOperands())
410 RC = TII->getRegClass(MI.getDesc(), i, TRI, MF);
David Goodwine10deca2009-10-26 22:31:16 +0000411 AggressiveAntiDepState::RegisterReference RR = { &MO, RC };
David Goodwin34877712009-10-26 19:32:42 +0000412 RegRefs.insert(std::make_pair(Reg, RR));
413 }
414
Nicola Zaghen0818e782018-05-14 12:53:11 +0000415 LLVM_DEBUG(dbgs() << '\n');
David Goodwin67a8a7b2009-10-29 19:17:04 +0000416
417 // Scan the register defs for this instruction and update
418 // live-ranges.
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000419 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
420 MachineOperand &MO = MI.getOperand(i);
David Goodwin67a8a7b2009-10-29 19:17:04 +0000421 if (!MO.isReg() || !MO.isDef()) continue;
422 unsigned Reg = MO.getReg();
423 if (Reg == 0) continue;
David Goodwin3e72d302009-11-19 23:12:37 +0000424 // Ignore KILLs and passthru registers for liveness...
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000425 if (MI.isKill() || (PassthruRegs.count(Reg) != 0))
David Goodwin3e72d302009-11-19 23:12:37 +0000426 continue;
David Goodwin67a8a7b2009-10-29 19:17:04 +0000427
David Goodwin3e72d302009-11-19 23:12:37 +0000428 // Update def for Reg and aliases.
Hal Finkel4a7156d2014-02-26 20:20:30 +0000429 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {
430 // We need to be careful here not to define already-live super registers.
431 // If the super register is already live, then this definition is not
432 // a definition of the whole super register (just a partial insertion
433 // into it). Earlier subregister definitions (which we've not yet visited
434 // because we're iterating bottom-up) need to be linked to the same group
435 // as this definition.
436 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI))
437 continue;
438
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000439 DefIndices[*AI] = Count;
Hal Finkel4a7156d2014-02-26 20:20:30 +0000440 }
David Goodwin67a8a7b2009-10-29 19:17:04 +0000441 }
David Goodwin34877712009-10-26 19:32:42 +0000442}
443
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000444void AggressiveAntiDepBreaker::ScanInstruction(MachineInstr &MI,
Bob Wilson347fa3f2010-04-09 21:38:26 +0000445 unsigned Count) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000446 LLVM_DEBUG(dbgs() << "\tUse Groups:");
Jim Grosbach2973b572010-01-06 16:48:02 +0000447 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000448 RegRefs = State->GetRegRefs();
David Goodwin34877712009-10-26 19:32:42 +0000449
Evan Cheng46df4eb2010-06-16 07:35:02 +0000450 // If MI's uses have special allocation requirement, don't allow
451 // any use registers to be changed. Also assume all registers
452 // used in a call must not be changed (ABI).
Kyle Butt325a79d2015-12-02 18:58:51 +0000453 // Inline Assembly register uses also cannot be safely changed.
Evan Cheng46df4eb2010-06-16 07:35:02 +0000454 // FIXME: The issue with predicated instruction is more complex. We are being
455 // conservatively here because the kill markers cannot be trusted after
456 // if-conversion:
Francis Visoiu Mistrih2cba0cc2018-01-09 17:31:07 +0000457 // %r6 = LDR %sp, %reg0, 92, 14, %reg0; mem:LD4[FixedStack14]
Evan Cheng46df4eb2010-06-16 07:35:02 +0000458 // ...
Francis Visoiu Mistrih2cba0cc2018-01-09 17:31:07 +0000459 // STR %r0, killed %r6, %reg0, 0, 0, %cpsr; mem:ST4[%395]
460 // %r6 = LDR %sp, %reg0, 100, 0, %cpsr; mem:LD4[FixedStack12]
461 // STR %r0, killed %r6, %reg0, 0, 14, %reg0; mem:ST4[%396](align=8)
Evan Cheng46df4eb2010-06-16 07:35:02 +0000462 //
463 // The first R6 kill is not really a kill since it's killed by a predicated
464 // instruction which may not be executed. The second R6 def may or may not
465 // re-define R6 so it's not safe to change it since the last R6 use cannot be
466 // changed.
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000467 bool Special = MI.isCall() || MI.hasExtraSrcRegAllocReq() ||
468 TII->isPredicated(MI) || MI.isInlineAsm();
Evan Cheng46df4eb2010-06-16 07:35:02 +0000469
David Goodwin34877712009-10-26 19:32:42 +0000470 // Scan the register uses for this instruction and update
471 // live-ranges, groups and RegRefs.
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000472 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
473 MachineOperand &MO = MI.getOperand(i);
David Goodwin34877712009-10-26 19:32:42 +0000474 if (!MO.isReg() || !MO.isUse()) continue;
475 unsigned Reg = MO.getReg();
476 if (Reg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000477
Nicola Zaghen0818e782018-05-14 12:53:11 +0000478 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI) << "=g"
479 << State->GetGroup(Reg));
David Goodwin34877712009-10-26 19:32:42 +0000480
481 // It wasn't previously live but now it is, this is a kill. Forget
482 // the previous live-range information and start a new live-range
483 // for the register.
David Goodwin67a8a7b2009-10-29 19:17:04 +0000484 HandleLastUse(Reg, Count, "(last-use)");
David Goodwin34877712009-10-26 19:32:42 +0000485
Evan Cheng46df4eb2010-06-16 07:35:02 +0000486 if (Special) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000487 LLVM_DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)");
David Goodwine10deca2009-10-26 22:31:16 +0000488 State->UnionGroups(Reg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000489 }
490
491 // Note register reference...
Craig Topper4ba84432014-04-14 00:51:57 +0000492 const TargetRegisterClass *RC = nullptr;
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000493 if (i < MI.getDesc().getNumOperands())
494 RC = TII->getRegClass(MI.getDesc(), i, TRI, MF);
David Goodwine10deca2009-10-26 22:31:16 +0000495 AggressiveAntiDepState::RegisterReference RR = { &MO, RC };
David Goodwin34877712009-10-26 19:32:42 +0000496 RegRefs.insert(std::make_pair(Reg, RR));
497 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000498
Nicola Zaghen0818e782018-05-14 12:53:11 +0000499 LLVM_DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000500
501 // Form a group of all defs and uses of a KILL instruction to ensure
502 // that all registers are renamed as a group.
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000503 if (MI.isKill()) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000504 LLVM_DEBUG(dbgs() << "\tKill Group:");
David Goodwin34877712009-10-26 19:32:42 +0000505
506 unsigned FirstReg = 0;
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000507 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
508 MachineOperand &MO = MI.getOperand(i);
David Goodwin34877712009-10-26 19:32:42 +0000509 if (!MO.isReg()) continue;
510 unsigned Reg = MO.getReg();
511 if (Reg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000512
David Goodwin34877712009-10-26 19:32:42 +0000513 if (FirstReg != 0) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000514 LLVM_DEBUG(dbgs() << "=" << printReg(Reg, TRI));
David Goodwine10deca2009-10-26 22:31:16 +0000515 State->UnionGroups(FirstReg, Reg);
David Goodwin34877712009-10-26 19:32:42 +0000516 } else {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000517 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI));
David Goodwin34877712009-10-26 19:32:42 +0000518 FirstReg = Reg;
519 }
520 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000521
Nicola Zaghen0818e782018-05-14 12:53:11 +0000522 LLVM_DEBUG(dbgs() << "->g" << State->GetGroup(FirstReg) << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000523 }
524}
525
526BitVector AggressiveAntiDepBreaker::GetRenameRegisters(unsigned Reg) {
527 BitVector BV(TRI->getNumRegs(), false);
528 bool first = true;
529
530 // Check all references that need rewriting for Reg. For each, use
531 // the corresponding register class to narrow the set of registers
532 // that are appropriate for renaming.
Benjamin Kramer08366202015-07-18 20:05:10 +0000533 for (const auto &Q : make_range(State->GetRegRefs().equal_range(Reg))) {
534 const TargetRegisterClass *RC = Q.second.RC;
Craig Topper4ba84432014-04-14 00:51:57 +0000535 if (!RC) continue;
David Goodwin34877712009-10-26 19:32:42 +0000536
537 BitVector RCBV = TRI->getAllocatableSet(MF, RC);
538 if (first) {
539 BV |= RCBV;
540 first = false;
541 } else {
542 BV &= RCBV;
543 }
544
Nicola Zaghen0818e782018-05-14 12:53:11 +0000545 LLVM_DEBUG(dbgs() << " " << TRI->getRegClassName(RC));
David Goodwin34877712009-10-26 19:32:42 +0000546 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000547
David Goodwin34877712009-10-26 19:32:42 +0000548 return BV;
Jim Grosbach2973b572010-01-06 16:48:02 +0000549}
David Goodwin34877712009-10-26 19:32:42 +0000550
551bool AggressiveAntiDepBreaker::FindSuitableFreeRegisters(
David Goodwin54097832009-11-05 01:19:35 +0000552 unsigned AntiDepGroupIndex,
553 RenameOrderType& RenameOrder,
554 std::map<unsigned, unsigned> &RenameMap) {
Bill Wendling38306d52010-07-15 18:43:09 +0000555 std::vector<unsigned> &KillIndices = State->GetKillIndices();
556 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000557 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000558 RegRefs = State->GetRegRefs();
559
David Goodwin87d21b92009-11-13 19:52:48 +0000560 // Collect all referenced registers in the same group as
561 // AntiDepReg. These all need to be renamed together if we are to
562 // break the anti-dependence.
David Goodwin34877712009-10-26 19:32:42 +0000563 std::vector<unsigned> Regs;
David Goodwin87d21b92009-11-13 19:52:48 +0000564 State->GetGroupRegs(AntiDepGroupIndex, Regs, &RegRefs);
Eugene Zelenko94348112017-09-29 21:55:49 +0000565 assert(!Regs.empty() && "Empty register group!");
566 if (Regs.empty())
David Goodwin34877712009-10-26 19:32:42 +0000567 return false;
568
569 // Find the "superest" register in the group. At the same time,
570 // collect the BitVector of registers that can be used to rename
571 // each register.
Nicola Zaghen0818e782018-05-14 12:53:11 +0000572 LLVM_DEBUG(dbgs() << "\tRename Candidates for Group g" << AntiDepGroupIndex
573 << ":\n");
David Goodwin34877712009-10-26 19:32:42 +0000574 std::map<unsigned, BitVector> RenameRegisterMap;
575 unsigned SuperReg = 0;
576 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
577 unsigned Reg = Regs[i];
578 if ((SuperReg == 0) || TRI->isSuperRegister(SuperReg, Reg))
579 SuperReg = Reg;
580
581 // If Reg has any references, then collect possible rename regs
582 if (RegRefs.count(Reg) > 0) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000583 LLVM_DEBUG(dbgs() << "\t\t" << printReg(Reg, TRI) << ":");
Jim Grosbach2973b572010-01-06 16:48:02 +0000584
Benjamin Kramer8d6707c2016-02-13 16:39:39 +0000585 BitVector &BV = RenameRegisterMap[Reg];
586 assert(BV.empty());
587 BV = GetRenameRegisters(Reg);
David Goodwin34877712009-10-26 19:32:42 +0000588
Nicola Zaghen0818e782018-05-14 12:53:11 +0000589 LLVM_DEBUG({
Benjamin Kramer8d6707c2016-02-13 16:39:39 +0000590 dbgs() << " ::";
Francis Visoiu Mistrih1179b5e2017-05-17 01:07:53 +0000591 for (unsigned r : BV.set_bits())
Francis Visoiu Mistrihe6b89912017-11-30 16:12:24 +0000592 dbgs() << " " << printReg(r, TRI);
Benjamin Kramer8d6707c2016-02-13 16:39:39 +0000593 dbgs() << "\n";
594 });
David Goodwin34877712009-10-26 19:32:42 +0000595 }
596 }
597
598 // All group registers should be a subreg of SuperReg.
599 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
600 unsigned Reg = Regs[i];
601 if (Reg == SuperReg) continue;
602 bool IsSub = TRI->isSubRegister(SuperReg, Reg);
Will Schmidt723bdb52014-07-31 19:50:53 +0000603 // FIXME: remove this once PR18663 has been properly fixed. For now,
604 // return a conservative answer:
605 // assert(IsSub && "Expecting group subregister");
David Goodwin34877712009-10-26 19:32:42 +0000606 if (!IsSub)
607 return false;
608 }
609
David Goodwin00621ef2009-11-20 23:33:54 +0000610#ifndef NDEBUG
611 // If DebugDiv > 0 then only rename (renamecnt % DebugDiv) == DebugMod
612 if (DebugDiv > 0) {
613 static int renamecnt = 0;
614 if (renamecnt++ % DebugDiv != DebugMod)
615 return false;
Jim Grosbach2973b572010-01-06 16:48:02 +0000616
Francis Visoiu Mistrihe6b89912017-11-30 16:12:24 +0000617 dbgs() << "*** Performing rename " << printReg(SuperReg, TRI)
618 << " for debug ***\n";
David Goodwin00621ef2009-11-20 23:33:54 +0000619 }
620#endif
621
David Goodwin54097832009-11-05 01:19:35 +0000622 // Check each possible rename register for SuperReg in round-robin
623 // order. If that register is available, and the corresponding
624 // registers are available for the other group subregisters, then we
625 // can use those registers to rename.
Rafael Espindola7e1b5662010-07-12 02:55:34 +0000626
627 // FIXME: Using getMinimalPhysRegClass is very conservative. We should
628 // check every use of the register and find the largest register class
629 // that can be used in all of them.
Jim Grosbach2973b572010-01-06 16:48:02 +0000630 const TargetRegisterClass *SuperRC =
Rafael Espindola7e1b5662010-07-12 02:55:34 +0000631 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
Jim Grosbach2973b572010-01-06 16:48:02 +0000632
Jakob Stoklund Olesen39b5c0c2012-11-29 03:34:17 +0000633 ArrayRef<MCPhysReg> Order = RegClassInfo.getOrder(SuperRC);
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000634 if (Order.empty()) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000635 LLVM_DEBUG(dbgs() << "\tEmpty Super Regclass!!\n");
David Goodwin54097832009-11-05 01:19:35 +0000636 return false;
637 }
638
Nicola Zaghen0818e782018-05-14 12:53:11 +0000639 LLVM_DEBUG(dbgs() << "\tFind Registers:");
David Goodwin3e72d302009-11-19 23:12:37 +0000640
Benjamin Kramerd62c4ba2014-10-10 15:32:50 +0000641 RenameOrder.insert(RenameOrderType::value_type(SuperRC, Order.size()));
David Goodwin54097832009-11-05 01:19:35 +0000642
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000643 unsigned OrigR = RenameOrder[SuperRC];
644 unsigned EndR = ((OrigR == Order.size()) ? 0 : OrigR);
645 unsigned R = OrigR;
David Goodwin54097832009-11-05 01:19:35 +0000646 do {
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000647 if (R == 0) R = Order.size();
David Goodwin54097832009-11-05 01:19:35 +0000648 --R;
Jakob Stoklund Olesenfa796dd2011-06-16 21:56:21 +0000649 const unsigned NewSuperReg = Order[R];
Jim Grosbach9b041c92010-09-02 17:12:55 +0000650 // Don't consider non-allocatable registers
Jakob Stoklund Olesen14d1dd92012-10-15 22:41:03 +0000651 if (!MRI.isAllocatable(NewSuperReg)) continue;
David Goodwin34877712009-10-26 19:32:42 +0000652 // Don't replace a register with itself.
David Goodwin00621ef2009-11-20 23:33:54 +0000653 if (NewSuperReg == SuperReg) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000654
Nicola Zaghen0818e782018-05-14 12:53:11 +0000655 LLVM_DEBUG(dbgs() << " [" << printReg(NewSuperReg, TRI) << ':');
David Goodwin00621ef2009-11-20 23:33:54 +0000656 RenameMap.clear();
657
658 // For each referenced group register (which must be a SuperReg or
659 // a subregister of SuperReg), find the corresponding subregister
660 // of NewSuperReg and make sure it is free to be renamed.
661 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
662 unsigned Reg = Regs[i];
663 unsigned NewReg = 0;
664 if (Reg == SuperReg) {
665 NewReg = NewSuperReg;
666 } else {
667 unsigned NewSubRegIdx = TRI->getSubRegIndex(SuperReg, Reg);
668 if (NewSubRegIdx != 0)
669 NewReg = TRI->getSubReg(NewSuperReg, NewSubRegIdx);
David Goodwin34877712009-10-26 19:32:42 +0000670 }
David Goodwin00621ef2009-11-20 23:33:54 +0000671
Nicola Zaghen0818e782018-05-14 12:53:11 +0000672 LLVM_DEBUG(dbgs() << " " << printReg(NewReg, TRI));
Jim Grosbach2973b572010-01-06 16:48:02 +0000673
David Goodwin00621ef2009-11-20 23:33:54 +0000674 // Check if Reg can be renamed to NewReg.
Benjamin Kramer8d6707c2016-02-13 16:39:39 +0000675 if (!RenameRegisterMap[Reg].test(NewReg)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000676 LLVM_DEBUG(dbgs() << "(no rename)");
David Goodwin00621ef2009-11-20 23:33:54 +0000677 goto next_super_reg;
678 }
679
680 // If NewReg is dead and NewReg's most recent def is not before
681 // Regs's kill, it's safe to replace Reg with NewReg. We
682 // must also check all aliases of NewReg, because we can't define a
683 // register when any sub or super is already live.
684 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000685 LLVM_DEBUG(dbgs() << "(live)");
David Goodwin00621ef2009-11-20 23:33:54 +0000686 goto next_super_reg;
687 } else {
688 bool found = false;
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000689 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) {
690 unsigned AliasReg = *AI;
Jim Grosbach2973b572010-01-06 16:48:02 +0000691 if (State->IsLive(AliasReg) ||
692 (KillIndices[Reg] > DefIndices[AliasReg])) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000693 LLVM_DEBUG(dbgs()
694 << "(alias " << printReg(AliasReg, TRI) << " live)");
David Goodwin00621ef2009-11-20 23:33:54 +0000695 found = true;
696 break;
697 }
698 }
699 if (found)
700 goto next_super_reg;
701 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000702
Hal Finkel014b06e2014-12-09 01:00:59 +0000703 // We cannot rename 'Reg' to 'NewReg' if one of the uses of 'Reg' also
704 // defines 'NewReg' via an early-clobber operand.
Benjamin Kramer08366202015-07-18 20:05:10 +0000705 for (const auto &Q : make_range(RegRefs.equal_range(Reg))) {
706 MachineInstr *UseMI = Q.second.Operand->getParent();
Hal Finkel014b06e2014-12-09 01:00:59 +0000707 int Idx = UseMI->findRegisterDefOperandIdx(NewReg, false, true, TRI);
708 if (Idx == -1)
709 continue;
710
711 if (UseMI->getOperand(Idx).isEarlyClobber()) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000712 LLVM_DEBUG(dbgs() << "(ec)");
Hal Finkel014b06e2014-12-09 01:00:59 +0000713 goto next_super_reg;
714 }
715 }
716
Hal Finkelce5fc202015-08-31 07:51:36 +0000717 // Also, we cannot rename 'Reg' to 'NewReg' if the instruction defining
718 // 'Reg' is an early-clobber define and that instruction also uses
719 // 'NewReg'.
720 for (const auto &Q : make_range(RegRefs.equal_range(Reg))) {
721 if (!Q.second.Operand->isDef() || !Q.second.Operand->isEarlyClobber())
722 continue;
723
724 MachineInstr *DefMI = Q.second.Operand->getParent();
725 if (DefMI->readsRegister(NewReg, TRI)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000726 LLVM_DEBUG(dbgs() << "(ec)");
Hal Finkelce5fc202015-08-31 07:51:36 +0000727 goto next_super_reg;
728 }
729 }
730
David Goodwin00621ef2009-11-20 23:33:54 +0000731 // Record that 'Reg' can be renamed to 'NewReg'.
732 RenameMap.insert(std::pair<unsigned, unsigned>(Reg, NewReg));
David Goodwin34877712009-10-26 19:32:42 +0000733 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000734
David Goodwin00621ef2009-11-20 23:33:54 +0000735 // If we fall-out here, then every register in the group can be
736 // renamed, as recorded in RenameMap.
737 RenameOrder.erase(SuperRC);
738 RenameOrder.insert(RenameOrderType::value_type(SuperRC, R));
Nicola Zaghen0818e782018-05-14 12:53:11 +0000739 LLVM_DEBUG(dbgs() << "]\n");
David Goodwin00621ef2009-11-20 23:33:54 +0000740 return true;
741
742 next_super_reg:
Nicola Zaghen0818e782018-05-14 12:53:11 +0000743 LLVM_DEBUG(dbgs() << ']');
David Goodwin54097832009-11-05 01:19:35 +0000744 } while (R != EndR);
David Goodwin34877712009-10-26 19:32:42 +0000745
Nicola Zaghen0818e782018-05-14 12:53:11 +0000746 LLVM_DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000747
748 // No registers are free and available!
749 return false;
750}
751
752/// BreakAntiDependencies - Identifiy anti-dependencies within the
753/// ScheduleDAG and break them by renaming registers.
David Goodwine10deca2009-10-26 22:31:16 +0000754unsigned AggressiveAntiDepBreaker::BreakAntiDependencies(
Eugene Zelenko94348112017-09-29 21:55:49 +0000755 const std::vector<SUnit> &SUnits,
Dan Gohman66db3a02010-04-19 23:11:58 +0000756 MachineBasicBlock::iterator Begin,
757 MachineBasicBlock::iterator End,
Devang Patele29e8e12011-06-02 21:26:52 +0000758 unsigned InsertPosIndex,
759 DbgValueVector &DbgValues) {
Bill Wendling38306d52010-07-15 18:43:09 +0000760 std::vector<unsigned> &KillIndices = State->GetKillIndices();
761 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000762 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000763 RegRefs = State->GetRegRefs();
764
David Goodwin34877712009-10-26 19:32:42 +0000765 // The code below assumes that there is at least one instruction,
766 // so just duck out immediately if the block is empty.
David Goodwin4de099d2009-11-03 20:57:50 +0000767 if (SUnits.empty()) return 0;
Jim Grosbach2973b572010-01-06 16:48:02 +0000768
David Goodwin54097832009-11-05 01:19:35 +0000769 // For each regclass the next register to use for renaming.
770 RenameOrderType RenameOrder;
David Goodwin34877712009-10-26 19:32:42 +0000771
772 // ...need a map from MI to SUnit.
Dan Gohman66db3a02010-04-19 23:11:58 +0000773 std::map<MachineInstr *, const SUnit *> MISUnitMap;
David Goodwin34877712009-10-26 19:32:42 +0000774 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
Dan Gohman66db3a02010-04-19 23:11:58 +0000775 const SUnit *SU = &SUnits[i];
776 MISUnitMap.insert(std::pair<MachineInstr *, const SUnit *>(SU->getInstr(),
777 SU));
David Goodwin34877712009-10-26 19:32:42 +0000778 }
779
David Goodwin87d21b92009-11-13 19:52:48 +0000780 // Track progress along the critical path through the SUnit graph as
781 // we walk the instructions. This is needed for regclasses that only
782 // break critical-path anti-dependencies.
Craig Topper4ba84432014-04-14 00:51:57 +0000783 const SUnit *CriticalPathSU = nullptr;
784 MachineInstr *CriticalPathMI = nullptr;
David Goodwin87d21b92009-11-13 19:52:48 +0000785 if (CriticalPathSet.any()) {
786 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
Dan Gohman66db3a02010-04-19 23:11:58 +0000787 const SUnit *SU = &SUnits[i];
Jim Grosbach2973b572010-01-06 16:48:02 +0000788 if (!CriticalPathSU ||
789 ((SU->getDepth() + SU->Latency) >
David Goodwin87d21b92009-11-13 19:52:48 +0000790 (CriticalPathSU->getDepth() + CriticalPathSU->Latency))) {
791 CriticalPathSU = SU;
792 }
793 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000794
David Goodwin87d21b92009-11-13 19:52:48 +0000795 CriticalPathMI = CriticalPathSU->getInstr();
796 }
797
Jim Grosbach2973b572010-01-06 16:48:02 +0000798#ifndef NDEBUG
Nicola Zaghen0818e782018-05-14 12:53:11 +0000799 LLVM_DEBUG(dbgs() << "\n===== Aggressive anti-dependency breaking\n");
800 LLVM_DEBUG(dbgs() << "Available regs:");
David Goodwin557bbe62009-11-20 19:32:48 +0000801 for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) {
802 if (!State->IsLive(Reg))
Nicola Zaghen0818e782018-05-14 12:53:11 +0000803 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI));
David Goodwin34877712009-10-26 19:32:42 +0000804 }
Nicola Zaghen0818e782018-05-14 12:53:11 +0000805 LLVM_DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000806#endif
807
Krzysztof Parzyszeke19980c2016-05-26 18:22:53 +0000808 BitVector RegAliases(TRI->getNumRegs());
809
David Goodwin34877712009-10-26 19:32:42 +0000810 // Attempt to break anti-dependence edges. Walk the instructions
811 // from the bottom up, tracking information about liveness as we go
812 // to help determine which registers are available.
813 unsigned Broken = 0;
814 unsigned Count = InsertPosIndex - 1;
815 for (MachineBasicBlock::iterator I = End, E = Begin;
816 I != E; --Count) {
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000817 MachineInstr &MI = *--I;
David Goodwin34877712009-10-26 19:32:42 +0000818
Shiva Chen24abe712018-05-09 02:42:00 +0000819 if (MI.isDebugInstr())
Hal Finkel504d1d22012-01-16 22:53:41 +0000820 continue;
821
Nicola Zaghen0818e782018-05-14 12:53:11 +0000822 LLVM_DEBUG(dbgs() << "Anti: ");
823 LLVM_DEBUG(MI.dump());
David Goodwin34877712009-10-26 19:32:42 +0000824
825 std::set<unsigned> PassthruRegs;
826 GetPassthruRegs(MI, PassthruRegs);
827
828 // Process the defs in MI...
829 PrescanInstruction(MI, Count, PassthruRegs);
Jim Grosbach2973b572010-01-06 16:48:02 +0000830
David Goodwin557bbe62009-11-20 19:32:48 +0000831 // The dependence edges that represent anti- and output-
David Goodwin87d21b92009-11-13 19:52:48 +0000832 // dependencies that are candidates for breaking.
Dan Gohman66db3a02010-04-19 23:11:58 +0000833 std::vector<const SDep *> Edges;
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000834 const SUnit *PathSU = MISUnitMap[&MI];
David Goodwin557bbe62009-11-20 19:32:48 +0000835 AntiDepEdges(PathSU, Edges);
David Goodwin87d21b92009-11-13 19:52:48 +0000836
837 // If MI is not on the critical path, then we don't rename
838 // registers in the CriticalPathSet.
Craig Topper4ba84432014-04-14 00:51:57 +0000839 BitVector *ExcludeRegs = nullptr;
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000840 if (&MI == CriticalPathMI) {
David Goodwin87d21b92009-11-13 19:52:48 +0000841 CriticalPathSU = CriticalPathStep(CriticalPathSU);
Craig Topper4ba84432014-04-14 00:51:57 +0000842 CriticalPathMI = (CriticalPathSU) ? CriticalPathSU->getInstr() : nullptr;
Hal Finkel9ec1a552013-09-12 04:22:31 +0000843 } else if (CriticalPathSet.any()) {
David Goodwin87d21b92009-11-13 19:52:48 +0000844 ExcludeRegs = &CriticalPathSet;
845 }
846
David Goodwin34877712009-10-26 19:32:42 +0000847 // Ignore KILL instructions (they form a group in ScanInstruction
848 // but don't cause any anti-dependence breaking themselves)
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000849 if (!MI.isKill()) {
David Goodwin34877712009-10-26 19:32:42 +0000850 // Attempt to break each anti-dependency...
851 for (unsigned i = 0, e = Edges.size(); i != e; ++i) {
Dan Gohman66db3a02010-04-19 23:11:58 +0000852 const SDep *Edge = Edges[i];
David Goodwin34877712009-10-26 19:32:42 +0000853 SUnit *NextSU = Edge->getSUnit();
Jim Grosbach2973b572010-01-06 16:48:02 +0000854
David Goodwin12dd99d2009-11-12 19:08:21 +0000855 if ((Edge->getKind() != SDep::Anti) &&
856 (Edge->getKind() != SDep::Output)) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000857
David Goodwin34877712009-10-26 19:32:42 +0000858 unsigned AntiDepReg = Edge->getReg();
Nicola Zaghen0818e782018-05-14 12:53:11 +0000859 LLVM_DEBUG(dbgs() << "\tAntidep reg: " << printReg(AntiDepReg, TRI));
David Goodwin34877712009-10-26 19:32:42 +0000860 assert(AntiDepReg != 0 && "Anti-dependence on reg0?");
Jim Grosbach2973b572010-01-06 16:48:02 +0000861
Jakob Stoklund Olesen14d1dd92012-10-15 22:41:03 +0000862 if (!MRI.isAllocatable(AntiDepReg)) {
David Goodwin34877712009-10-26 19:32:42 +0000863 // Don't break anti-dependencies on non-allocatable registers.
Nicola Zaghen0818e782018-05-14 12:53:11 +0000864 LLVM_DEBUG(dbgs() << " (non-allocatable)\n");
David Goodwin34877712009-10-26 19:32:42 +0000865 continue;
Craig Topper4ba84432014-04-14 00:51:57 +0000866 } else if (ExcludeRegs && ExcludeRegs->test(AntiDepReg)) {
David Goodwin87d21b92009-11-13 19:52:48 +0000867 // Don't break anti-dependencies for critical path registers
868 // if not on the critical path
Nicola Zaghen0818e782018-05-14 12:53:11 +0000869 LLVM_DEBUG(dbgs() << " (not critical-path)\n");
David Goodwin87d21b92009-11-13 19:52:48 +0000870 continue;
David Goodwin34877712009-10-26 19:32:42 +0000871 } else if (PassthruRegs.count(AntiDepReg) != 0) {
872 // If the anti-dep register liveness "passes-thru", then
873 // don't try to change it. It will be changed along with
874 // the use if required to break an earlier antidep.
Nicola Zaghen0818e782018-05-14 12:53:11 +0000875 LLVM_DEBUG(dbgs() << " (passthru)\n");
David Goodwin34877712009-10-26 19:32:42 +0000876 continue;
877 } else {
878 // No anti-dep breaking for implicit deps
Duncan P. N. Exon Smitha26cd9c2016-02-27 19:33:37 +0000879 MachineOperand *AntiDepOp = MI.findRegisterDefOperand(AntiDepReg);
Craig Topper4ba84432014-04-14 00:51:57 +0000880 assert(AntiDepOp && "Can't find index for defined register operand");
881 if (!AntiDepOp || AntiDepOp->isImplicit()) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000882 LLVM_DEBUG(dbgs() << " (implicit)\n");
David Goodwin34877712009-10-26 19:32:42 +0000883 continue;
884 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000885
David Goodwin34877712009-10-26 19:32:42 +0000886 // If the SUnit has other dependencies on the SUnit that
887 // it anti-depends on, don't bother breaking the
888 // anti-dependency since those edges would prevent such
889 // units from being scheduled past each other
890 // regardless.
David Goodwin557bbe62009-11-20 19:32:48 +0000891 //
892 // Also, if there are dependencies on other SUnits with the
893 // same register as the anti-dependency, don't attempt to
894 // break it.
Dan Gohman66db3a02010-04-19 23:11:58 +0000895 for (SUnit::const_pred_iterator P = PathSU->Preds.begin(),
David Goodwin34877712009-10-26 19:32:42 +0000896 PE = PathSU->Preds.end(); P != PE; ++P) {
David Goodwin557bbe62009-11-20 19:32:48 +0000897 if (P->getSUnit() == NextSU ?
898 (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) :
899 (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) {
900 AntiDepReg = 0;
901 break;
902 }
903 }
Dan Gohman66db3a02010-04-19 23:11:58 +0000904 for (SUnit::const_pred_iterator P = PathSU->Preds.begin(),
David Goodwin557bbe62009-11-20 19:32:48 +0000905 PE = PathSU->Preds.end(); P != PE; ++P) {
906 if ((P->getSUnit() == NextSU) && (P->getKind() != SDep::Anti) &&
907 (P->getKind() != SDep::Output)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000908 LLVM_DEBUG(dbgs() << " (real dependency)\n");
David Goodwin34877712009-10-26 19:32:42 +0000909 AntiDepReg = 0;
910 break;
Jim Grosbach2973b572010-01-06 16:48:02 +0000911 } else if ((P->getSUnit() != NextSU) &&
912 (P->getKind() == SDep::Data) &&
David Goodwin557bbe62009-11-20 19:32:48 +0000913 (P->getReg() == AntiDepReg)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000914 LLVM_DEBUG(dbgs() << " (other dependency)\n");
David Goodwin557bbe62009-11-20 19:32:48 +0000915 AntiDepReg = 0;
916 break;
David Goodwin34877712009-10-26 19:32:42 +0000917 }
918 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000919
David Goodwin34877712009-10-26 19:32:42 +0000920 if (AntiDepReg == 0) continue;
Krzysztof Parzyszeke19980c2016-05-26 18:22:53 +0000921
922 // If the definition of the anti-dependency register does not start
923 // a new live range, bail out. This can happen if the anti-dep
924 // register is a sub-register of another register whose live range
925 // spans over PathSU. In such case, PathSU defines only a part of
926 // the larger register.
927 RegAliases.reset();
928 for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI)
929 RegAliases.set(*AI);
930 for (SDep S : PathSU->Succs) {
931 SDep::Kind K = S.getKind();
932 if (K != SDep::Data && K != SDep::Output && K != SDep::Anti)
933 continue;
934 unsigned R = S.getReg();
935 if (!RegAliases[R])
936 continue;
937 if (R == AntiDepReg || TRI->isSubRegister(AntiDepReg, R))
938 continue;
939 AntiDepReg = 0;
940 break;
941 }
942
943 if (AntiDepReg == 0) continue;
David Goodwin34877712009-10-26 19:32:42 +0000944 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000945
David Goodwin34877712009-10-26 19:32:42 +0000946 assert(AntiDepReg != 0);
947 if (AntiDepReg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000948
David Goodwin34877712009-10-26 19:32:42 +0000949 // Determine AntiDepReg's register group.
David Goodwine10deca2009-10-26 22:31:16 +0000950 const unsigned GroupIndex = State->GetGroup(AntiDepReg);
David Goodwin34877712009-10-26 19:32:42 +0000951 if (GroupIndex == 0) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000952 LLVM_DEBUG(dbgs() << " (zero group)\n");
David Goodwin34877712009-10-26 19:32:42 +0000953 continue;
954 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000955
Nicola Zaghen0818e782018-05-14 12:53:11 +0000956 LLVM_DEBUG(dbgs() << '\n');
Jim Grosbach2973b572010-01-06 16:48:02 +0000957
David Goodwin34877712009-10-26 19:32:42 +0000958 // Look for a suitable register to use to break the anti-dependence.
959 std::map<unsigned, unsigned> RenameMap;
David Goodwin54097832009-11-05 01:19:35 +0000960 if (FindSuitableFreeRegisters(GroupIndex, RenameOrder, RenameMap)) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000961 LLVM_DEBUG(dbgs() << "\tBreaking anti-dependence edge on "
962 << printReg(AntiDepReg, TRI) << ":");
Jim Grosbach2973b572010-01-06 16:48:02 +0000963
David Goodwin34877712009-10-26 19:32:42 +0000964 // Handle each group register...
965 for (std::map<unsigned, unsigned>::iterator
966 S = RenameMap.begin(), E = RenameMap.end(); S != E; ++S) {
967 unsigned CurrReg = S->first;
968 unsigned NewReg = S->second;
Jim Grosbach2973b572010-01-06 16:48:02 +0000969
Nicola Zaghen0818e782018-05-14 12:53:11 +0000970 LLVM_DEBUG(dbgs() << " " << printReg(CurrReg, TRI) << "->"
971 << printReg(NewReg, TRI) << "("
972 << RegRefs.count(CurrReg) << " refs)");
Jim Grosbach2973b572010-01-06 16:48:02 +0000973
David Goodwin34877712009-10-26 19:32:42 +0000974 // Update the references to the old register CurrReg to
975 // refer to the new register NewReg.
Benjamin Kramer08366202015-07-18 20:05:10 +0000976 for (const auto &Q : make_range(RegRefs.equal_range(CurrReg))) {
977 Q.second.Operand->setReg(NewReg);
Jim Grosbach533934e2010-06-01 23:48:44 +0000978 // If the SU for the instruction being updated has debug
979 // information related to the anti-dependency register, make
980 // sure to update that as well.
Benjamin Kramer08366202015-07-18 20:05:10 +0000981 const SUnit *SU = MISUnitMap[Q.second.Operand->getParent()];
Jim Grosbach086723d2010-06-02 15:29:36 +0000982 if (!SU) continue;
Andrew Ngd8be4bf2017-04-25 15:39:57 +0000983 UpdateDbgValues(DbgValues, Q.second.Operand->getParent(),
984 AntiDepReg, NewReg);
David Goodwin34877712009-10-26 19:32:42 +0000985 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000986
David Goodwin34877712009-10-26 19:32:42 +0000987 // We just went back in time and modified history; the
988 // liveness information for CurrReg is now inconsistent. Set
989 // the state as if it were dead.
David Goodwine10deca2009-10-26 22:31:16 +0000990 State->UnionGroups(NewReg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000991 RegRefs.erase(NewReg);
992 DefIndices[NewReg] = DefIndices[CurrReg];
993 KillIndices[NewReg] = KillIndices[CurrReg];
Jim Grosbach2973b572010-01-06 16:48:02 +0000994
David Goodwine10deca2009-10-26 22:31:16 +0000995 State->UnionGroups(CurrReg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000996 RegRefs.erase(CurrReg);
997 DefIndices[CurrReg] = KillIndices[CurrReg];
998 KillIndices[CurrReg] = ~0u;
999 assert(((KillIndices[CurrReg] == ~0u) !=
1000 (DefIndices[CurrReg] == ~0u)) &&
1001 "Kill and Def maps aren't consistent for AntiDepReg!");
1002 }
Jim Grosbach2973b572010-01-06 16:48:02 +00001003
David Goodwin34877712009-10-26 19:32:42 +00001004 ++Broken;
Nicola Zaghen0818e782018-05-14 12:53:11 +00001005 LLVM_DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +00001006 }
1007 }
1008 }
1009
1010 ScanInstruction(MI, Count);
1011 }
Jim Grosbach2973b572010-01-06 16:48:02 +00001012
David Goodwin34877712009-10-26 19:32:42 +00001013 return Broken;
1014}