blob: 444f618d8b8ce117159fc7aaf7175dcfe8229454 [file] [log] [blame]
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +00001//===- AggressiveAntiDepBreaker.cpp - Anti-dep breaker --------------------===//
David Goodwinde11f362009-10-26 19:32:42 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
David Goodwinde11f362009-10-26 19:32:42 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the AggressiveAntiDepBreaker class, which
10// implements register anti-dependence breaking during post-RA
11// scheduling. It attempts to break all anti-dependencies within a
12// block.
13//
14//===----------------------------------------------------------------------===//
15
David Goodwinde11f362009-10-26 19:32:42 +000016#include "AggressiveAntiDepBreaker.h"
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000017#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/BitVector.h"
19#include "llvm/ADT/SmallSet.h"
20#include "llvm/ADT/iterator_range.h"
David Goodwinde11f362009-10-26 19:32:42 +000021#include "llvm/CodeGen/MachineBasicBlock.h"
22#include "llvm/CodeGen/MachineFrameInfo.h"
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000023#include "llvm/CodeGen/MachineFunction.h"
David Goodwinde11f362009-10-26 19:32:42 +000024#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000025#include "llvm/CodeGen/MachineOperand.h"
26#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Trick05ff4662012-06-06 20:29:31 +000027#include "llvm/CodeGen/RegisterClassInfo.h"
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000028#include "llvm/CodeGen/ScheduleDAG.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000029#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000030#include "llvm/CodeGen/TargetRegisterInfo.h"
31#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000032#include "llvm/MC/MCInstrDesc.h"
33#include "llvm/MC/MCRegisterInfo.h"
David Goodwine056d102009-10-26 22:31:16 +000034#include "llvm/Support/CommandLine.h"
David Goodwinde11f362009-10-26 19:32:42 +000035#include "llvm/Support/Debug.h"
David Blaikie13e77db2018-03-23 23:58:25 +000036#include "llvm/Support/MachineValueType.h"
David Goodwinde11f362009-10-26 19:32:42 +000037#include "llvm/Support/raw_ostream.h"
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000038#include <cassert>
39#include <map>
40#include <set>
41#include <utility>
42#include <vector>
43
David Goodwinde11f362009-10-26 19:32:42 +000044using namespace llvm;
45
Chandler Carruth1b9dde02014-04-22 02:02:50 +000046#define DEBUG_TYPE "post-RA-sched"
47
David Goodwindd1c6192009-11-19 23:12:37 +000048// If DebugDiv > 0 then only break antidep with (ID % DebugDiv) == DebugMod
49static cl::opt<int>
50DebugDiv("agg-antidep-debugdiv",
Bob Wilson67dd3a42010-04-09 21:38:26 +000051 cl::desc("Debug control for aggressive anti-dep breaker"),
52 cl::init(0), cl::Hidden);
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000053
David Goodwindd1c6192009-11-19 23:12:37 +000054static cl::opt<int>
55DebugMod("agg-antidep-debugmod",
Bob Wilson67dd3a42010-04-09 21:38:26 +000056 cl::desc("Debug control for aggressive anti-dep breaker"),
57 cl::init(0), cl::Hidden);
David Goodwindd1c6192009-11-19 23:12:37 +000058
David Goodwina45fe672009-12-09 17:18:22 +000059AggressiveAntiDepState::AggressiveAntiDepState(const unsigned TargetRegs,
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000060 MachineBasicBlock *BB)
61 : NumTargetRegs(TargetRegs), GroupNodes(TargetRegs, 0),
62 GroupNodeIndices(TargetRegs, 0), KillIndices(TargetRegs, 0),
63 DefIndices(TargetRegs, 0) {
David Goodwina45fe672009-12-09 17:18:22 +000064 const unsigned BBSize = BB->size();
65 for (unsigned i = 0; i < NumTargetRegs; ++i) {
66 // Initialize all registers to be in their own group. Initially we
67 // assign the register to the same-indexed GroupNode.
68 GroupNodeIndices[i] = i;
69 // Initialize the indices to indicate that no registers are live.
70 KillIndices[i] = ~0u;
71 DefIndices[i] = BBSize;
72 }
David Goodwinde11f362009-10-26 19:32:42 +000073}
74
Bill Wendling5a8d15c2010-07-15 19:41:20 +000075unsigned AggressiveAntiDepState::GetGroup(unsigned Reg) {
David Goodwinde11f362009-10-26 19:32:42 +000076 unsigned Node = GroupNodeIndices[Reg];
77 while (GroupNodes[Node] != Node)
78 Node = GroupNodes[Node];
79
80 return Node;
81}
82
David Goodwinb9fe5d52009-11-13 19:52:48 +000083void AggressiveAntiDepState::GetGroupRegs(
84 unsigned Group,
85 std::vector<unsigned> &Regs,
86 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs)
David Goodwinde11f362009-10-26 19:32:42 +000087{
David Goodwina45fe672009-12-09 17:18:22 +000088 for (unsigned Reg = 0; Reg != NumTargetRegs; ++Reg) {
David Goodwinb9fe5d52009-11-13 19:52:48 +000089 if ((GetGroup(Reg) == Group) && (RegRefs->count(Reg) > 0))
David Goodwinde11f362009-10-26 19:32:42 +000090 Regs.push_back(Reg);
91 }
92}
93
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +000094unsigned AggressiveAntiDepState::UnionGroups(unsigned Reg1, unsigned Reg2) {
David Goodwinde11f362009-10-26 19:32:42 +000095 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!");
96 assert(GroupNodeIndices[0] == 0 && "Reg 0 not in Group 0!");
Jim Grosbacheb431da2010-01-06 16:48:02 +000097
David Goodwinde11f362009-10-26 19:32:42 +000098 // find group for each register
99 unsigned Group1 = GetGroup(Reg1);
100 unsigned Group2 = GetGroup(Reg2);
Jim Grosbacheb431da2010-01-06 16:48:02 +0000101
David Goodwinde11f362009-10-26 19:32:42 +0000102 // if either group is 0, then that must become the parent
103 unsigned Parent = (Group1 == 0) ? Group1 : Group2;
104 unsigned Other = (Parent == Group1) ? Group2 : Group1;
105 GroupNodes.at(Other) = Parent;
106 return Parent;
107}
Jim Grosbacheb431da2010-01-06 16:48:02 +0000108
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +0000109unsigned AggressiveAntiDepState::LeaveGroup(unsigned Reg) {
David Goodwinde11f362009-10-26 19:32:42 +0000110 // Create a new GroupNode for Reg. Reg's existing GroupNode must
111 // stay as is because there could be other GroupNodes referring to
112 // it.
113 unsigned idx = GroupNodes.size();
114 GroupNodes.push_back(idx);
115 GroupNodeIndices[Reg] = idx;
116 return idx;
117}
118
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +0000119bool AggressiveAntiDepState::IsLive(unsigned Reg) {
David Goodwinde11f362009-10-26 19:32:42 +0000120 // KillIndex must be defined and DefIndex not defined for a register
121 // to be live.
122 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
123}
124
Eric Christopherd9134482014-08-04 21:25:23 +0000125AggressiveAntiDepBreaker::AggressiveAntiDepBreaker(
126 MachineFunction &MFi, const RegisterClassInfo &RCI,
127 TargetSubtargetInfo::RegClassVector &CriticalPathRCs)
128 : AntiDepBreaker(), MF(MFi), MRI(MF.getRegInfo()),
Eric Christopherfc6de422014-08-05 02:39:49 +0000129 TII(MF.getSubtarget().getInstrInfo()),
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +0000130 TRI(MF.getSubtarget().getRegisterInfo()), RegClassInfo(RCI) {
David Goodwinb9fe5d52009-11-13 19:52:48 +0000131 /* Collect a bitset of all registers that are only broken if they
132 are on the critical path. */
133 for (unsigned i = 0, e = CriticalPathRCs.size(); i < e; ++i) {
134 BitVector CPSet = TRI->getAllocatableSet(MF, CriticalPathRCs[i]);
135 if (CriticalPathSet.none())
136 CriticalPathSet = CPSet;
137 else
138 CriticalPathSet |= CPSet;
139 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000140
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000141 LLVM_DEBUG(dbgs() << "AntiDep Critical-Path Registers:");
142 LLVM_DEBUG(for (unsigned r
143 : CriticalPathSet.set_bits()) dbgs()
144 << " " << printReg(r, TRI));
145 LLVM_DEBUG(dbgs() << '\n');
David Goodwine056d102009-10-26 22:31:16 +0000146}
147
148AggressiveAntiDepBreaker::~AggressiveAntiDepBreaker() {
149 delete State;
David Goodwine056d102009-10-26 22:31:16 +0000150}
151
152void AggressiveAntiDepBreaker::StartBlock(MachineBasicBlock *BB) {
Craig Topperc0196b12014-04-14 00:51:57 +0000153 assert(!State);
David Goodwina45fe672009-12-09 17:18:22 +0000154 State = new AggressiveAntiDepState(TRI->getNumRegs(), BB);
David Goodwine056d102009-10-26 22:31:16 +0000155
Matthias Braunc2d4bef2015-09-25 21:25:19 +0000156 bool IsReturnBlock = BB->isReturnBlock();
Bill Wendling030b0282010-07-15 18:43:09 +0000157 std::vector<unsigned> &KillIndices = State->GetKillIndices();
158 std::vector<unsigned> &DefIndices = State->GetDefIndices();
David Goodwine056d102009-10-26 22:31:16 +0000159
Jakob Stoklund Olesenc3386792013-02-05 18:21:52 +0000160 // Examine the live-in regs of all successors.
Evan Chengf128bdc2010-06-16 07:35:02 +0000161 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
162 SE = BB->succ_end(); SI != SE; ++SI)
Matthias Braund9da1622015-09-09 18:08:03 +0000163 for (const auto &LI : (*SI)->liveins()) {
164 for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) {
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000165 unsigned Reg = *AI;
Jakob Stoklund Olesenbe1c8d32010-12-14 23:23:15 +0000166 State->UnionGroups(Reg, 0);
167 KillIndices[Reg] = BB->size();
168 DefIndices[Reg] = ~0u;
Evan Chengf128bdc2010-06-16 07:35:02 +0000169 }
170 }
171
David Goodwine056d102009-10-26 22:31:16 +0000172 // Mark live-out callee-saved registers. In a return block this is
173 // all callee-saved registers. In non-return this is any
174 // callee-saved register that is not saved in the prolog.
Matthias Braun941a7052016-07-28 18:40:00 +0000175 const MachineFrameInfo &MFI = MF.getFrameInfo();
176 BitVector Pristine = MFI.getPristineRegs(MF);
Oren Ben Simhonfe34c5e2017-03-14 09:09:26 +0000177 for (const MCPhysReg *I = MF.getRegInfo().getCalleeSavedRegs(); *I;
178 ++I) {
David Goodwine056d102009-10-26 22:31:16 +0000179 unsigned Reg = *I;
Tim Shen0bd0aa82017-05-30 22:26:52 +0000180 if (!IsReturnBlock && !Pristine.test(Reg))
Eric Christopherb9c56d12017-03-30 22:34:20 +0000181 continue;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000182 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {
183 unsigned AliasReg = *AI;
David Goodwine056d102009-10-26 22:31:16 +0000184 State->UnionGroups(AliasReg, 0);
185 KillIndices[AliasReg] = BB->size();
186 DefIndices[AliasReg] = ~0u;
187 }
188 }
189}
190
191void AggressiveAntiDepBreaker::FinishBlock() {
192 delete State;
Craig Topperc0196b12014-04-14 00:51:57 +0000193 State = nullptr;
David Goodwine056d102009-10-26 22:31:16 +0000194}
195
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000196void AggressiveAntiDepBreaker::Observe(MachineInstr &MI, unsigned Count,
Bob Wilson67dd3a42010-04-09 21:38:26 +0000197 unsigned InsertPosIndex) {
David Goodwine056d102009-10-26 22:31:16 +0000198 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
199
David Goodwinfaa76602009-10-29 23:30:59 +0000200 std::set<unsigned> PassthruRegs;
201 GetPassthruRegs(MI, PassthruRegs);
202 PrescanInstruction(MI, Count, PassthruRegs);
203 ScanInstruction(MI, Count);
204
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000205 LLVM_DEBUG(dbgs() << "Observe: ");
206 LLVM_DEBUG(MI.dump());
207 LLVM_DEBUG(dbgs() << "\tRegs:");
David Goodwine056d102009-10-26 22:31:16 +0000208
Bill Wendling030b0282010-07-15 18:43:09 +0000209 std::vector<unsigned> &DefIndices = State->GetDefIndices();
David Goodwina45fe672009-12-09 17:18:22 +0000210 for (unsigned Reg = 0; Reg != TRI->getNumRegs(); ++Reg) {
David Goodwine056d102009-10-26 22:31:16 +0000211 // If Reg is current live, then mark that it can't be renamed as
212 // we don't know the extent of its live-range anymore (now that it
213 // has been scheduled). If it is not live but was defined in the
214 // previous schedule region, then set its def index to the most
215 // conservative location (i.e. the beginning of the previous
216 // schedule region).
217 if (State->IsLive(Reg)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000218 LLVM_DEBUG(if (State->GetGroup(Reg) != 0) dbgs()
219 << " " << printReg(Reg, TRI) << "=g" << State->GetGroup(Reg)
220 << "->g0(region live-out)");
David Goodwine056d102009-10-26 22:31:16 +0000221 State->UnionGroups(Reg, 0);
Jim Grosbacheb431da2010-01-06 16:48:02 +0000222 } else if ((DefIndices[Reg] < InsertPosIndex)
223 && (DefIndices[Reg] >= Count)) {
David Goodwine056d102009-10-26 22:31:16 +0000224 DefIndices[Reg] = Count;
225 }
226 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000227 LLVM_DEBUG(dbgs() << '\n');
David Goodwine056d102009-10-26 22:31:16 +0000228}
229
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000230bool AggressiveAntiDepBreaker::IsImplicitDefUse(MachineInstr &MI,
231 MachineOperand &MO) {
David Goodwinde11f362009-10-26 19:32:42 +0000232 if (!MO.isReg() || !MO.isImplicit())
233 return false;
234
235 unsigned Reg = MO.getReg();
236 if (Reg == 0)
237 return false;
238
Chad Rosier47eba052015-10-09 19:48:48 +0000239 MachineOperand *Op = nullptr;
240 if (MO.isDef())
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000241 Op = MI.findRegisterUseOperand(Reg, true);
Chad Rosier47eba052015-10-09 19:48:48 +0000242 else
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000243 Op = MI.findRegisterDefOperand(Reg);
Chad Rosier47eba052015-10-09 19:48:48 +0000244
Craig Topperc0196b12014-04-14 00:51:57 +0000245 return(Op && Op->isImplicit());
David Goodwinde11f362009-10-26 19:32:42 +0000246}
247
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000248void AggressiveAntiDepBreaker::GetPassthruRegs(
249 MachineInstr &MI, std::set<unsigned> &PassthruRegs) {
250 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
251 MachineOperand &MO = MI.getOperand(i);
David Goodwinde11f362009-10-26 19:32:42 +0000252 if (!MO.isReg()) continue;
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000253 if ((MO.isDef() && MI.isRegTiedToUseOperand(i)) ||
David Goodwinde11f362009-10-26 19:32:42 +0000254 IsImplicitDefUse(MI, MO)) {
255 const unsigned Reg = MO.getReg();
Chad Rosierabdb1d62013-05-22 23:17:36 +0000256 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
257 SubRegs.isValid(); ++SubRegs)
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000258 PassthruRegs.insert(*SubRegs);
David Goodwinde11f362009-10-26 19:32:42 +0000259 }
260 }
261}
262
David Goodwin80a03cc2009-11-20 19:32:48 +0000263/// AntiDepEdges - Return in Edges the anti- and output- dependencies
264/// in SU that we want to consider for breaking.
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +0000265static void AntiDepEdges(const SUnit *SU, std::vector<const SDep *> &Edges) {
David Goodwin80a03cc2009-11-20 19:32:48 +0000266 SmallSet<unsigned, 4> RegSet;
Dan Gohman35bc4d42010-04-19 23:11:58 +0000267 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
David Goodwinde11f362009-10-26 19:32:42 +0000268 P != PE; ++P) {
David Goodwinda83f7d2009-11-12 19:08:21 +0000269 if ((P->getKind() == SDep::Anti) || (P->getKind() == SDep::Output)) {
David Blaikie70573dc2014-11-19 07:49:26 +0000270 if (RegSet.insert(P->getReg()).second)
David Goodwinde11f362009-10-26 19:32:42 +0000271 Edges.push_back(&*P);
David Goodwinde11f362009-10-26 19:32:42 +0000272 }
273 }
274}
275
David Goodwinb9fe5d52009-11-13 19:52:48 +0000276/// CriticalPathStep - Return the next SUnit after SU on the bottom-up
277/// critical path.
Dan Gohman35bc4d42010-04-19 23:11:58 +0000278static const SUnit *CriticalPathStep(const SUnit *SU) {
Craig Topperc0196b12014-04-14 00:51:57 +0000279 const SDep *Next = nullptr;
David Goodwinb9fe5d52009-11-13 19:52:48 +0000280 unsigned NextDepth = 0;
281 // Find the predecessor edge with the greatest depth.
Craig Topperc0196b12014-04-14 00:51:57 +0000282 if (SU) {
Dan Gohman35bc4d42010-04-19 23:11:58 +0000283 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
David Goodwinb9fe5d52009-11-13 19:52:48 +0000284 P != PE; ++P) {
Dan Gohman35bc4d42010-04-19 23:11:58 +0000285 const SUnit *PredSU = P->getSUnit();
David Goodwinb9fe5d52009-11-13 19:52:48 +0000286 unsigned PredLatency = P->getLatency();
287 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
288 // In the case of a latency tie, prefer an anti-dependency edge over
289 // other types of edges.
290 if (NextDepth < PredTotalLatency ||
291 (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) {
292 NextDepth = PredTotalLatency;
293 Next = &*P;
294 }
295 }
296 }
297
Craig Topperc0196b12014-04-14 00:51:57 +0000298 return (Next) ? Next->getSUnit() : nullptr;
David Goodwinb9fe5d52009-11-13 19:52:48 +0000299}
300
David Goodwin9f1b2d42009-10-29 19:17:04 +0000301void AggressiveAntiDepBreaker::HandleLastUse(unsigned Reg, unsigned KillIdx,
Jim Grosbacheb431da2010-01-06 16:48:02 +0000302 const char *tag,
303 const char *header,
David Goodwindd1c6192009-11-19 23:12:37 +0000304 const char *footer) {
Bill Wendling030b0282010-07-15 18:43:09 +0000305 std::vector<unsigned> &KillIndices = State->GetKillIndices();
306 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbacheb431da2010-01-06 16:48:02 +0000307 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwin9f1b2d42009-10-29 19:17:04 +0000308 RegRefs = State->GetRegRefs();
309
Hal Finkel34c94d52015-01-28 14:44:14 +0000310 // FIXME: We must leave subregisters of live super registers as live, so that
311 // we don't clear out the register tracking information for subregisters of
312 // super registers we're still tracking (and with which we're unioning
313 // subregister definitions).
314 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
315 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000316 LLVM_DEBUG(if (!header && footer) dbgs() << footer);
Hal Finkel34c94d52015-01-28 14:44:14 +0000317 return;
318 }
319
David Goodwin9f1b2d42009-10-29 19:17:04 +0000320 if (!State->IsLive(Reg)) {
321 KillIndices[Reg] = KillIdx;
322 DefIndices[Reg] = ~0u;
323 RegRefs.erase(Reg);
324 State->LeaveGroup(Reg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000325 LLVM_DEBUG(if (header) {
326 dbgs() << header << printReg(Reg, TRI);
327 header = nullptr;
328 });
329 LLVM_DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << tag);
Chuang-Yu Cheng35c61812016-04-01 02:05:29 +0000330 // Repeat for subregisters. Note that we only do this if the superregister
331 // was not live because otherwise, regardless whether we have an explicit
332 // use of the subregister, the subregister's contents are needed for the
333 // uses of the superregister.
334 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
335 unsigned SubregReg = *SubRegs;
336 if (!State->IsLive(SubregReg)) {
337 KillIndices[SubregReg] = KillIdx;
338 DefIndices[SubregReg] = ~0u;
339 RegRefs.erase(SubregReg);
340 State->LeaveGroup(SubregReg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000341 LLVM_DEBUG(if (header) {
342 dbgs() << header << printReg(Reg, TRI);
343 header = nullptr;
344 });
345 LLVM_DEBUG(dbgs() << " " << printReg(SubregReg, TRI) << "->g"
346 << State->GetGroup(SubregReg) << tag);
Chuang-Yu Cheng35c61812016-04-01 02:05:29 +0000347 }
David Goodwin9f1b2d42009-10-29 19:17:04 +0000348 }
349 }
David Goodwindd1c6192009-11-19 23:12:37 +0000350
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000351 LLVM_DEBUG(if (!header && footer) dbgs() << footer);
David Goodwin9f1b2d42009-10-29 19:17:04 +0000352}
353
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000354void AggressiveAntiDepBreaker::PrescanInstruction(
355 MachineInstr &MI, unsigned Count, std::set<unsigned> &PassthruRegs) {
Bill Wendling030b0282010-07-15 18:43:09 +0000356 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbacheb431da2010-01-06 16:48:02 +0000357 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine056d102009-10-26 22:31:16 +0000358 RegRefs = State->GetRegRefs();
359
David Goodwin9f1b2d42009-10-29 19:17:04 +0000360 // Handle dead defs by simulating a last-use of the register just
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000361 // after the def. A dead def can occur because the def is truly
David Goodwin9f1b2d42009-10-29 19:17:04 +0000362 // dead, or because only a subregister is live at the def. If we
363 // don't do this the dead def will be incorrectly merged into the
364 // previous def.
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000365 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
366 MachineOperand &MO = MI.getOperand(i);
David Goodwinde11f362009-10-26 19:32:42 +0000367 if (!MO.isReg() || !MO.isDef()) continue;
368 unsigned Reg = MO.getReg();
369 if (Reg == 0) continue;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000370
David Goodwindd1c6192009-11-19 23:12:37 +0000371 HandleLastUse(Reg, Count + 1, "", "\tDead Def: ", "\n");
David Goodwinde11f362009-10-26 19:32:42 +0000372 }
373
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000374 LLVM_DEBUG(dbgs() << "\tDef Groups:");
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000375 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
376 MachineOperand &MO = MI.getOperand(i);
David Goodwinde11f362009-10-26 19:32:42 +0000377 if (!MO.isReg() || !MO.isDef()) continue;
378 unsigned Reg = MO.getReg();
379 if (Reg == 0) continue;
380
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000381 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI) << "=g"
382 << State->GetGroup(Reg));
David Goodwinde11f362009-10-26 19:32:42 +0000383
David Goodwin9f1b2d42009-10-29 19:17:04 +0000384 // If MI's defs have a special allocation requirement, don't allow
David Goodwinde11f362009-10-26 19:32:42 +0000385 // any def registers to be changed. Also assume all registers
Kyle Buttcf6a8bf2015-12-02 18:58:51 +0000386 // defined in a call must not be changed (ABI). Inline assembly may
387 // reference either system calls or the register directly. Skip it until we
388 // can tell user specified registers from compiler-specified.
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000389 if (MI.isCall() || MI.hasExtraDefRegAllocReq() || TII->isPredicated(MI) ||
390 MI.isInlineAsm()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000391 LLVM_DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)");
David Goodwine056d102009-10-26 22:31:16 +0000392 State->UnionGroups(Reg, 0);
David Goodwinde11f362009-10-26 19:32:42 +0000393 }
394
395 // Any aliased that are live at this point are completely or
David Goodwin9f1b2d42009-10-29 19:17:04 +0000396 // partially defined here, so group those aliases with Reg.
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000397 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) {
398 unsigned AliasReg = *AI;
David Goodwine056d102009-10-26 22:31:16 +0000399 if (State->IsLive(AliasReg)) {
400 State->UnionGroups(Reg, AliasReg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000401 LLVM_DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << "(via "
402 << printReg(AliasReg, TRI) << ")");
David Goodwinde11f362009-10-26 19:32:42 +0000403 }
404 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000405
David Goodwinde11f362009-10-26 19:32:42 +0000406 // Note register reference...
Craig Topperc0196b12014-04-14 00:51:57 +0000407 const TargetRegisterClass *RC = nullptr;
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000408 if (i < MI.getDesc().getNumOperands())
409 RC = TII->getRegClass(MI.getDesc(), i, TRI, MF);
David Goodwine056d102009-10-26 22:31:16 +0000410 AggressiveAntiDepState::RegisterReference RR = { &MO, RC };
David Goodwinde11f362009-10-26 19:32:42 +0000411 RegRefs.insert(std::make_pair(Reg, RR));
412 }
413
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000414 LLVM_DEBUG(dbgs() << '\n');
David Goodwin9f1b2d42009-10-29 19:17:04 +0000415
416 // Scan the register defs for this instruction and update
417 // live-ranges.
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000418 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
419 MachineOperand &MO = MI.getOperand(i);
David Goodwin9f1b2d42009-10-29 19:17:04 +0000420 if (!MO.isReg() || !MO.isDef()) continue;
421 unsigned Reg = MO.getReg();
422 if (Reg == 0) continue;
David Goodwindd1c6192009-11-19 23:12:37 +0000423 // Ignore KILLs and passthru registers for liveness...
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000424 if (MI.isKill() || (PassthruRegs.count(Reg) != 0))
David Goodwindd1c6192009-11-19 23:12:37 +0000425 continue;
David Goodwin9f1b2d42009-10-29 19:17:04 +0000426
David Goodwindd1c6192009-11-19 23:12:37 +0000427 // Update def for Reg and aliases.
Hal Finkel121caf62014-02-26 20:20:30 +0000428 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {
429 // We need to be careful here not to define already-live super registers.
430 // If the super register is already live, then this definition is not
431 // a definition of the whole super register (just a partial insertion
432 // into it). Earlier subregister definitions (which we've not yet visited
433 // because we're iterating bottom-up) need to be linked to the same group
434 // as this definition.
435 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI))
436 continue;
437
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000438 DefIndices[*AI] = Count;
Hal Finkel121caf62014-02-26 20:20:30 +0000439 }
David Goodwin9f1b2d42009-10-29 19:17:04 +0000440 }
David Goodwinde11f362009-10-26 19:32:42 +0000441}
442
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000443void AggressiveAntiDepBreaker::ScanInstruction(MachineInstr &MI,
Bob Wilson67dd3a42010-04-09 21:38:26 +0000444 unsigned Count) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000445 LLVM_DEBUG(dbgs() << "\tUse Groups:");
Jim Grosbacheb431da2010-01-06 16:48:02 +0000446 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine056d102009-10-26 22:31:16 +0000447 RegRefs = State->GetRegRefs();
David Goodwinde11f362009-10-26 19:32:42 +0000448
Evan Chengf128bdc2010-06-16 07:35:02 +0000449 // If MI's uses have special allocation requirement, don't allow
450 // any use registers to be changed. Also assume all registers
451 // used in a call must not be changed (ABI).
Kyle Buttcf6a8bf2015-12-02 18:58:51 +0000452 // Inline Assembly register uses also cannot be safely changed.
Evan Chengf128bdc2010-06-16 07:35:02 +0000453 // FIXME: The issue with predicated instruction is more complex. We are being
454 // conservatively here because the kill markers cannot be trusted after
455 // if-conversion:
Francis Visoiu Mistrih7d9bef82018-01-09 17:31:07 +0000456 // %r6 = LDR %sp, %reg0, 92, 14, %reg0; mem:LD4[FixedStack14]
Evan Chengf128bdc2010-06-16 07:35:02 +0000457 // ...
Francis Visoiu Mistrih7d9bef82018-01-09 17:31:07 +0000458 // STR %r0, killed %r6, %reg0, 0, 0, %cpsr; mem:ST4[%395]
459 // %r6 = LDR %sp, %reg0, 100, 0, %cpsr; mem:LD4[FixedStack12]
460 // STR %r0, killed %r6, %reg0, 0, 14, %reg0; mem:ST4[%396](align=8)
Evan Chengf128bdc2010-06-16 07:35:02 +0000461 //
462 // The first R6 kill is not really a kill since it's killed by a predicated
463 // instruction which may not be executed. The second R6 def may or may not
464 // re-define R6 so it's not safe to change it since the last R6 use cannot be
465 // changed.
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000466 bool Special = MI.isCall() || MI.hasExtraSrcRegAllocReq() ||
467 TII->isPredicated(MI) || MI.isInlineAsm();
Evan Chengf128bdc2010-06-16 07:35:02 +0000468
David Goodwinde11f362009-10-26 19:32:42 +0000469 // Scan the register uses for this instruction and update
470 // live-ranges, groups and RegRefs.
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000471 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
472 MachineOperand &MO = MI.getOperand(i);
David Goodwinde11f362009-10-26 19:32:42 +0000473 if (!MO.isReg() || !MO.isUse()) continue;
474 unsigned Reg = MO.getReg();
475 if (Reg == 0) continue;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000476
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000477 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI) << "=g"
478 << State->GetGroup(Reg));
David Goodwinde11f362009-10-26 19:32:42 +0000479
480 // It wasn't previously live but now it is, this is a kill. Forget
481 // the previous live-range information and start a new live-range
482 // for the register.
David Goodwin9f1b2d42009-10-29 19:17:04 +0000483 HandleLastUse(Reg, Count, "(last-use)");
David Goodwinde11f362009-10-26 19:32:42 +0000484
Evan Chengf128bdc2010-06-16 07:35:02 +0000485 if (Special) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000486 LLVM_DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)");
David Goodwine056d102009-10-26 22:31:16 +0000487 State->UnionGroups(Reg, 0);
David Goodwinde11f362009-10-26 19:32:42 +0000488 }
489
490 // Note register reference...
Craig Topperc0196b12014-04-14 00:51:57 +0000491 const TargetRegisterClass *RC = nullptr;
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000492 if (i < MI.getDesc().getNumOperands())
493 RC = TII->getRegClass(MI.getDesc(), i, TRI, MF);
David Goodwine056d102009-10-26 22:31:16 +0000494 AggressiveAntiDepState::RegisterReference RR = { &MO, RC };
David Goodwinde11f362009-10-26 19:32:42 +0000495 RegRefs.insert(std::make_pair(Reg, RR));
496 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000497
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000498 LLVM_DEBUG(dbgs() << '\n');
David Goodwinde11f362009-10-26 19:32:42 +0000499
500 // Form a group of all defs and uses of a KILL instruction to ensure
501 // that all registers are renamed as a group.
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000502 if (MI.isKill()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000503 LLVM_DEBUG(dbgs() << "\tKill Group:");
David Goodwinde11f362009-10-26 19:32:42 +0000504
505 unsigned FirstReg = 0;
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000506 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
507 MachineOperand &MO = MI.getOperand(i);
David Goodwinde11f362009-10-26 19:32:42 +0000508 if (!MO.isReg()) continue;
509 unsigned Reg = MO.getReg();
510 if (Reg == 0) continue;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000511
David Goodwinde11f362009-10-26 19:32:42 +0000512 if (FirstReg != 0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000513 LLVM_DEBUG(dbgs() << "=" << printReg(Reg, TRI));
David Goodwine056d102009-10-26 22:31:16 +0000514 State->UnionGroups(FirstReg, Reg);
David Goodwinde11f362009-10-26 19:32:42 +0000515 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000516 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI));
David Goodwinde11f362009-10-26 19:32:42 +0000517 FirstReg = Reg;
518 }
519 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000520
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000521 LLVM_DEBUG(dbgs() << "->g" << State->GetGroup(FirstReg) << '\n');
David Goodwinde11f362009-10-26 19:32:42 +0000522 }
523}
524
525BitVector AggressiveAntiDepBreaker::GetRenameRegisters(unsigned Reg) {
526 BitVector BV(TRI->getNumRegs(), false);
527 bool first = true;
528
529 // Check all references that need rewriting for Reg. For each, use
530 // the corresponding register class to narrow the set of registers
531 // that are appropriate for renaming.
Benjamin Kramerc9436ad2015-07-18 20:05:10 +0000532 for (const auto &Q : make_range(State->GetRegRefs().equal_range(Reg))) {
533 const TargetRegisterClass *RC = Q.second.RC;
Craig Topperc0196b12014-04-14 00:51:57 +0000534 if (!RC) continue;
David Goodwinde11f362009-10-26 19:32:42 +0000535
536 BitVector RCBV = TRI->getAllocatableSet(MF, RC);
537 if (first) {
538 BV |= RCBV;
539 first = false;
540 } else {
541 BV &= RCBV;
542 }
543
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000544 LLVM_DEBUG(dbgs() << " " << TRI->getRegClassName(RC));
David Goodwinde11f362009-10-26 19:32:42 +0000545 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000546
David Goodwinde11f362009-10-26 19:32:42 +0000547 return BV;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000548}
David Goodwinde11f362009-10-26 19:32:42 +0000549
550bool AggressiveAntiDepBreaker::FindSuitableFreeRegisters(
David Goodwin7d8878a2009-11-05 01:19:35 +0000551 unsigned AntiDepGroupIndex,
552 RenameOrderType& RenameOrder,
553 std::map<unsigned, unsigned> &RenameMap) {
Bill Wendling030b0282010-07-15 18:43:09 +0000554 std::vector<unsigned> &KillIndices = State->GetKillIndices();
555 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbacheb431da2010-01-06 16:48:02 +0000556 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine056d102009-10-26 22:31:16 +0000557 RegRefs = State->GetRegRefs();
558
David Goodwinb9fe5d52009-11-13 19:52:48 +0000559 // Collect all referenced registers in the same group as
560 // AntiDepReg. These all need to be renamed together if we are to
561 // break the anti-dependence.
David Goodwinde11f362009-10-26 19:32:42 +0000562 std::vector<unsigned> Regs;
David Goodwinb9fe5d52009-11-13 19:52:48 +0000563 State->GetGroupRegs(AntiDepGroupIndex, Regs, &RegRefs);
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +0000564 assert(!Regs.empty() && "Empty register group!");
565 if (Regs.empty())
David Goodwinde11f362009-10-26 19:32:42 +0000566 return false;
567
568 // Find the "superest" register in the group. At the same time,
569 // collect the BitVector of registers that can be used to rename
570 // each register.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000571 LLVM_DEBUG(dbgs() << "\tRename Candidates for Group g" << AntiDepGroupIndex
572 << ":\n");
David Goodwinde11f362009-10-26 19:32:42 +0000573 std::map<unsigned, BitVector> RenameRegisterMap;
574 unsigned SuperReg = 0;
575 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
576 unsigned Reg = Regs[i];
577 if ((SuperReg == 0) || TRI->isSuperRegister(SuperReg, Reg))
578 SuperReg = Reg;
579
580 // If Reg has any references, then collect possible rename regs
581 if (RegRefs.count(Reg) > 0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000582 LLVM_DEBUG(dbgs() << "\t\t" << printReg(Reg, TRI) << ":");
Jim Grosbacheb431da2010-01-06 16:48:02 +0000583
Benjamin Kramer7f75e942016-02-13 16:39:39 +0000584 BitVector &BV = RenameRegisterMap[Reg];
585 assert(BV.empty());
586 BV = GetRenameRegisters(Reg);
David Goodwinde11f362009-10-26 19:32:42 +0000587
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000588 LLVM_DEBUG({
Benjamin Kramer7f75e942016-02-13 16:39:39 +0000589 dbgs() << " ::";
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +0000590 for (unsigned r : BV.set_bits())
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000591 dbgs() << " " << printReg(r, TRI);
Benjamin Kramer7f75e942016-02-13 16:39:39 +0000592 dbgs() << "\n";
593 });
David Goodwinde11f362009-10-26 19:32:42 +0000594 }
595 }
596
597 // All group registers should be a subreg of SuperReg.
598 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
599 unsigned Reg = Regs[i];
600 if (Reg == SuperReg) continue;
601 bool IsSub = TRI->isSubRegister(SuperReg, Reg);
Will Schmidt44ff8f02014-07-31 19:50:53 +0000602 // FIXME: remove this once PR18663 has been properly fixed. For now,
603 // return a conservative answer:
604 // assert(IsSub && "Expecting group subregister");
David Goodwinde11f362009-10-26 19:32:42 +0000605 if (!IsSub)
606 return false;
607 }
608
David Goodwin5305dc02009-11-20 23:33:54 +0000609#ifndef NDEBUG
610 // If DebugDiv > 0 then only rename (renamecnt % DebugDiv) == DebugMod
611 if (DebugDiv > 0) {
612 static int renamecnt = 0;
613 if (renamecnt++ % DebugDiv != DebugMod)
614 return false;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000615
Francis Visoiu Mistrihc71cced2017-11-30 16:12:24 +0000616 dbgs() << "*** Performing rename " << printReg(SuperReg, TRI)
617 << " for debug ***\n";
David Goodwin5305dc02009-11-20 23:33:54 +0000618 }
619#endif
620
David Goodwin7d8878a2009-11-05 01:19:35 +0000621 // Check each possible rename register for SuperReg in round-robin
622 // order. If that register is available, and the corresponding
623 // registers are available for the other group subregisters, then we
624 // can use those registers to rename.
Rafael Espindola871c7242010-07-12 02:55:34 +0000625
626 // FIXME: Using getMinimalPhysRegClass is very conservative. We should
627 // check every use of the register and find the largest register class
628 // that can be used in all of them.
Jim Grosbacheb431da2010-01-06 16:48:02 +0000629 const TargetRegisterClass *SuperRC =
Rafael Espindola871c7242010-07-12 02:55:34 +0000630 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
Jim Grosbacheb431da2010-01-06 16:48:02 +0000631
Jakob Stoklund Olesenbdb55e02012-11-29 03:34:17 +0000632 ArrayRef<MCPhysReg> Order = RegClassInfo.getOrder(SuperRC);
Jakob Stoklund Olesen4f5f84c2011-06-16 21:56:21 +0000633 if (Order.empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000634 LLVM_DEBUG(dbgs() << "\tEmpty Super Regclass!!\n");
David Goodwin7d8878a2009-11-05 01:19:35 +0000635 return false;
636 }
637
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000638 LLVM_DEBUG(dbgs() << "\tFind Registers:");
David Goodwindd1c6192009-11-19 23:12:37 +0000639
Benjamin Kramer2c99e412014-10-10 15:32:50 +0000640 RenameOrder.insert(RenameOrderType::value_type(SuperRC, Order.size()));
David Goodwin7d8878a2009-11-05 01:19:35 +0000641
Jakob Stoklund Olesen4f5f84c2011-06-16 21:56:21 +0000642 unsigned OrigR = RenameOrder[SuperRC];
643 unsigned EndR = ((OrigR == Order.size()) ? 0 : OrigR);
644 unsigned R = OrigR;
David Goodwin7d8878a2009-11-05 01:19:35 +0000645 do {
Jakob Stoklund Olesen4f5f84c2011-06-16 21:56:21 +0000646 if (R == 0) R = Order.size();
David Goodwin7d8878a2009-11-05 01:19:35 +0000647 --R;
Jakob Stoklund Olesen4f5f84c2011-06-16 21:56:21 +0000648 const unsigned NewSuperReg = Order[R];
Jim Grosbach944aece2010-09-02 17:12:55 +0000649 // Don't consider non-allocatable registers
Jakob Stoklund Olesenf67bf3e2012-10-15 22:41:03 +0000650 if (!MRI.isAllocatable(NewSuperReg)) continue;
David Goodwinde11f362009-10-26 19:32:42 +0000651 // Don't replace a register with itself.
David Goodwin5305dc02009-11-20 23:33:54 +0000652 if (NewSuperReg == SuperReg) continue;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000653
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000654 LLVM_DEBUG(dbgs() << " [" << printReg(NewSuperReg, TRI) << ':');
David Goodwin5305dc02009-11-20 23:33:54 +0000655 RenameMap.clear();
656
657 // For each referenced group register (which must be a SuperReg or
658 // a subregister of SuperReg), find the corresponding subregister
659 // of NewSuperReg and make sure it is free to be renamed.
660 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
661 unsigned Reg = Regs[i];
662 unsigned NewReg = 0;
663 if (Reg == SuperReg) {
664 NewReg = NewSuperReg;
665 } else {
666 unsigned NewSubRegIdx = TRI->getSubRegIndex(SuperReg, Reg);
667 if (NewSubRegIdx != 0)
668 NewReg = TRI->getSubReg(NewSuperReg, NewSubRegIdx);
David Goodwinde11f362009-10-26 19:32:42 +0000669 }
David Goodwin5305dc02009-11-20 23:33:54 +0000670
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000671 LLVM_DEBUG(dbgs() << " " << printReg(NewReg, TRI));
Jim Grosbacheb431da2010-01-06 16:48:02 +0000672
David Goodwin5305dc02009-11-20 23:33:54 +0000673 // Check if Reg can be renamed to NewReg.
Benjamin Kramer7f75e942016-02-13 16:39:39 +0000674 if (!RenameRegisterMap[Reg].test(NewReg)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000675 LLVM_DEBUG(dbgs() << "(no rename)");
David Goodwin5305dc02009-11-20 23:33:54 +0000676 goto next_super_reg;
677 }
678
679 // If NewReg is dead and NewReg's most recent def is not before
680 // Regs's kill, it's safe to replace Reg with NewReg. We
681 // must also check all aliases of NewReg, because we can't define a
682 // register when any sub or super is already live.
683 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000684 LLVM_DEBUG(dbgs() << "(live)");
David Goodwin5305dc02009-11-20 23:33:54 +0000685 goto next_super_reg;
686 } else {
687 bool found = false;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000688 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) {
689 unsigned AliasReg = *AI;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000690 if (State->IsLive(AliasReg) ||
691 (KillIndices[Reg] > DefIndices[AliasReg])) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000692 LLVM_DEBUG(dbgs()
693 << "(alias " << printReg(AliasReg, TRI) << " live)");
David Goodwin5305dc02009-11-20 23:33:54 +0000694 found = true;
695 break;
696 }
697 }
698 if (found)
699 goto next_super_reg;
700 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000701
Hal Finkelc8cf2b82014-12-09 01:00:59 +0000702 // We cannot rename 'Reg' to 'NewReg' if one of the uses of 'Reg' also
703 // defines 'NewReg' via an early-clobber operand.
Benjamin Kramerc9436ad2015-07-18 20:05:10 +0000704 for (const auto &Q : make_range(RegRefs.equal_range(Reg))) {
705 MachineInstr *UseMI = Q.second.Operand->getParent();
Hal Finkelc8cf2b82014-12-09 01:00:59 +0000706 int Idx = UseMI->findRegisterDefOperandIdx(NewReg, false, true, TRI);
707 if (Idx == -1)
708 continue;
709
710 if (UseMI->getOperand(Idx).isEarlyClobber()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000711 LLVM_DEBUG(dbgs() << "(ec)");
Hal Finkelc8cf2b82014-12-09 01:00:59 +0000712 goto next_super_reg;
713 }
714 }
715
Hal Finkele0a28e52015-08-31 07:51:36 +0000716 // Also, we cannot rename 'Reg' to 'NewReg' if the instruction defining
717 // 'Reg' is an early-clobber define and that instruction also uses
718 // 'NewReg'.
719 for (const auto &Q : make_range(RegRefs.equal_range(Reg))) {
720 if (!Q.second.Operand->isDef() || !Q.second.Operand->isEarlyClobber())
721 continue;
722
723 MachineInstr *DefMI = Q.second.Operand->getParent();
724 if (DefMI->readsRegister(NewReg, TRI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000725 LLVM_DEBUG(dbgs() << "(ec)");
Hal Finkele0a28e52015-08-31 07:51:36 +0000726 goto next_super_reg;
727 }
728 }
729
David Goodwin5305dc02009-11-20 23:33:54 +0000730 // Record that 'Reg' can be renamed to 'NewReg'.
731 RenameMap.insert(std::pair<unsigned, unsigned>(Reg, NewReg));
David Goodwinde11f362009-10-26 19:32:42 +0000732 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000733
David Goodwin5305dc02009-11-20 23:33:54 +0000734 // If we fall-out here, then every register in the group can be
735 // renamed, as recorded in RenameMap.
736 RenameOrder.erase(SuperRC);
737 RenameOrder.insert(RenameOrderType::value_type(SuperRC, R));
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000738 LLVM_DEBUG(dbgs() << "]\n");
David Goodwin5305dc02009-11-20 23:33:54 +0000739 return true;
740
741 next_super_reg:
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000742 LLVM_DEBUG(dbgs() << ']');
David Goodwin7d8878a2009-11-05 01:19:35 +0000743 } while (R != EndR);
David Goodwinde11f362009-10-26 19:32:42 +0000744
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000745 LLVM_DEBUG(dbgs() << '\n');
David Goodwinde11f362009-10-26 19:32:42 +0000746
747 // No registers are free and available!
748 return false;
749}
750
751/// BreakAntiDependencies - Identifiy anti-dependencies within the
752/// ScheduleDAG and break them by renaming registers.
David Goodwine056d102009-10-26 22:31:16 +0000753unsigned AggressiveAntiDepBreaker::BreakAntiDependencies(
Eugene Zelenko4f81cdd2017-09-29 21:55:49 +0000754 const std::vector<SUnit> &SUnits,
Dan Gohman35bc4d42010-04-19 23:11:58 +0000755 MachineBasicBlock::iterator Begin,
756 MachineBasicBlock::iterator End,
Devang Patelf02a3762011-06-02 21:26:52 +0000757 unsigned InsertPosIndex,
758 DbgValueVector &DbgValues) {
Bill Wendling030b0282010-07-15 18:43:09 +0000759 std::vector<unsigned> &KillIndices = State->GetKillIndices();
760 std::vector<unsigned> &DefIndices = State->GetDefIndices();
Jim Grosbacheb431da2010-01-06 16:48:02 +0000761 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine056d102009-10-26 22:31:16 +0000762 RegRefs = State->GetRegRefs();
763
David Goodwinde11f362009-10-26 19:32:42 +0000764 // The code below assumes that there is at least one instruction,
765 // so just duck out immediately if the block is empty.
David Goodwin8501dbbe2009-11-03 20:57:50 +0000766 if (SUnits.empty()) return 0;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000767
David Goodwin7d8878a2009-11-05 01:19:35 +0000768 // For each regclass the next register to use for renaming.
769 RenameOrderType RenameOrder;
David Goodwinde11f362009-10-26 19:32:42 +0000770
771 // ...need a map from MI to SUnit.
Dan Gohman35bc4d42010-04-19 23:11:58 +0000772 std::map<MachineInstr *, const SUnit *> MISUnitMap;
David Goodwinde11f362009-10-26 19:32:42 +0000773 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
Dan Gohman35bc4d42010-04-19 23:11:58 +0000774 const SUnit *SU = &SUnits[i];
775 MISUnitMap.insert(std::pair<MachineInstr *, const SUnit *>(SU->getInstr(),
776 SU));
David Goodwinde11f362009-10-26 19:32:42 +0000777 }
778
David Goodwinb9fe5d52009-11-13 19:52:48 +0000779 // Track progress along the critical path through the SUnit graph as
780 // we walk the instructions. This is needed for regclasses that only
781 // break critical-path anti-dependencies.
Craig Topperc0196b12014-04-14 00:51:57 +0000782 const SUnit *CriticalPathSU = nullptr;
783 MachineInstr *CriticalPathMI = nullptr;
David Goodwinb9fe5d52009-11-13 19:52:48 +0000784 if (CriticalPathSet.any()) {
785 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
Dan Gohman35bc4d42010-04-19 23:11:58 +0000786 const SUnit *SU = &SUnits[i];
Jim Grosbacheb431da2010-01-06 16:48:02 +0000787 if (!CriticalPathSU ||
788 ((SU->getDepth() + SU->Latency) >
David Goodwinb9fe5d52009-11-13 19:52:48 +0000789 (CriticalPathSU->getDepth() + CriticalPathSU->Latency))) {
790 CriticalPathSU = SU;
791 }
792 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000793
David Goodwinb9fe5d52009-11-13 19:52:48 +0000794 CriticalPathMI = CriticalPathSU->getInstr();
795 }
796
Jim Grosbacheb431da2010-01-06 16:48:02 +0000797#ifndef NDEBUG
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000798 LLVM_DEBUG(dbgs() << "\n===== Aggressive anti-dependency breaking\n");
799 LLVM_DEBUG(dbgs() << "Available regs:");
David Goodwin80a03cc2009-11-20 19:32:48 +0000800 for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) {
801 if (!State->IsLive(Reg))
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000802 LLVM_DEBUG(dbgs() << " " << printReg(Reg, TRI));
David Goodwinde11f362009-10-26 19:32:42 +0000803 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000804 LLVM_DEBUG(dbgs() << '\n');
David Goodwinde11f362009-10-26 19:32:42 +0000805#endif
806
Krzysztof Parzyszek143f6842016-05-26 18:22:53 +0000807 BitVector RegAliases(TRI->getNumRegs());
808
David Goodwinde11f362009-10-26 19:32:42 +0000809 // Attempt to break anti-dependence edges. Walk the instructions
810 // from the bottom up, tracking information about liveness as we go
811 // to help determine which registers are available.
812 unsigned Broken = 0;
813 unsigned Count = InsertPosIndex - 1;
814 for (MachineBasicBlock::iterator I = End, E = Begin;
815 I != E; --Count) {
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000816 MachineInstr &MI = *--I;
David Goodwinde11f362009-10-26 19:32:42 +0000817
Shiva Chen801bf7e2018-05-09 02:42:00 +0000818 if (MI.isDebugInstr())
Hal Finkel8606e3c2012-01-16 22:53:41 +0000819 continue;
820
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000821 LLVM_DEBUG(dbgs() << "Anti: ");
822 LLVM_DEBUG(MI.dump());
David Goodwinde11f362009-10-26 19:32:42 +0000823
824 std::set<unsigned> PassthruRegs;
825 GetPassthruRegs(MI, PassthruRegs);
826
827 // Process the defs in MI...
828 PrescanInstruction(MI, Count, PassthruRegs);
Jim Grosbacheb431da2010-01-06 16:48:02 +0000829
David Goodwin80a03cc2009-11-20 19:32:48 +0000830 // The dependence edges that represent anti- and output-
David Goodwinb9fe5d52009-11-13 19:52:48 +0000831 // dependencies that are candidates for breaking.
Dan Gohman35bc4d42010-04-19 23:11:58 +0000832 std::vector<const SDep *> Edges;
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000833 const SUnit *PathSU = MISUnitMap[&MI];
David Goodwin80a03cc2009-11-20 19:32:48 +0000834 AntiDepEdges(PathSU, Edges);
David Goodwinb9fe5d52009-11-13 19:52:48 +0000835
836 // If MI is not on the critical path, then we don't rename
837 // registers in the CriticalPathSet.
Craig Topperc0196b12014-04-14 00:51:57 +0000838 BitVector *ExcludeRegs = nullptr;
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000839 if (&MI == CriticalPathMI) {
David Goodwinb9fe5d52009-11-13 19:52:48 +0000840 CriticalPathSU = CriticalPathStep(CriticalPathSU);
Craig Topperc0196b12014-04-14 00:51:57 +0000841 CriticalPathMI = (CriticalPathSU) ? CriticalPathSU->getInstr() : nullptr;
Hal Finkel6f1ff8e2013-09-12 04:22:31 +0000842 } else if (CriticalPathSet.any()) {
David Goodwinb9fe5d52009-11-13 19:52:48 +0000843 ExcludeRegs = &CriticalPathSet;
844 }
845
David Goodwinde11f362009-10-26 19:32:42 +0000846 // Ignore KILL instructions (they form a group in ScanInstruction
847 // but don't cause any anti-dependence breaking themselves)
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000848 if (!MI.isKill()) {
David Goodwinde11f362009-10-26 19:32:42 +0000849 // Attempt to break each anti-dependency...
850 for (unsigned i = 0, e = Edges.size(); i != e; ++i) {
Dan Gohman35bc4d42010-04-19 23:11:58 +0000851 const SDep *Edge = Edges[i];
David Goodwinde11f362009-10-26 19:32:42 +0000852 SUnit *NextSU = Edge->getSUnit();
Jim Grosbacheb431da2010-01-06 16:48:02 +0000853
David Goodwinda83f7d2009-11-12 19:08:21 +0000854 if ((Edge->getKind() != SDep::Anti) &&
855 (Edge->getKind() != SDep::Output)) continue;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000856
David Goodwinde11f362009-10-26 19:32:42 +0000857 unsigned AntiDepReg = Edge->getReg();
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000858 LLVM_DEBUG(dbgs() << "\tAntidep reg: " << printReg(AntiDepReg, TRI));
David Goodwinde11f362009-10-26 19:32:42 +0000859 assert(AntiDepReg != 0 && "Anti-dependence on reg0?");
Jim Grosbacheb431da2010-01-06 16:48:02 +0000860
Jakob Stoklund Olesenf67bf3e2012-10-15 22:41:03 +0000861 if (!MRI.isAllocatable(AntiDepReg)) {
David Goodwinde11f362009-10-26 19:32:42 +0000862 // Don't break anti-dependencies on non-allocatable registers.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000863 LLVM_DEBUG(dbgs() << " (non-allocatable)\n");
David Goodwinde11f362009-10-26 19:32:42 +0000864 continue;
Craig Topperc0196b12014-04-14 00:51:57 +0000865 } else if (ExcludeRegs && ExcludeRegs->test(AntiDepReg)) {
David Goodwinb9fe5d52009-11-13 19:52:48 +0000866 // Don't break anti-dependencies for critical path registers
867 // if not on the critical path
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000868 LLVM_DEBUG(dbgs() << " (not critical-path)\n");
David Goodwinb9fe5d52009-11-13 19:52:48 +0000869 continue;
David Goodwinde11f362009-10-26 19:32:42 +0000870 } else if (PassthruRegs.count(AntiDepReg) != 0) {
871 // If the anti-dep register liveness "passes-thru", then
872 // don't try to change it. It will be changed along with
873 // the use if required to break an earlier antidep.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000874 LLVM_DEBUG(dbgs() << " (passthru)\n");
David Goodwinde11f362009-10-26 19:32:42 +0000875 continue;
876 } else {
877 // No anti-dep breaking for implicit deps
Duncan P. N. Exon Smith5e6e8c72016-02-27 19:33:37 +0000878 MachineOperand *AntiDepOp = MI.findRegisterDefOperand(AntiDepReg);
Craig Topperc0196b12014-04-14 00:51:57 +0000879 assert(AntiDepOp && "Can't find index for defined register operand");
880 if (!AntiDepOp || AntiDepOp->isImplicit()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000881 LLVM_DEBUG(dbgs() << " (implicit)\n");
David Goodwinde11f362009-10-26 19:32:42 +0000882 continue;
883 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000884
David Goodwinde11f362009-10-26 19:32:42 +0000885 // If the SUnit has other dependencies on the SUnit that
886 // it anti-depends on, don't bother breaking the
887 // anti-dependency since those edges would prevent such
888 // units from being scheduled past each other
889 // regardless.
David Goodwin80a03cc2009-11-20 19:32:48 +0000890 //
891 // Also, if there are dependencies on other SUnits with the
892 // same register as the anti-dependency, don't attempt to
893 // break it.
Dan Gohman35bc4d42010-04-19 23:11:58 +0000894 for (SUnit::const_pred_iterator P = PathSU->Preds.begin(),
David Goodwinde11f362009-10-26 19:32:42 +0000895 PE = PathSU->Preds.end(); P != PE; ++P) {
David Goodwin80a03cc2009-11-20 19:32:48 +0000896 if (P->getSUnit() == NextSU ?
897 (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) :
898 (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) {
899 AntiDepReg = 0;
900 break;
901 }
902 }
Dan Gohman35bc4d42010-04-19 23:11:58 +0000903 for (SUnit::const_pred_iterator P = PathSU->Preds.begin(),
David Goodwin80a03cc2009-11-20 19:32:48 +0000904 PE = PathSU->Preds.end(); P != PE; ++P) {
905 if ((P->getSUnit() == NextSU) && (P->getKind() != SDep::Anti) &&
906 (P->getKind() != SDep::Output)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000907 LLVM_DEBUG(dbgs() << " (real dependency)\n");
David Goodwinde11f362009-10-26 19:32:42 +0000908 AntiDepReg = 0;
909 break;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000910 } else if ((P->getSUnit() != NextSU) &&
911 (P->getKind() == SDep::Data) &&
David Goodwin80a03cc2009-11-20 19:32:48 +0000912 (P->getReg() == AntiDepReg)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000913 LLVM_DEBUG(dbgs() << " (other dependency)\n");
David Goodwin80a03cc2009-11-20 19:32:48 +0000914 AntiDepReg = 0;
915 break;
David Goodwinde11f362009-10-26 19:32:42 +0000916 }
917 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000918
David Goodwinde11f362009-10-26 19:32:42 +0000919 if (AntiDepReg == 0) continue;
Krzysztof Parzyszek143f6842016-05-26 18:22:53 +0000920
921 // If the definition of the anti-dependency register does not start
922 // a new live range, bail out. This can happen if the anti-dep
923 // register is a sub-register of another register whose live range
924 // spans over PathSU. In such case, PathSU defines only a part of
925 // the larger register.
926 RegAliases.reset();
927 for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI)
928 RegAliases.set(*AI);
929 for (SDep S : PathSU->Succs) {
930 SDep::Kind K = S.getKind();
931 if (K != SDep::Data && K != SDep::Output && K != SDep::Anti)
932 continue;
933 unsigned R = S.getReg();
934 if (!RegAliases[R])
935 continue;
936 if (R == AntiDepReg || TRI->isSubRegister(AntiDepReg, R))
937 continue;
938 AntiDepReg = 0;
939 break;
940 }
941
942 if (AntiDepReg == 0) continue;
David Goodwinde11f362009-10-26 19:32:42 +0000943 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000944
David Goodwinde11f362009-10-26 19:32:42 +0000945 assert(AntiDepReg != 0);
946 if (AntiDepReg == 0) continue;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000947
David Goodwinde11f362009-10-26 19:32:42 +0000948 // Determine AntiDepReg's register group.
David Goodwine056d102009-10-26 22:31:16 +0000949 const unsigned GroupIndex = State->GetGroup(AntiDepReg);
David Goodwinde11f362009-10-26 19:32:42 +0000950 if (GroupIndex == 0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000951 LLVM_DEBUG(dbgs() << " (zero group)\n");
David Goodwinde11f362009-10-26 19:32:42 +0000952 continue;
953 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000954
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000955 LLVM_DEBUG(dbgs() << '\n');
Jim Grosbacheb431da2010-01-06 16:48:02 +0000956
David Goodwinde11f362009-10-26 19:32:42 +0000957 // Look for a suitable register to use to break the anti-dependence.
958 std::map<unsigned, unsigned> RenameMap;
David Goodwin7d8878a2009-11-05 01:19:35 +0000959 if (FindSuitableFreeRegisters(GroupIndex, RenameOrder, RenameMap)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000960 LLVM_DEBUG(dbgs() << "\tBreaking anti-dependence edge on "
961 << printReg(AntiDepReg, TRI) << ":");
Jim Grosbacheb431da2010-01-06 16:48:02 +0000962
David Goodwinde11f362009-10-26 19:32:42 +0000963 // Handle each group register...
964 for (std::map<unsigned, unsigned>::iterator
965 S = RenameMap.begin(), E = RenameMap.end(); S != E; ++S) {
966 unsigned CurrReg = S->first;
967 unsigned NewReg = S->second;
Jim Grosbacheb431da2010-01-06 16:48:02 +0000968
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000969 LLVM_DEBUG(dbgs() << " " << printReg(CurrReg, TRI) << "->"
970 << printReg(NewReg, TRI) << "("
971 << RegRefs.count(CurrReg) << " refs)");
Jim Grosbacheb431da2010-01-06 16:48:02 +0000972
David Goodwinde11f362009-10-26 19:32:42 +0000973 // Update the references to the old register CurrReg to
974 // refer to the new register NewReg.
Benjamin Kramerc9436ad2015-07-18 20:05:10 +0000975 for (const auto &Q : make_range(RegRefs.equal_range(CurrReg))) {
976 Q.second.Operand->setReg(NewReg);
Jim Grosbach12ac8f02010-06-01 23:48:44 +0000977 // If the SU for the instruction being updated has debug
978 // information related to the anti-dependency register, make
979 // sure to update that as well.
Benjamin Kramerc9436ad2015-07-18 20:05:10 +0000980 const SUnit *SU = MISUnitMap[Q.second.Operand->getParent()];
Jim Grosbach84854832010-06-02 15:29:36 +0000981 if (!SU) continue;
Andrew Ng10ebfe02017-04-25 15:39:57 +0000982 UpdateDbgValues(DbgValues, Q.second.Operand->getParent(),
983 AntiDepReg, NewReg);
David Goodwinde11f362009-10-26 19:32:42 +0000984 }
Jim Grosbacheb431da2010-01-06 16:48:02 +0000985
David Goodwinde11f362009-10-26 19:32:42 +0000986 // We just went back in time and modified history; the
987 // liveness information for CurrReg is now inconsistent. Set
988 // the state as if it were dead.
David Goodwine056d102009-10-26 22:31:16 +0000989 State->UnionGroups(NewReg, 0);
David Goodwinde11f362009-10-26 19:32:42 +0000990 RegRefs.erase(NewReg);
991 DefIndices[NewReg] = DefIndices[CurrReg];
992 KillIndices[NewReg] = KillIndices[CurrReg];
Jim Grosbacheb431da2010-01-06 16:48:02 +0000993
David Goodwine056d102009-10-26 22:31:16 +0000994 State->UnionGroups(CurrReg, 0);
David Goodwinde11f362009-10-26 19:32:42 +0000995 RegRefs.erase(CurrReg);
996 DefIndices[CurrReg] = KillIndices[CurrReg];
997 KillIndices[CurrReg] = ~0u;
998 assert(((KillIndices[CurrReg] == ~0u) !=
999 (DefIndices[CurrReg] == ~0u)) &&
1000 "Kill and Def maps aren't consistent for AntiDepReg!");
1001 }
Jim Grosbacheb431da2010-01-06 16:48:02 +00001002
David Goodwinde11f362009-10-26 19:32:42 +00001003 ++Broken;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001004 LLVM_DEBUG(dbgs() << '\n');
David Goodwinde11f362009-10-26 19:32:42 +00001005 }
1006 }
1007 }
1008
1009 ScanInstruction(MI, Count);
1010 }
Jim Grosbacheb431da2010-01-06 16:48:02 +00001011
David Goodwinde11f362009-10-26 19:32:42 +00001012 return Broken;
1013}