blob: 8840622f9ae5c74bdaff966743c1bbb694d1e323 [file] [log] [blame]
Jim Grosbach2973b572010-01-06 16:48:02 +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 Goodwin4de099d2009-11-03 20:57:50 +000017#define DEBUG_TYPE "post-RA-sched"
David Goodwin34877712009-10-26 19:32:42 +000018#include "AggressiveAntiDepBreaker.h"
19#include "llvm/CodeGen/MachineBasicBlock.h"
20#include "llvm/CodeGen/MachineFrameInfo.h"
21#include "llvm/CodeGen/MachineInstr.h"
22#include "llvm/Target/TargetInstrInfo.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetRegisterInfo.h"
David Goodwine10deca2009-10-26 22:31:16 +000025#include "llvm/Support/CommandLine.h"
David Goodwin34877712009-10-26 19:32:42 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/ErrorHandling.h"
28#include "llvm/Support/raw_ostream.h"
David Goodwin34877712009-10-26 19:32:42 +000029using namespace llvm;
30
David Goodwin3e72d302009-11-19 23:12:37 +000031// If DebugDiv > 0 then only break antidep with (ID % DebugDiv) == DebugMod
32static cl::opt<int>
33DebugDiv("agg-antidep-debugdiv",
34 cl::desc("Debug control for aggressive anti-dep breaker"),
35 cl::init(0), cl::Hidden);
36static cl::opt<int>
37DebugMod("agg-antidep-debugmod",
38 cl::desc("Debug control for aggressive anti-dep breaker"),
39 cl::init(0), cl::Hidden);
40
David Goodwin990d2852009-12-09 17:18:22 +000041AggressiveAntiDepState::AggressiveAntiDepState(const unsigned TargetRegs,
42 MachineBasicBlock *BB) :
43 NumTargetRegs(TargetRegs), GroupNodes(TargetRegs, 0) {
David Goodwin34877712009-10-26 19:32:42 +000044
David Goodwin990d2852009-12-09 17:18:22 +000045 const unsigned BBSize = BB->size();
46 for (unsigned i = 0; i < NumTargetRegs; ++i) {
47 // Initialize all registers to be in their own group. Initially we
48 // assign the register to the same-indexed GroupNode.
49 GroupNodeIndices[i] = i;
50 // Initialize the indices to indicate that no registers are live.
51 KillIndices[i] = ~0u;
52 DefIndices[i] = BBSize;
53 }
David Goodwin34877712009-10-26 19:32:42 +000054}
55
David Goodwine10deca2009-10-26 22:31:16 +000056unsigned AggressiveAntiDepState::GetGroup(unsigned Reg)
David Goodwin34877712009-10-26 19:32:42 +000057{
58 unsigned Node = GroupNodeIndices[Reg];
59 while (GroupNodes[Node] != Node)
60 Node = GroupNodes[Node];
61
62 return Node;
63}
64
David Goodwin87d21b92009-11-13 19:52:48 +000065void AggressiveAntiDepState::GetGroupRegs(
66 unsigned Group,
67 std::vector<unsigned> &Regs,
68 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs)
David Goodwin34877712009-10-26 19:32:42 +000069{
David Goodwin990d2852009-12-09 17:18:22 +000070 for (unsigned Reg = 0; Reg != NumTargetRegs; ++Reg) {
David Goodwin87d21b92009-11-13 19:52:48 +000071 if ((GetGroup(Reg) == Group) && (RegRefs->count(Reg) > 0))
David Goodwin34877712009-10-26 19:32:42 +000072 Regs.push_back(Reg);
73 }
74}
75
David Goodwine10deca2009-10-26 22:31:16 +000076unsigned AggressiveAntiDepState::UnionGroups(unsigned Reg1, unsigned Reg2)
David Goodwin34877712009-10-26 19:32:42 +000077{
78 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!");
79 assert(GroupNodeIndices[0] == 0 && "Reg 0 not in Group 0!");
Jim Grosbach2973b572010-01-06 16:48:02 +000080
David Goodwin34877712009-10-26 19:32:42 +000081 // find group for each register
82 unsigned Group1 = GetGroup(Reg1);
83 unsigned Group2 = GetGroup(Reg2);
Jim Grosbach2973b572010-01-06 16:48:02 +000084
David Goodwin34877712009-10-26 19:32:42 +000085 // if either group is 0, then that must become the parent
86 unsigned Parent = (Group1 == 0) ? Group1 : Group2;
87 unsigned Other = (Parent == Group1) ? Group2 : Group1;
88 GroupNodes.at(Other) = Parent;
89 return Parent;
90}
Jim Grosbach2973b572010-01-06 16:48:02 +000091
David Goodwine10deca2009-10-26 22:31:16 +000092unsigned AggressiveAntiDepState::LeaveGroup(unsigned Reg)
David Goodwin34877712009-10-26 19:32:42 +000093{
94 // Create a new GroupNode for Reg. Reg's existing GroupNode must
95 // stay as is because there could be other GroupNodes referring to
96 // it.
97 unsigned idx = GroupNodes.size();
98 GroupNodes.push_back(idx);
99 GroupNodeIndices[Reg] = idx;
100 return idx;
101}
102
David Goodwine10deca2009-10-26 22:31:16 +0000103bool AggressiveAntiDepState::IsLive(unsigned Reg)
David Goodwin34877712009-10-26 19:32:42 +0000104{
105 // KillIndex must be defined and DefIndex not defined for a register
106 // to be live.
107 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
108}
109
David Goodwine10deca2009-10-26 22:31:16 +0000110
111
112AggressiveAntiDepBreaker::
David Goodwin0855dee2009-11-10 00:15:47 +0000113AggressiveAntiDepBreaker(MachineFunction& MFi,
Jim Grosbach2973b572010-01-06 16:48:02 +0000114 TargetSubtarget::RegClassVector& CriticalPathRCs) :
David Goodwine10deca2009-10-26 22:31:16 +0000115 AntiDepBreaker(), MF(MFi),
116 MRI(MF.getRegInfo()),
117 TRI(MF.getTarget().getRegisterInfo()),
118 AllocatableSet(TRI->getAllocatableSet(MF)),
David Goodwin557bbe62009-11-20 19:32:48 +0000119 State(NULL) {
David Goodwin87d21b92009-11-13 19:52:48 +0000120 /* Collect a bitset of all registers that are only broken if they
121 are on the critical path. */
122 for (unsigned i = 0, e = CriticalPathRCs.size(); i < e; ++i) {
123 BitVector CPSet = TRI->getAllocatableSet(MF, CriticalPathRCs[i]);
124 if (CriticalPathSet.none())
125 CriticalPathSet = CPSet;
126 else
127 CriticalPathSet |= CPSet;
128 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000129
David Greene5393b252009-12-24 00:14:25 +0000130 DEBUG(dbgs() << "AntiDep Critical-Path Registers:");
Jim Grosbach2973b572010-01-06 16:48:02 +0000131 DEBUG(for (int r = CriticalPathSet.find_first(); r != -1;
David Goodwin87d21b92009-11-13 19:52:48 +0000132 r = CriticalPathSet.find_next(r))
David Greene5393b252009-12-24 00:14:25 +0000133 dbgs() << " " << TRI->getName(r));
134 DEBUG(dbgs() << '\n');
David Goodwine10deca2009-10-26 22:31:16 +0000135}
136
137AggressiveAntiDepBreaker::~AggressiveAntiDepBreaker() {
138 delete State;
David Goodwine10deca2009-10-26 22:31:16 +0000139}
140
141void AggressiveAntiDepBreaker::StartBlock(MachineBasicBlock *BB) {
142 assert(State == NULL);
David Goodwin990d2852009-12-09 17:18:22 +0000143 State = new AggressiveAntiDepState(TRI->getNumRegs(), BB);
David Goodwine10deca2009-10-26 22:31:16 +0000144
145 bool IsReturnBlock = (!BB->empty() && BB->back().getDesc().isReturn());
146 unsigned *KillIndices = State->GetKillIndices();
147 unsigned *DefIndices = State->GetDefIndices();
148
149 // Determine the live-out physregs for this block.
150 if (IsReturnBlock) {
151 // In a return block, examine the function live-out regs.
152 for (MachineRegisterInfo::liveout_iterator I = MRI.liveout_begin(),
153 E = MRI.liveout_end(); I != E; ++I) {
154 unsigned Reg = *I;
155 State->UnionGroups(Reg, 0);
156 KillIndices[Reg] = BB->size();
157 DefIndices[Reg] = ~0u;
158 // Repeat, for all aliases.
159 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
160 unsigned AliasReg = *Alias;
161 State->UnionGroups(AliasReg, 0);
162 KillIndices[AliasReg] = BB->size();
163 DefIndices[AliasReg] = ~0u;
164 }
165 }
166 } else {
167 // In a non-return block, examine the live-in regs of all successors.
168 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
169 SE = BB->succ_end(); SI != SE; ++SI)
170 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
171 E = (*SI)->livein_end(); I != E; ++I) {
172 unsigned Reg = *I;
173 State->UnionGroups(Reg, 0);
174 KillIndices[Reg] = BB->size();
175 DefIndices[Reg] = ~0u;
176 // Repeat, for all aliases.
177 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
178 unsigned AliasReg = *Alias;
179 State->UnionGroups(AliasReg, 0);
180 KillIndices[AliasReg] = BB->size();
181 DefIndices[AliasReg] = ~0u;
182 }
183 }
184 }
185
186 // Mark live-out callee-saved registers. In a return block this is
187 // all callee-saved registers. In non-return this is any
188 // callee-saved register that is not saved in the prolog.
189 const MachineFrameInfo *MFI = MF.getFrameInfo();
190 BitVector Pristine = MFI->getPristineRegs(BB);
191 for (const unsigned *I = TRI->getCalleeSavedRegs(); *I; ++I) {
192 unsigned Reg = *I;
193 if (!IsReturnBlock && !Pristine.test(Reg)) continue;
194 State->UnionGroups(Reg, 0);
195 KillIndices[Reg] = BB->size();
196 DefIndices[Reg] = ~0u;
197 // Repeat, for all aliases.
198 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
199 unsigned AliasReg = *Alias;
200 State->UnionGroups(AliasReg, 0);
201 KillIndices[AliasReg] = BB->size();
202 DefIndices[AliasReg] = ~0u;
203 }
204 }
205}
206
207void AggressiveAntiDepBreaker::FinishBlock() {
208 delete State;
209 State = NULL;
David Goodwine10deca2009-10-26 22:31:16 +0000210}
211
212void AggressiveAntiDepBreaker::Observe(MachineInstr *MI, unsigned Count,
213 unsigned InsertPosIndex) {
214 assert(Count < InsertPosIndex && "Instruction index out of expected range!");
215
David Goodwin5b3c3082009-10-29 23:30:59 +0000216 std::set<unsigned> PassthruRegs;
217 GetPassthruRegs(MI, PassthruRegs);
218 PrescanInstruction(MI, Count, PassthruRegs);
219 ScanInstruction(MI, Count);
220
David Greene5393b252009-12-24 00:14:25 +0000221 DEBUG(dbgs() << "Observe: ");
David Goodwine10deca2009-10-26 22:31:16 +0000222 DEBUG(MI->dump());
David Greene5393b252009-12-24 00:14:25 +0000223 DEBUG(dbgs() << "\tRegs:");
David Goodwine10deca2009-10-26 22:31:16 +0000224
225 unsigned *DefIndices = State->GetDefIndices();
David Goodwin990d2852009-12-09 17:18:22 +0000226 for (unsigned Reg = 0; Reg != TRI->getNumRegs(); ++Reg) {
David Goodwine10deca2009-10-26 22:31:16 +0000227 // If Reg is current live, then mark that it can't be renamed as
228 // we don't know the extent of its live-range anymore (now that it
229 // has been scheduled). If it is not live but was defined in the
230 // previous schedule region, then set its def index to the most
231 // conservative location (i.e. the beginning of the previous
232 // schedule region).
233 if (State->IsLive(Reg)) {
234 DEBUG(if (State->GetGroup(Reg) != 0)
Jim Grosbach2973b572010-01-06 16:48:02 +0000235 dbgs() << " " << TRI->getName(Reg) << "=g" <<
David Goodwine10deca2009-10-26 22:31:16 +0000236 State->GetGroup(Reg) << "->g0(region live-out)");
237 State->UnionGroups(Reg, 0);
Jim Grosbach2973b572010-01-06 16:48:02 +0000238 } else if ((DefIndices[Reg] < InsertPosIndex)
239 && (DefIndices[Reg] >= Count)) {
David Goodwine10deca2009-10-26 22:31:16 +0000240 DefIndices[Reg] = Count;
241 }
242 }
David Greene5393b252009-12-24 00:14:25 +0000243 DEBUG(dbgs() << '\n');
David Goodwine10deca2009-10-26 22:31:16 +0000244}
245
David Goodwin34877712009-10-26 19:32:42 +0000246bool AggressiveAntiDepBreaker::IsImplicitDefUse(MachineInstr *MI,
247 MachineOperand& MO)
248{
249 if (!MO.isReg() || !MO.isImplicit())
250 return false;
251
252 unsigned Reg = MO.getReg();
253 if (Reg == 0)
254 return false;
255
256 MachineOperand *Op = NULL;
257 if (MO.isDef())
258 Op = MI->findRegisterUseOperand(Reg, true);
259 else
260 Op = MI->findRegisterDefOperand(Reg);
261
262 return((Op != NULL) && Op->isImplicit());
263}
264
265void AggressiveAntiDepBreaker::GetPassthruRegs(MachineInstr *MI,
266 std::set<unsigned>& PassthruRegs) {
267 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
268 MachineOperand &MO = MI->getOperand(i);
269 if (!MO.isReg()) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000270 if ((MO.isDef() && MI->isRegTiedToUseOperand(i)) ||
David Goodwin34877712009-10-26 19:32:42 +0000271 IsImplicitDefUse(MI, MO)) {
272 const unsigned Reg = MO.getReg();
273 PassthruRegs.insert(Reg);
274 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
275 *Subreg; ++Subreg) {
276 PassthruRegs.insert(*Subreg);
277 }
278 }
279 }
280}
281
David Goodwin557bbe62009-11-20 19:32:48 +0000282/// AntiDepEdges - Return in Edges the anti- and output- dependencies
283/// in SU that we want to consider for breaking.
284static void AntiDepEdges(SUnit *SU, std::vector<SDep*>& Edges) {
285 SmallSet<unsigned, 4> RegSet;
David Goodwin34877712009-10-26 19:32:42 +0000286 for (SUnit::pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
287 P != PE; ++P) {
David Goodwin12dd99d2009-11-12 19:08:21 +0000288 if ((P->getKind() == SDep::Anti) || (P->getKind() == SDep::Output)) {
David Goodwin34877712009-10-26 19:32:42 +0000289 unsigned Reg = P->getReg();
David Goodwin557bbe62009-11-20 19:32:48 +0000290 if (RegSet.count(Reg) == 0) {
David Goodwin34877712009-10-26 19:32:42 +0000291 Edges.push_back(&*P);
David Goodwin557bbe62009-11-20 19:32:48 +0000292 RegSet.insert(Reg);
David Goodwin34877712009-10-26 19:32:42 +0000293 }
294 }
295 }
296}
297
David Goodwin87d21b92009-11-13 19:52:48 +0000298/// CriticalPathStep - Return the next SUnit after SU on the bottom-up
299/// critical path.
300static SUnit *CriticalPathStep(SUnit *SU) {
301 SDep *Next = 0;
302 unsigned NextDepth = 0;
303 // Find the predecessor edge with the greatest depth.
304 if (SU != 0) {
305 for (SUnit::pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
306 P != PE; ++P) {
307 SUnit *PredSU = P->getSUnit();
308 unsigned PredLatency = P->getLatency();
309 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
310 // In the case of a latency tie, prefer an anti-dependency edge over
311 // other types of edges.
312 if (NextDepth < PredTotalLatency ||
313 (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) {
314 NextDepth = PredTotalLatency;
315 Next = &*P;
316 }
317 }
318 }
319
320 return (Next) ? Next->getSUnit() : 0;
321}
322
David Goodwin67a8a7b2009-10-29 19:17:04 +0000323void AggressiveAntiDepBreaker::HandleLastUse(unsigned Reg, unsigned KillIdx,
Jim Grosbach2973b572010-01-06 16:48:02 +0000324 const char *tag,
325 const char *header,
David Goodwin3e72d302009-11-19 23:12:37 +0000326 const char *footer) {
David Goodwin67a8a7b2009-10-29 19:17:04 +0000327 unsigned *KillIndices = State->GetKillIndices();
328 unsigned *DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000329 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwin67a8a7b2009-10-29 19:17:04 +0000330 RegRefs = State->GetRegRefs();
331
332 if (!State->IsLive(Reg)) {
333 KillIndices[Reg] = KillIdx;
334 DefIndices[Reg] = ~0u;
335 RegRefs.erase(Reg);
336 State->LeaveGroup(Reg);
David Goodwin3e72d302009-11-19 23:12:37 +0000337 DEBUG(if (header != NULL) {
David Greene5393b252009-12-24 00:14:25 +0000338 dbgs() << header << TRI->getName(Reg); header = NULL; });
339 DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << tag);
David Goodwin67a8a7b2009-10-29 19:17:04 +0000340 }
341 // Repeat for subregisters.
342 for (const unsigned *Subreg = TRI->getSubRegisters(Reg);
343 *Subreg; ++Subreg) {
344 unsigned SubregReg = *Subreg;
345 if (!State->IsLive(SubregReg)) {
346 KillIndices[SubregReg] = KillIdx;
347 DefIndices[SubregReg] = ~0u;
348 RegRefs.erase(SubregReg);
349 State->LeaveGroup(SubregReg);
David Goodwin3e72d302009-11-19 23:12:37 +0000350 DEBUG(if (header != NULL) {
David Greene5393b252009-12-24 00:14:25 +0000351 dbgs() << header << TRI->getName(Reg); header = NULL; });
352 DEBUG(dbgs() << " " << TRI->getName(SubregReg) << "->g" <<
David Goodwin67a8a7b2009-10-29 19:17:04 +0000353 State->GetGroup(SubregReg) << tag);
354 }
355 }
David Goodwin3e72d302009-11-19 23:12:37 +0000356
David Greene5393b252009-12-24 00:14:25 +0000357 DEBUG(if ((header == NULL) && (footer != NULL)) dbgs() << footer);
David Goodwin67a8a7b2009-10-29 19:17:04 +0000358}
359
Jim Grosbach2973b572010-01-06 16:48:02 +0000360void AggressiveAntiDepBreaker::PrescanInstruction(MachineInstr *MI,
361 unsigned Count,
362 std::set<unsigned>& PassthruRegs)
363{
David Goodwine10deca2009-10-26 22:31:16 +0000364 unsigned *DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000365 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000366 RegRefs = State->GetRegRefs();
367
David Goodwin67a8a7b2009-10-29 19:17:04 +0000368 // Handle dead defs by simulating a last-use of the register just
369 // after the def. A dead def can occur because the def is truely
370 // dead, or because only a subregister is live at the def. If we
371 // don't do this the dead def will be incorrectly merged into the
372 // previous def.
David Goodwin34877712009-10-26 19:32:42 +0000373 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
374 MachineOperand &MO = MI->getOperand(i);
375 if (!MO.isReg() || !MO.isDef()) continue;
376 unsigned Reg = MO.getReg();
377 if (Reg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000378
David Goodwin3e72d302009-11-19 23:12:37 +0000379 HandleLastUse(Reg, Count + 1, "", "\tDead Def: ", "\n");
David Goodwin34877712009-10-26 19:32:42 +0000380 }
381
David Greene5393b252009-12-24 00:14:25 +0000382 DEBUG(dbgs() << "\tDef Groups:");
David Goodwin34877712009-10-26 19:32:42 +0000383 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
384 MachineOperand &MO = MI->getOperand(i);
385 if (!MO.isReg() || !MO.isDef()) continue;
386 unsigned Reg = MO.getReg();
387 if (Reg == 0) continue;
388
Jim Grosbach2973b572010-01-06 16:48:02 +0000389 DEBUG(dbgs() << " " << TRI->getName(Reg) << "=g" << State->GetGroup(Reg));
David Goodwin34877712009-10-26 19:32:42 +0000390
David Goodwin67a8a7b2009-10-29 19:17:04 +0000391 // If MI's defs have a special allocation requirement, don't allow
David Goodwin34877712009-10-26 19:32:42 +0000392 // any def registers to be changed. Also assume all registers
393 // defined in a call must not be changed (ABI).
394 if (MI->getDesc().isCall() || MI->getDesc().hasExtraDefRegAllocReq()) {
David Greene5393b252009-12-24 00:14:25 +0000395 DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)");
David Goodwine10deca2009-10-26 22:31:16 +0000396 State->UnionGroups(Reg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000397 }
398
399 // Any aliased that are live at this point are completely or
David Goodwin67a8a7b2009-10-29 19:17:04 +0000400 // partially defined here, so group those aliases with Reg.
David Goodwin34877712009-10-26 19:32:42 +0000401 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
402 unsigned AliasReg = *Alias;
David Goodwine10deca2009-10-26 22:31:16 +0000403 if (State->IsLive(AliasReg)) {
404 State->UnionGroups(Reg, AliasReg);
Jim Grosbach2973b572010-01-06 16:48:02 +0000405 DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << "(via " <<
David Goodwin34877712009-10-26 19:32:42 +0000406 TRI->getName(AliasReg) << ")");
407 }
408 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000409
David Goodwin34877712009-10-26 19:32:42 +0000410 // Note register reference...
411 const TargetRegisterClass *RC = NULL;
412 if (i < MI->getDesc().getNumOperands())
413 RC = MI->getDesc().OpInfo[i].getRegClass(TRI);
David Goodwine10deca2009-10-26 22:31:16 +0000414 AggressiveAntiDepState::RegisterReference RR = { &MO, RC };
David Goodwin34877712009-10-26 19:32:42 +0000415 RegRefs.insert(std::make_pair(Reg, RR));
416 }
417
David Greene5393b252009-12-24 00:14:25 +0000418 DEBUG(dbgs() << '\n');
David Goodwin67a8a7b2009-10-29 19:17:04 +0000419
420 // Scan the register defs for this instruction and update
421 // live-ranges.
422 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
423 MachineOperand &MO = MI->getOperand(i);
424 if (!MO.isReg() || !MO.isDef()) continue;
425 unsigned Reg = MO.getReg();
426 if (Reg == 0) continue;
David Goodwin3e72d302009-11-19 23:12:37 +0000427 // Ignore KILLs and passthru registers for liveness...
Chris Lattner518bb532010-02-09 19:54:29 +0000428 if (MI->isKill() || (PassthruRegs.count(Reg) != 0))
David Goodwin3e72d302009-11-19 23:12:37 +0000429 continue;
David Goodwin67a8a7b2009-10-29 19:17:04 +0000430
David Goodwin3e72d302009-11-19 23:12:37 +0000431 // Update def for Reg and aliases.
David Goodwin67a8a7b2009-10-29 19:17:04 +0000432 DefIndices[Reg] = Count;
David Goodwin3e72d302009-11-19 23:12:37 +0000433 for (const unsigned *Alias = TRI->getAliasSet(Reg);
434 *Alias; ++Alias) {
435 unsigned AliasReg = *Alias;
436 DefIndices[AliasReg] = Count;
David Goodwin67a8a7b2009-10-29 19:17:04 +0000437 }
438 }
David Goodwin34877712009-10-26 19:32:42 +0000439}
440
441void AggressiveAntiDepBreaker::ScanInstruction(MachineInstr *MI,
442 unsigned Count) {
David Greene5393b252009-12-24 00:14:25 +0000443 DEBUG(dbgs() << "\tUse Groups:");
Jim Grosbach2973b572010-01-06 16:48:02 +0000444 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000445 RegRefs = State->GetRegRefs();
David Goodwin34877712009-10-26 19:32:42 +0000446
447 // Scan the register uses for this instruction and update
448 // live-ranges, groups and RegRefs.
449 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
450 MachineOperand &MO = MI->getOperand(i);
451 if (!MO.isReg() || !MO.isUse()) continue;
452 unsigned Reg = MO.getReg();
453 if (Reg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000454
455 DEBUG(dbgs() << " " << TRI->getName(Reg) << "=g" <<
456 State->GetGroup(Reg));
David Goodwin34877712009-10-26 19:32:42 +0000457
458 // It wasn't previously live but now it is, this is a kill. Forget
459 // the previous live-range information and start a new live-range
460 // for the register.
David Goodwin67a8a7b2009-10-29 19:17:04 +0000461 HandleLastUse(Reg, Count, "(last-use)");
David Goodwin34877712009-10-26 19:32:42 +0000462
463 // If MI's uses have special allocation requirement, don't allow
464 // any use registers to be changed. Also assume all registers
465 // used in a call must not be changed (ABI).
466 if (MI->getDesc().isCall() || MI->getDesc().hasExtraSrcRegAllocReq()) {
David Greene5393b252009-12-24 00:14:25 +0000467 DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)");
David Goodwine10deca2009-10-26 22:31:16 +0000468 State->UnionGroups(Reg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000469 }
470
471 // Note register reference...
472 const TargetRegisterClass *RC = NULL;
473 if (i < MI->getDesc().getNumOperands())
474 RC = MI->getDesc().OpInfo[i].getRegClass(TRI);
David Goodwine10deca2009-10-26 22:31:16 +0000475 AggressiveAntiDepState::RegisterReference RR = { &MO, RC };
David Goodwin34877712009-10-26 19:32:42 +0000476 RegRefs.insert(std::make_pair(Reg, RR));
477 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000478
David Greene5393b252009-12-24 00:14:25 +0000479 DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000480
481 // Form a group of all defs and uses of a KILL instruction to ensure
482 // that all registers are renamed as a group.
Chris Lattner518bb532010-02-09 19:54:29 +0000483 if (MI->isKill()) {
David Greene5393b252009-12-24 00:14:25 +0000484 DEBUG(dbgs() << "\tKill Group:");
David Goodwin34877712009-10-26 19:32:42 +0000485
486 unsigned FirstReg = 0;
487 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
488 MachineOperand &MO = MI->getOperand(i);
489 if (!MO.isReg()) continue;
490 unsigned Reg = MO.getReg();
491 if (Reg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000492
David Goodwin34877712009-10-26 19:32:42 +0000493 if (FirstReg != 0) {
David Greene5393b252009-12-24 00:14:25 +0000494 DEBUG(dbgs() << "=" << TRI->getName(Reg));
David Goodwine10deca2009-10-26 22:31:16 +0000495 State->UnionGroups(FirstReg, Reg);
David Goodwin34877712009-10-26 19:32:42 +0000496 } else {
David Greene5393b252009-12-24 00:14:25 +0000497 DEBUG(dbgs() << " " << TRI->getName(Reg));
David Goodwin34877712009-10-26 19:32:42 +0000498 FirstReg = Reg;
499 }
500 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000501
David Greene5393b252009-12-24 00:14:25 +0000502 DEBUG(dbgs() << "->g" << State->GetGroup(FirstReg) << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000503 }
504}
505
506BitVector AggressiveAntiDepBreaker::GetRenameRegisters(unsigned Reg) {
507 BitVector BV(TRI->getNumRegs(), false);
508 bool first = true;
509
510 // Check all references that need rewriting for Reg. For each, use
511 // the corresponding register class to narrow the set of registers
512 // that are appropriate for renaming.
Jim Grosbach2973b572010-01-06 16:48:02 +0000513 std::pair<std::multimap<unsigned,
David Goodwine10deca2009-10-26 22:31:16 +0000514 AggressiveAntiDepState::RegisterReference>::iterator,
515 std::multimap<unsigned,
516 AggressiveAntiDepState::RegisterReference>::iterator>
517 Range = State->GetRegRefs().equal_range(Reg);
Jim Grosbach2973b572010-01-06 16:48:02 +0000518 for (std::multimap<unsigned,
519 AggressiveAntiDepState::RegisterReference>::iterator Q = Range.first,
520 QE = Range.second; Q != QE; ++Q) {
David Goodwin34877712009-10-26 19:32:42 +0000521 const TargetRegisterClass *RC = Q->second.RC;
522 if (RC == NULL) continue;
523
524 BitVector RCBV = TRI->getAllocatableSet(MF, RC);
525 if (first) {
526 BV |= RCBV;
527 first = false;
528 } else {
529 BV &= RCBV;
530 }
531
David Greene5393b252009-12-24 00:14:25 +0000532 DEBUG(dbgs() << " " << RC->getName());
David Goodwin34877712009-10-26 19:32:42 +0000533 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000534
David Goodwin34877712009-10-26 19:32:42 +0000535 return BV;
Jim Grosbach2973b572010-01-06 16:48:02 +0000536}
David Goodwin34877712009-10-26 19:32:42 +0000537
538bool AggressiveAntiDepBreaker::FindSuitableFreeRegisters(
David Goodwin54097832009-11-05 01:19:35 +0000539 unsigned AntiDepGroupIndex,
540 RenameOrderType& RenameOrder,
541 std::map<unsigned, unsigned> &RenameMap) {
David Goodwine10deca2009-10-26 22:31:16 +0000542 unsigned *KillIndices = State->GetKillIndices();
543 unsigned *DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000544 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000545 RegRefs = State->GetRegRefs();
546
David Goodwin87d21b92009-11-13 19:52:48 +0000547 // Collect all referenced registers in the same group as
548 // AntiDepReg. These all need to be renamed together if we are to
549 // break the anti-dependence.
David Goodwin34877712009-10-26 19:32:42 +0000550 std::vector<unsigned> Regs;
David Goodwin87d21b92009-11-13 19:52:48 +0000551 State->GetGroupRegs(AntiDepGroupIndex, Regs, &RegRefs);
David Goodwin34877712009-10-26 19:32:42 +0000552 assert(Regs.size() > 0 && "Empty register group!");
553 if (Regs.size() == 0)
554 return false;
555
556 // Find the "superest" register in the group. At the same time,
557 // collect the BitVector of registers that can be used to rename
558 // each register.
Jim Grosbach2973b572010-01-06 16:48:02 +0000559 DEBUG(dbgs() << "\tRename Candidates for Group g" << AntiDepGroupIndex
560 << ":\n");
David Goodwin34877712009-10-26 19:32:42 +0000561 std::map<unsigned, BitVector> RenameRegisterMap;
562 unsigned SuperReg = 0;
563 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
564 unsigned Reg = Regs[i];
565 if ((SuperReg == 0) || TRI->isSuperRegister(SuperReg, Reg))
566 SuperReg = Reg;
567
568 // If Reg has any references, then collect possible rename regs
569 if (RegRefs.count(Reg) > 0) {
David Greene5393b252009-12-24 00:14:25 +0000570 DEBUG(dbgs() << "\t\t" << TRI->getName(Reg) << ":");
Jim Grosbach2973b572010-01-06 16:48:02 +0000571
David Goodwin34877712009-10-26 19:32:42 +0000572 BitVector BV = GetRenameRegisters(Reg);
573 RenameRegisterMap.insert(std::pair<unsigned, BitVector>(Reg, BV));
574
David Greene5393b252009-12-24 00:14:25 +0000575 DEBUG(dbgs() << " ::");
David Goodwin34877712009-10-26 19:32:42 +0000576 DEBUG(for (int r = BV.find_first(); r != -1; r = BV.find_next(r))
David Greene5393b252009-12-24 00:14:25 +0000577 dbgs() << " " << TRI->getName(r));
578 DEBUG(dbgs() << "\n");
David Goodwin34877712009-10-26 19:32:42 +0000579 }
580 }
581
582 // All group registers should be a subreg of SuperReg.
583 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
584 unsigned Reg = Regs[i];
585 if (Reg == SuperReg) continue;
586 bool IsSub = TRI->isSubRegister(SuperReg, Reg);
587 assert(IsSub && "Expecting group subregister");
588 if (!IsSub)
589 return false;
590 }
591
David Goodwin00621ef2009-11-20 23:33:54 +0000592#ifndef NDEBUG
593 // If DebugDiv > 0 then only rename (renamecnt % DebugDiv) == DebugMod
594 if (DebugDiv > 0) {
595 static int renamecnt = 0;
596 if (renamecnt++ % DebugDiv != DebugMod)
597 return false;
Jim Grosbach2973b572010-01-06 16:48:02 +0000598
David Greene5393b252009-12-24 00:14:25 +0000599 dbgs() << "*** Performing rename " << TRI->getName(SuperReg) <<
David Goodwin00621ef2009-11-20 23:33:54 +0000600 " for debug ***\n";
601 }
602#endif
603
David Goodwin54097832009-11-05 01:19:35 +0000604 // Check each possible rename register for SuperReg in round-robin
605 // order. If that register is available, and the corresponding
606 // registers are available for the other group subregisters, then we
607 // can use those registers to rename.
Jim Grosbach2973b572010-01-06 16:48:02 +0000608 const TargetRegisterClass *SuperRC =
David Goodwin54097832009-11-05 01:19:35 +0000609 TRI->getPhysicalRegisterRegClass(SuperReg, MVT::Other);
Jim Grosbach2973b572010-01-06 16:48:02 +0000610
David Goodwin54097832009-11-05 01:19:35 +0000611 const TargetRegisterClass::iterator RB = SuperRC->allocation_order_begin(MF);
612 const TargetRegisterClass::iterator RE = SuperRC->allocation_order_end(MF);
613 if (RB == RE) {
David Greene5393b252009-12-24 00:14:25 +0000614 DEBUG(dbgs() << "\tEmpty Super Regclass!!\n");
David Goodwin54097832009-11-05 01:19:35 +0000615 return false;
616 }
617
David Greene5393b252009-12-24 00:14:25 +0000618 DEBUG(dbgs() << "\tFind Registers:");
David Goodwin3e72d302009-11-19 23:12:37 +0000619
David Goodwin54097832009-11-05 01:19:35 +0000620 if (RenameOrder.count(SuperRC) == 0)
621 RenameOrder.insert(RenameOrderType::value_type(SuperRC, RE));
622
David Goodwin98f2f1a2009-11-05 01:45:50 +0000623 const TargetRegisterClass::iterator OrigR = RenameOrder[SuperRC];
David Goodwin54097832009-11-05 01:19:35 +0000624 const TargetRegisterClass::iterator EndR = ((OrigR == RE) ? RB : OrigR);
625 TargetRegisterClass::iterator R = OrigR;
626 do {
627 if (R == RB) R = RE;
628 --R;
David Goodwin00621ef2009-11-20 23:33:54 +0000629 const unsigned NewSuperReg = *R;
David Goodwin34877712009-10-26 19:32:42 +0000630 // Don't replace a register with itself.
David Goodwin00621ef2009-11-20 23:33:54 +0000631 if (NewSuperReg == SuperReg) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000632
David Greene5393b252009-12-24 00:14:25 +0000633 DEBUG(dbgs() << " [" << TRI->getName(NewSuperReg) << ':');
David Goodwin00621ef2009-11-20 23:33:54 +0000634 RenameMap.clear();
635
636 // For each referenced group register (which must be a SuperReg or
637 // a subregister of SuperReg), find the corresponding subregister
638 // of NewSuperReg and make sure it is free to be renamed.
639 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
640 unsigned Reg = Regs[i];
641 unsigned NewReg = 0;
642 if (Reg == SuperReg) {
643 NewReg = NewSuperReg;
644 } else {
645 unsigned NewSubRegIdx = TRI->getSubRegIndex(SuperReg, Reg);
646 if (NewSubRegIdx != 0)
647 NewReg = TRI->getSubReg(NewSuperReg, NewSubRegIdx);
David Goodwin34877712009-10-26 19:32:42 +0000648 }
David Goodwin00621ef2009-11-20 23:33:54 +0000649
David Greene5393b252009-12-24 00:14:25 +0000650 DEBUG(dbgs() << " " << TRI->getName(NewReg));
Jim Grosbach2973b572010-01-06 16:48:02 +0000651
David Goodwin00621ef2009-11-20 23:33:54 +0000652 // Check if Reg can be renamed to NewReg.
653 BitVector BV = RenameRegisterMap[Reg];
654 if (!BV.test(NewReg)) {
David Greene5393b252009-12-24 00:14:25 +0000655 DEBUG(dbgs() << "(no rename)");
David Goodwin00621ef2009-11-20 23:33:54 +0000656 goto next_super_reg;
657 }
658
659 // If NewReg is dead and NewReg's most recent def is not before
660 // Regs's kill, it's safe to replace Reg with NewReg. We
661 // must also check all aliases of NewReg, because we can't define a
662 // register when any sub or super is already live.
663 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) {
David Greene5393b252009-12-24 00:14:25 +0000664 DEBUG(dbgs() << "(live)");
David Goodwin00621ef2009-11-20 23:33:54 +0000665 goto next_super_reg;
666 } else {
667 bool found = false;
668 for (const unsigned *Alias = TRI->getAliasSet(NewReg);
669 *Alias; ++Alias) {
670 unsigned AliasReg = *Alias;
Jim Grosbach2973b572010-01-06 16:48:02 +0000671 if (State->IsLive(AliasReg) ||
672 (KillIndices[Reg] > DefIndices[AliasReg])) {
David Greene5393b252009-12-24 00:14:25 +0000673 DEBUG(dbgs() << "(alias " << TRI->getName(AliasReg) << " live)");
David Goodwin00621ef2009-11-20 23:33:54 +0000674 found = true;
675 break;
676 }
677 }
678 if (found)
679 goto next_super_reg;
680 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000681
David Goodwin00621ef2009-11-20 23:33:54 +0000682 // Record that 'Reg' can be renamed to 'NewReg'.
683 RenameMap.insert(std::pair<unsigned, unsigned>(Reg, NewReg));
David Goodwin34877712009-10-26 19:32:42 +0000684 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000685
David Goodwin00621ef2009-11-20 23:33:54 +0000686 // If we fall-out here, then every register in the group can be
687 // renamed, as recorded in RenameMap.
688 RenameOrder.erase(SuperRC);
689 RenameOrder.insert(RenameOrderType::value_type(SuperRC, R));
David Greene5393b252009-12-24 00:14:25 +0000690 DEBUG(dbgs() << "]\n");
David Goodwin00621ef2009-11-20 23:33:54 +0000691 return true;
692
693 next_super_reg:
David Greene5393b252009-12-24 00:14:25 +0000694 DEBUG(dbgs() << ']');
David Goodwin54097832009-11-05 01:19:35 +0000695 } while (R != EndR);
David Goodwin34877712009-10-26 19:32:42 +0000696
David Greene5393b252009-12-24 00:14:25 +0000697 DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000698
699 // No registers are free and available!
700 return false;
701}
702
703/// BreakAntiDependencies - Identifiy anti-dependencies within the
704/// ScheduleDAG and break them by renaming registers.
705///
David Goodwine10deca2009-10-26 22:31:16 +0000706unsigned AggressiveAntiDepBreaker::BreakAntiDependencies(
707 std::vector<SUnit>& SUnits,
708 MachineBasicBlock::iterator& Begin,
709 MachineBasicBlock::iterator& End,
710 unsigned InsertPosIndex) {
711 unsigned *KillIndices = State->GetKillIndices();
712 unsigned *DefIndices = State->GetDefIndices();
Jim Grosbach2973b572010-01-06 16:48:02 +0000713 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
David Goodwine10deca2009-10-26 22:31:16 +0000714 RegRefs = State->GetRegRefs();
715
David Goodwin34877712009-10-26 19:32:42 +0000716 // The code below assumes that there is at least one instruction,
717 // so just duck out immediately if the block is empty.
David Goodwin4de099d2009-11-03 20:57:50 +0000718 if (SUnits.empty()) return 0;
Jim Grosbach2973b572010-01-06 16:48:02 +0000719
David Goodwin54097832009-11-05 01:19:35 +0000720 // For each regclass the next register to use for renaming.
721 RenameOrderType RenameOrder;
David Goodwin34877712009-10-26 19:32:42 +0000722
723 // ...need a map from MI to SUnit.
724 std::map<MachineInstr *, SUnit *> MISUnitMap;
David Goodwin34877712009-10-26 19:32:42 +0000725 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
726 SUnit *SU = &SUnits[i];
727 MISUnitMap.insert(std::pair<MachineInstr *, SUnit *>(SU->getInstr(), SU));
728 }
729
David Goodwin87d21b92009-11-13 19:52:48 +0000730 // Track progress along the critical path through the SUnit graph as
731 // we walk the instructions. This is needed for regclasses that only
732 // break critical-path anti-dependencies.
733 SUnit *CriticalPathSU = 0;
734 MachineInstr *CriticalPathMI = 0;
735 if (CriticalPathSet.any()) {
736 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) {
737 SUnit *SU = &SUnits[i];
Jim Grosbach2973b572010-01-06 16:48:02 +0000738 if (!CriticalPathSU ||
739 ((SU->getDepth() + SU->Latency) >
David Goodwin87d21b92009-11-13 19:52:48 +0000740 (CriticalPathSU->getDepth() + CriticalPathSU->Latency))) {
741 CriticalPathSU = SU;
742 }
743 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000744
David Goodwin87d21b92009-11-13 19:52:48 +0000745 CriticalPathMI = CriticalPathSU->getInstr();
746 }
747
Jim Grosbach2973b572010-01-06 16:48:02 +0000748#ifndef NDEBUG
David Greene5393b252009-12-24 00:14:25 +0000749 DEBUG(dbgs() << "\n===== Aggressive anti-dependency breaking\n");
750 DEBUG(dbgs() << "Available regs:");
David Goodwin557bbe62009-11-20 19:32:48 +0000751 for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) {
752 if (!State->IsLive(Reg))
David Greene5393b252009-12-24 00:14:25 +0000753 DEBUG(dbgs() << " " << TRI->getName(Reg));
David Goodwin34877712009-10-26 19:32:42 +0000754 }
David Greene5393b252009-12-24 00:14:25 +0000755 DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000756#endif
757
758 // Attempt to break anti-dependence edges. Walk the instructions
759 // from the bottom up, tracking information about liveness as we go
760 // to help determine which registers are available.
761 unsigned Broken = 0;
762 unsigned Count = InsertPosIndex - 1;
763 for (MachineBasicBlock::iterator I = End, E = Begin;
764 I != E; --Count) {
765 MachineInstr *MI = --I;
766
David Greene5393b252009-12-24 00:14:25 +0000767 DEBUG(dbgs() << "Anti: ");
David Goodwin34877712009-10-26 19:32:42 +0000768 DEBUG(MI->dump());
769
770 std::set<unsigned> PassthruRegs;
771 GetPassthruRegs(MI, PassthruRegs);
772
773 // Process the defs in MI...
774 PrescanInstruction(MI, Count, PassthruRegs);
Jim Grosbach2973b572010-01-06 16:48:02 +0000775
David Goodwin557bbe62009-11-20 19:32:48 +0000776 // The dependence edges that represent anti- and output-
David Goodwin87d21b92009-11-13 19:52:48 +0000777 // dependencies that are candidates for breaking.
David Goodwin34877712009-10-26 19:32:42 +0000778 std::vector<SDep*> Edges;
779 SUnit *PathSU = MISUnitMap[MI];
David Goodwin557bbe62009-11-20 19:32:48 +0000780 AntiDepEdges(PathSU, Edges);
David Goodwin87d21b92009-11-13 19:52:48 +0000781
782 // If MI is not on the critical path, then we don't rename
783 // registers in the CriticalPathSet.
784 BitVector *ExcludeRegs = NULL;
785 if (MI == CriticalPathMI) {
786 CriticalPathSU = CriticalPathStep(CriticalPathSU);
787 CriticalPathMI = (CriticalPathSU) ? CriticalPathSU->getInstr() : 0;
Jim Grosbach2973b572010-01-06 16:48:02 +0000788 } else {
David Goodwin87d21b92009-11-13 19:52:48 +0000789 ExcludeRegs = &CriticalPathSet;
790 }
791
David Goodwin34877712009-10-26 19:32:42 +0000792 // Ignore KILL instructions (they form a group in ScanInstruction
793 // but don't cause any anti-dependence breaking themselves)
Chris Lattner518bb532010-02-09 19:54:29 +0000794 if (!MI->isKill()) {
David Goodwin34877712009-10-26 19:32:42 +0000795 // Attempt to break each anti-dependency...
796 for (unsigned i = 0, e = Edges.size(); i != e; ++i) {
797 SDep *Edge = Edges[i];
798 SUnit *NextSU = Edge->getSUnit();
Jim Grosbach2973b572010-01-06 16:48:02 +0000799
David Goodwin12dd99d2009-11-12 19:08:21 +0000800 if ((Edge->getKind() != SDep::Anti) &&
801 (Edge->getKind() != SDep::Output)) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000802
David Goodwin34877712009-10-26 19:32:42 +0000803 unsigned AntiDepReg = Edge->getReg();
David Greene5393b252009-12-24 00:14:25 +0000804 DEBUG(dbgs() << "\tAntidep reg: " << TRI->getName(AntiDepReg));
David Goodwin34877712009-10-26 19:32:42 +0000805 assert(AntiDepReg != 0 && "Anti-dependence on reg0?");
Jim Grosbach2973b572010-01-06 16:48:02 +0000806
David Goodwin34877712009-10-26 19:32:42 +0000807 if (!AllocatableSet.test(AntiDepReg)) {
808 // Don't break anti-dependencies on non-allocatable registers.
David Greene5393b252009-12-24 00:14:25 +0000809 DEBUG(dbgs() << " (non-allocatable)\n");
David Goodwin34877712009-10-26 19:32:42 +0000810 continue;
David Goodwin87d21b92009-11-13 19:52:48 +0000811 } else if ((ExcludeRegs != NULL) && ExcludeRegs->test(AntiDepReg)) {
812 // Don't break anti-dependencies for critical path registers
813 // if not on the critical path
David Greene5393b252009-12-24 00:14:25 +0000814 DEBUG(dbgs() << " (not critical-path)\n");
David Goodwin87d21b92009-11-13 19:52:48 +0000815 continue;
David Goodwin34877712009-10-26 19:32:42 +0000816 } else if (PassthruRegs.count(AntiDepReg) != 0) {
817 // If the anti-dep register liveness "passes-thru", then
818 // don't try to change it. It will be changed along with
819 // the use if required to break an earlier antidep.
David Greene5393b252009-12-24 00:14:25 +0000820 DEBUG(dbgs() << " (passthru)\n");
David Goodwin34877712009-10-26 19:32:42 +0000821 continue;
822 } else {
823 // No anti-dep breaking for implicit deps
824 MachineOperand *AntiDepOp = MI->findRegisterDefOperand(AntiDepReg);
Jim Grosbach2973b572010-01-06 16:48:02 +0000825 assert(AntiDepOp != NULL &&
826 "Can't find index for defined register operand");
David Goodwin34877712009-10-26 19:32:42 +0000827 if ((AntiDepOp == NULL) || AntiDepOp->isImplicit()) {
David Greene5393b252009-12-24 00:14:25 +0000828 DEBUG(dbgs() << " (implicit)\n");
David Goodwin34877712009-10-26 19:32:42 +0000829 continue;
830 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000831
David Goodwin34877712009-10-26 19:32:42 +0000832 // If the SUnit has other dependencies on the SUnit that
833 // it anti-depends on, don't bother breaking the
834 // anti-dependency since those edges would prevent such
835 // units from being scheduled past each other
836 // regardless.
David Goodwin557bbe62009-11-20 19:32:48 +0000837 //
838 // Also, if there are dependencies on other SUnits with the
839 // same register as the anti-dependency, don't attempt to
840 // break it.
David Goodwin34877712009-10-26 19:32:42 +0000841 for (SUnit::pred_iterator P = PathSU->Preds.begin(),
842 PE = PathSU->Preds.end(); P != PE; ++P) {
David Goodwin557bbe62009-11-20 19:32:48 +0000843 if (P->getSUnit() == NextSU ?
844 (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) :
845 (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) {
846 AntiDepReg = 0;
847 break;
848 }
849 }
850 for (SUnit::pred_iterator P = PathSU->Preds.begin(),
851 PE = PathSU->Preds.end(); P != PE; ++P) {
852 if ((P->getSUnit() == NextSU) && (P->getKind() != SDep::Anti) &&
853 (P->getKind() != SDep::Output)) {
David Greene5393b252009-12-24 00:14:25 +0000854 DEBUG(dbgs() << " (real dependency)\n");
David Goodwin34877712009-10-26 19:32:42 +0000855 AntiDepReg = 0;
856 break;
Jim Grosbach2973b572010-01-06 16:48:02 +0000857 } else if ((P->getSUnit() != NextSU) &&
858 (P->getKind() == SDep::Data) &&
David Goodwin557bbe62009-11-20 19:32:48 +0000859 (P->getReg() == AntiDepReg)) {
David Greene5393b252009-12-24 00:14:25 +0000860 DEBUG(dbgs() << " (other dependency)\n");
David Goodwin557bbe62009-11-20 19:32:48 +0000861 AntiDepReg = 0;
862 break;
David Goodwin34877712009-10-26 19:32:42 +0000863 }
864 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000865
David Goodwin34877712009-10-26 19:32:42 +0000866 if (AntiDepReg == 0) continue;
867 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000868
David Goodwin34877712009-10-26 19:32:42 +0000869 assert(AntiDepReg != 0);
870 if (AntiDepReg == 0) continue;
Jim Grosbach2973b572010-01-06 16:48:02 +0000871
David Goodwin34877712009-10-26 19:32:42 +0000872 // Determine AntiDepReg's register group.
David Goodwine10deca2009-10-26 22:31:16 +0000873 const unsigned GroupIndex = State->GetGroup(AntiDepReg);
David Goodwin34877712009-10-26 19:32:42 +0000874 if (GroupIndex == 0) {
David Greene5393b252009-12-24 00:14:25 +0000875 DEBUG(dbgs() << " (zero group)\n");
David Goodwin34877712009-10-26 19:32:42 +0000876 continue;
877 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000878
David Greene5393b252009-12-24 00:14:25 +0000879 DEBUG(dbgs() << '\n');
Jim Grosbach2973b572010-01-06 16:48:02 +0000880
David Goodwin34877712009-10-26 19:32:42 +0000881 // Look for a suitable register to use to break the anti-dependence.
882 std::map<unsigned, unsigned> RenameMap;
David Goodwin54097832009-11-05 01:19:35 +0000883 if (FindSuitableFreeRegisters(GroupIndex, RenameOrder, RenameMap)) {
David Greene5393b252009-12-24 00:14:25 +0000884 DEBUG(dbgs() << "\tBreaking anti-dependence edge on "
David Goodwin34877712009-10-26 19:32:42 +0000885 << TRI->getName(AntiDepReg) << ":");
Jim Grosbach2973b572010-01-06 16:48:02 +0000886
David Goodwin34877712009-10-26 19:32:42 +0000887 // Handle each group register...
888 for (std::map<unsigned, unsigned>::iterator
889 S = RenameMap.begin(), E = RenameMap.end(); S != E; ++S) {
890 unsigned CurrReg = S->first;
891 unsigned NewReg = S->second;
Jim Grosbach2973b572010-01-06 16:48:02 +0000892
893 DEBUG(dbgs() << " " << TRI->getName(CurrReg) << "->" <<
894 TRI->getName(NewReg) << "(" <<
David Goodwin34877712009-10-26 19:32:42 +0000895 RegRefs.count(CurrReg) << " refs)");
Jim Grosbach2973b572010-01-06 16:48:02 +0000896
David Goodwin34877712009-10-26 19:32:42 +0000897 // Update the references to the old register CurrReg to
898 // refer to the new register NewReg.
Jim Grosbach2973b572010-01-06 16:48:02 +0000899 std::pair<std::multimap<unsigned,
900 AggressiveAntiDepState::RegisterReference>::iterator,
David Goodwine10deca2009-10-26 22:31:16 +0000901 std::multimap<unsigned,
Jim Grosbach2973b572010-01-06 16:48:02 +0000902 AggressiveAntiDepState::RegisterReference>::iterator>
David Goodwin34877712009-10-26 19:32:42 +0000903 Range = RegRefs.equal_range(CurrReg);
Jim Grosbach2973b572010-01-06 16:48:02 +0000904 for (std::multimap<unsigned,
905 AggressiveAntiDepState::RegisterReference>::iterator
David Goodwin34877712009-10-26 19:32:42 +0000906 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
907 Q->second.Operand->setReg(NewReg);
908 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000909
David Goodwin34877712009-10-26 19:32:42 +0000910 // We just went back in time and modified history; the
911 // liveness information for CurrReg is now inconsistent. Set
912 // the state as if it were dead.
David Goodwine10deca2009-10-26 22:31:16 +0000913 State->UnionGroups(NewReg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000914 RegRefs.erase(NewReg);
915 DefIndices[NewReg] = DefIndices[CurrReg];
916 KillIndices[NewReg] = KillIndices[CurrReg];
Jim Grosbach2973b572010-01-06 16:48:02 +0000917
David Goodwine10deca2009-10-26 22:31:16 +0000918 State->UnionGroups(CurrReg, 0);
David Goodwin34877712009-10-26 19:32:42 +0000919 RegRefs.erase(CurrReg);
920 DefIndices[CurrReg] = KillIndices[CurrReg];
921 KillIndices[CurrReg] = ~0u;
922 assert(((KillIndices[CurrReg] == ~0u) !=
923 (DefIndices[CurrReg] == ~0u)) &&
924 "Kill and Def maps aren't consistent for AntiDepReg!");
925 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000926
David Goodwin34877712009-10-26 19:32:42 +0000927 ++Broken;
David Greene5393b252009-12-24 00:14:25 +0000928 DEBUG(dbgs() << '\n');
David Goodwin34877712009-10-26 19:32:42 +0000929 }
930 }
931 }
932
933 ScanInstruction(MI, Count);
934 }
Jim Grosbach2973b572010-01-06 16:48:02 +0000935
David Goodwin34877712009-10-26 19:32:42 +0000936 return Broken;
937}