blob: b065d60b1ae3bd1d295eb85050290fd0048933c9 [file] [log] [blame]
Dan Gohmana629b482008-12-08 17:50:35 +00001//===---- ScheduleDAGInstrs.cpp - MachineInstr Rescheduling ---------------===//
Dan Gohman343f0c02008-11-19 23:18:57 +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//
Dan Gohmana629b482008-12-08 17:50:35 +000010// This implements the ScheduleDAGInstrs class, which implements re-scheduling
11// of MachineInstrs.
Dan Gohman343f0c02008-11-19 23:18:57 +000012//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "sched-instrs"
Dan Gohman6dc75fe2009-02-06 17:12:10 +000016#include "ScheduleDAGInstrs.h"
Dan Gohman8906f952009-07-17 20:58:59 +000017#include "llvm/Operator.h"
Dan Gohman3311a1f2009-01-30 02:49:14 +000018#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohman3f237442008-12-16 03:25:46 +000019#include "llvm/CodeGen/MachineFunctionPass.h"
20#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman6a9041e2008-12-04 01:35:46 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000022#include "llvm/Target/TargetMachine.h"
23#include "llvm/Target/TargetInstrInfo.h"
24#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohman3f237442008-12-16 03:25:46 +000025#include "llvm/Target/TargetSubtarget.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/raw_ostream.h"
Dan Gohman3f237442008-12-16 03:25:46 +000028#include "llvm/ADT/SmallSet.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000029using namespace llvm;
30
Dan Gohman79ce2762009-01-15 19:20:50 +000031ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Dan Gohman3f237442008-12-16 03:25:46 +000032 const MachineLoopInfo &mli,
33 const MachineDominatorTree &mdt)
Dan Gohman9e64bbb2009-02-10 23:27:53 +000034 : ScheduleDAG(mf), MLI(mli), MDT(mdt), LoopRegs(MLI, MDT) {}
Dan Gohman343f0c02008-11-19 23:18:57 +000035
Dan Gohman47ac0f02009-02-11 04:27:20 +000036/// Run - perform scheduling.
37///
38void ScheduleDAGInstrs::Run(MachineBasicBlock *bb,
39 MachineBasicBlock::iterator begin,
40 MachineBasicBlock::iterator end,
41 unsigned endcount) {
42 BB = bb;
43 Begin = begin;
44 InsertPosIndex = endcount;
45
46 ScheduleDAG::Run(bb, end);
47}
48
Dan Gohman3311a1f2009-01-30 02:49:14 +000049/// getUnderlyingObjectFromInt - This is the function that does the work of
50/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
51static const Value *getUnderlyingObjectFromInt(const Value *V) {
52 do {
Dan Gohman8906f952009-07-17 20:58:59 +000053 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman3311a1f2009-01-30 02:49:14 +000054 // If we find a ptrtoint, we can transfer control back to the
55 // regular getUnderlyingObjectFromInt.
Dan Gohman8906f952009-07-17 20:58:59 +000056 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman3311a1f2009-01-30 02:49:14 +000057 return U->getOperand(0);
58 // If we find an add of a constant or a multiplied value, it's
59 // likely that the other operand will lead us to the base
60 // object. We don't have to worry about the case where the
Dan Gohman748f98f2009-08-07 01:26:06 +000061 // object address is somehow being computed by the multiply,
Dan Gohman3311a1f2009-01-30 02:49:14 +000062 // because our callers only care when the result is an
63 // identifibale object.
Dan Gohman8906f952009-07-17 20:58:59 +000064 if (U->getOpcode() != Instruction::Add ||
Dan Gohman3311a1f2009-01-30 02:49:14 +000065 (!isa<ConstantInt>(U->getOperand(1)) &&
Dan Gohman8906f952009-07-17 20:58:59 +000066 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul))
Dan Gohman3311a1f2009-01-30 02:49:14 +000067 return V;
68 V = U->getOperand(0);
69 } else {
70 return V;
71 }
72 assert(isa<IntegerType>(V->getType()) && "Unexpected operand type!");
73 } while (1);
74}
75
76/// getUnderlyingObject - This is a wrapper around Value::getUnderlyingObject
77/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
78static const Value *getUnderlyingObject(const Value *V) {
79 // First just call Value::getUnderlyingObject to let it do what it does.
80 do {
81 V = V->getUnderlyingObject();
82 // If it found an inttoptr, use special code to continue climing.
Dan Gohman8906f952009-07-17 20:58:59 +000083 if (Operator::getOpcode(V) != Instruction::IntToPtr)
Dan Gohman3311a1f2009-01-30 02:49:14 +000084 break;
85 const Value *O = getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
86 // If that succeeded in finding a pointer, continue the search.
87 if (!isa<PointerType>(O->getType()))
88 break;
89 V = O;
90 } while (1);
91 return V;
92}
93
94/// getUnderlyingObjectForInstr - If this machine instr has memory reference
95/// information and it can be tracked to a normal reference to a known
96/// object, return the Value for that object. Otherwise return null.
97static const Value *getUnderlyingObjectForInstr(const MachineInstr *MI) {
98 if (!MI->hasOneMemOperand() ||
99 !MI->memoperands_begin()->getValue() ||
100 MI->memoperands_begin()->isVolatile())
101 return 0;
102
103 const Value *V = MI->memoperands_begin()->getValue();
104 if (!V)
105 return 0;
106
107 V = getUnderlyingObject(V);
108 if (!isa<PseudoSourceValue>(V) && !isIdentifiedObject(V))
109 return 0;
110
111 return V;
112}
113
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000114void ScheduleDAGInstrs::StartBlock(MachineBasicBlock *BB) {
115 if (MachineLoop *ML = MLI.getLoopFor(BB))
116 if (BB == ML->getLoopLatch()) {
117 MachineBasicBlock *Header = ML->getHeader();
118 for (MachineBasicBlock::livein_iterator I = Header->livein_begin(),
119 E = Header->livein_end(); I != E; ++I)
120 LoopLiveInRegs.insert(*I);
121 LoopRegs.VisitLoop(ML);
122 }
123}
124
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000125void ScheduleDAGInstrs::BuildSchedGraph() {
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000126 // We'll be allocating one SUnit for each instruction, plus one for
127 // the region exit node.
Dan Gohman343f0c02008-11-19 23:18:57 +0000128 SUnits.reserve(BB->size());
129
Dan Gohman6a9041e2008-12-04 01:35:46 +0000130 // We build scheduling units by walking a block's instruction list from bottom
131 // to top.
132
Dan Gohman6a9041e2008-12-04 01:35:46 +0000133 // Remember where a generic side-effecting instruction is as we procede. If
134 // ChainMMO is null, this is assumed to have arbitrary side-effects. If
135 // ChainMMO is non-null, then Chain makes only a single memory reference.
136 SUnit *Chain = 0;
137 MachineMemOperand *ChainMMO = 0;
138
139 // Memory references to specific known memory locations are tracked so that
140 // they can be given more precise dependencies.
141 std::map<const Value *, SUnit *> MemDefs;
142 std::map<const Value *, std::vector<SUnit *> > MemUses;
143
Dan Gohman3f237442008-12-16 03:25:46 +0000144 // Check to see if the scheduler cares about latencies.
145 bool UnitLatencies = ForceUnitLatencies();
146
Dan Gohman8749b612008-12-16 03:35:01 +0000147 // Ask the target if address-backscheduling is desirable, and if so how much.
David Goodwin71046162009-08-13 16:05:04 +0000148 const TargetSubtarget &ST = TM.getSubtarget<TargetSubtarget>();
149 unsigned SpecialAddressLatency = ST.getSpecialAddressLatency();
Dan Gohman8749b612008-12-16 03:35:01 +0000150
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000151 // Walk the list of instructions, from bottom moving up.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000152 for (MachineBasicBlock::iterator MII = InsertPos, MIE = Begin;
Dan Gohman343f0c02008-11-19 23:18:57 +0000153 MII != MIE; --MII) {
154 MachineInstr *MI = prior(MII);
Dan Gohman3f237442008-12-16 03:25:46 +0000155 const TargetInstrDesc &TID = MI->getDesc();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000156 assert(!TID.isTerminator() && !MI->isLabel() &&
157 "Cannot schedule terminators or labels!");
158 // Create the SUnit for this MI.
Dan Gohman343f0c02008-11-19 23:18:57 +0000159 SUnit *SU = NewSUnit(MI);
160
Dan Gohman54e4c362008-12-09 22:54:47 +0000161 // Assign the Latency field of SU using target-provided information.
Dan Gohman3f237442008-12-16 03:25:46 +0000162 if (UnitLatencies)
163 SU->Latency = 1;
164 else
165 ComputeLatency(SU);
Dan Gohman54e4c362008-12-09 22:54:47 +0000166
Dan Gohman6a9041e2008-12-04 01:35:46 +0000167 // Add register-based dependencies (data, anti, and output).
Dan Gohman343f0c02008-11-19 23:18:57 +0000168 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
169 const MachineOperand &MO = MI->getOperand(j);
170 if (!MO.isReg()) continue;
171 unsigned Reg = MO.getReg();
172 if (Reg == 0) continue;
173
174 assert(TRI->isPhysicalRegister(Reg) && "Virtual register encountered!");
175 std::vector<SUnit *> &UseList = Uses[Reg];
Dan Gohman3f237442008-12-16 03:25:46 +0000176 std::vector<SUnit *> &DefList = Defs[Reg];
David Goodwind94a4e52009-08-10 15:55:25 +0000177 // Optionally add output and anti dependencies. For anti
178 // dependencies we use a latency of 0 because for a multi-issue
179 // target we want to allow the defining instruction to issue
180 // in the same cycle as the using instruction.
181 // TODO: Using a latency of 1 here for output dependencies assumes
182 // there's no cost for reusing registers.
Dan Gohman54e4c362008-12-09 22:54:47 +0000183 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
David Goodwind94a4e52009-08-10 15:55:25 +0000184 unsigned AOLatency = (Kind == SDep::Anti) ? 0 : 1;
Dan Gohman3f237442008-12-16 03:25:46 +0000185 for (unsigned i = 0, e = DefList.size(); i != e; ++i) {
186 SUnit *DefSU = DefList[i];
187 if (DefSU != SU &&
188 (Kind != SDep::Output || !MO.isDead() ||
189 !DefSU->getInstr()->registerDefIsDead(Reg)))
David Goodwind94a4e52009-08-10 15:55:25 +0000190 DefSU->addPred(SDep(SU, Kind, AOLatency, /*Reg=*/Reg));
Dan Gohman3f237442008-12-16 03:25:46 +0000191 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000192 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
Dan Gohman3f237442008-12-16 03:25:46 +0000193 std::vector<SUnit *> &DefList = Defs[*Alias];
194 for (unsigned i = 0, e = DefList.size(); i != e; ++i) {
195 SUnit *DefSU = DefList[i];
196 if (DefSU != SU &&
197 (Kind != SDep::Output || !MO.isDead() ||
198 !DefSU->getInstr()->registerDefIsDead(Reg)))
David Goodwind94a4e52009-08-10 15:55:25 +0000199 DefSU->addPred(SDep(SU, Kind, AOLatency, /*Reg=*/ *Alias));
Dan Gohman3f237442008-12-16 03:25:46 +0000200 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000201 }
202
203 if (MO.isDef()) {
204 // Add any data dependencies.
Dan Gohman3f237442008-12-16 03:25:46 +0000205 unsigned DataLatency = SU->Latency;
206 for (unsigned i = 0, e = UseList.size(); i != e; ++i) {
207 SUnit *UseSU = UseList[i];
208 if (UseSU != SU) {
Dan Gohman8749b612008-12-16 03:35:01 +0000209 unsigned LDataLatency = DataLatency;
210 // Optionally add in a special extra latency for nodes that
211 // feed addresses.
212 // TODO: Do this for register aliases too.
David Goodwindc4bdcd2009-08-19 16:08:58 +0000213 // TODO: Perhaps we should get rid of
214 // SpecialAddressLatency and just move this into
215 // adjustSchedDependency for the targets that care about
216 // it.
Dan Gohman8749b612008-12-16 03:35:01 +0000217 if (SpecialAddressLatency != 0 && !UnitLatencies) {
218 MachineInstr *UseMI = UseSU->getInstr();
219 const TargetInstrDesc &UseTID = UseMI->getDesc();
220 int RegUseIndex = UseMI->findRegisterUseOperandIdx(Reg);
221 assert(RegUseIndex >= 0 && "UseMI doesn's use register!");
222 if ((UseTID.mayLoad() || UseTID.mayStore()) &&
223 (unsigned)RegUseIndex < UseTID.getNumOperands() &&
224 UseTID.OpInfo[RegUseIndex].isLookupPtrRegClass())
225 LDataLatency += SpecialAddressLatency;
226 }
David Goodwindc4bdcd2009-08-19 16:08:58 +0000227 // Adjust the dependence latency using operand def/use
228 // information (if any), and then allow the target to
229 // perform its own adjustments.
David Goodwin71046162009-08-13 16:05:04 +0000230 const SDep& dep = SDep(SU, SDep::Data, LDataLatency, Reg);
David Goodwindc4bdcd2009-08-19 16:08:58 +0000231 if (!UnitLatencies) {
232 ComputeOperandLatency(SU, UseSU, (SDep &)dep);
233 ST.adjustSchedDependency(SU, UseSU, (SDep &)dep);
234 }
David Goodwin71046162009-08-13 16:05:04 +0000235 UseSU->addPred(dep);
Dan Gohman3f237442008-12-16 03:25:46 +0000236 }
237 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000238 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
239 std::vector<SUnit *> &UseList = Uses[*Alias];
Dan Gohman3f237442008-12-16 03:25:46 +0000240 for (unsigned i = 0, e = UseList.size(); i != e; ++i) {
241 SUnit *UseSU = UseList[i];
David Goodwin71046162009-08-13 16:05:04 +0000242 if (UseSU != SU) {
243 const SDep& dep = SDep(SU, SDep::Data, DataLatency, *Alias);
David Goodwindc4bdcd2009-08-19 16:08:58 +0000244 if (!UnitLatencies) {
245 ComputeOperandLatency(SU, UseSU, (SDep &)dep);
246 ST.adjustSchedDependency(SU, UseSU, (SDep &)dep);
247 }
David Goodwin71046162009-08-13 16:05:04 +0000248 UseSU->addPred(dep);
249 }
Dan Gohman3f237442008-12-16 03:25:46 +0000250 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000251 }
252
Dan Gohman8749b612008-12-16 03:35:01 +0000253 // If a def is going to wrap back around to the top of the loop,
254 // backschedule it.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000255 if (!UnitLatencies && DefList.empty()) {
Dan Gohman8749b612008-12-16 03:35:01 +0000256 LoopDependencies::LoopDeps::iterator I = LoopRegs.Deps.find(Reg);
257 if (I != LoopRegs.Deps.end()) {
258 const MachineOperand *UseMO = I->second.first;
259 unsigned Count = I->second.second;
260 const MachineInstr *UseMI = UseMO->getParent();
261 unsigned UseMOIdx = UseMO - &UseMI->getOperand(0);
262 const TargetInstrDesc &UseTID = UseMI->getDesc();
263 // TODO: If we knew the total depth of the region here, we could
264 // handle the case where the whole loop is inside the region but
265 // is large enough that the isScheduleHigh trick isn't needed.
266 if (UseMOIdx < UseTID.getNumOperands()) {
267 // Currently, we only support scheduling regions consisting of
268 // single basic blocks. Check to see if the instruction is in
269 // the same region by checking to see if it has the same parent.
270 if (UseMI->getParent() != MI->getParent()) {
271 unsigned Latency = SU->Latency;
272 if (UseTID.OpInfo[UseMOIdx].isLookupPtrRegClass())
273 Latency += SpecialAddressLatency;
274 // This is a wild guess as to the portion of the latency which
275 // will be overlapped by work done outside the current
276 // scheduling region.
277 Latency -= std::min(Latency, Count);
278 // Add the artifical edge.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000279 ExitSU.addPred(SDep(SU, SDep::Order, Latency,
280 /*Reg=*/0, /*isNormalMemory=*/false,
281 /*isMustAlias=*/false,
282 /*isArtificial=*/true));
Dan Gohman8749b612008-12-16 03:35:01 +0000283 } else if (SpecialAddressLatency > 0 &&
284 UseTID.OpInfo[UseMOIdx].isLookupPtrRegClass()) {
285 // The entire loop body is within the current scheduling region
286 // and the latency of this operation is assumed to be greater
287 // than the latency of the loop.
288 // TODO: Recursively mark data-edge predecessors as
289 // isScheduleHigh too.
290 SU->isScheduleHigh = true;
291 }
292 }
293 LoopRegs.Deps.erase(I);
294 }
295 }
296
Dan Gohman343f0c02008-11-19 23:18:57 +0000297 UseList.clear();
Dan Gohman3f237442008-12-16 03:25:46 +0000298 if (!MO.isDead())
299 DefList.clear();
300 DefList.push_back(SU);
Dan Gohman343f0c02008-11-19 23:18:57 +0000301 } else {
302 UseList.push_back(SU);
303 }
304 }
Dan Gohman6a9041e2008-12-04 01:35:46 +0000305
306 // Add chain dependencies.
307 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
308 // after stack slots are lowered to actual addresses.
309 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
310 // produce more precise dependence information.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000311 if (TID.isCall() || TID.hasUnmodeledSideEffects()) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000312 new_chain:
Dan Gohmana629b482008-12-08 17:50:35 +0000313 // This is the conservative case. Add dependencies on all memory
314 // references.
Dan Gohman343f0c02008-11-19 23:18:57 +0000315 if (Chain)
Dan Gohman54e4c362008-12-09 22:54:47 +0000316 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000317 Chain = SU;
Dan Gohman343f0c02008-11-19 23:18:57 +0000318 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Dan Gohman54e4c362008-12-09 22:54:47 +0000319 PendingLoads[k]->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman343f0c02008-11-19 23:18:57 +0000320 PendingLoads.clear();
Dan Gohman6a9041e2008-12-04 01:35:46 +0000321 for (std::map<const Value *, SUnit *>::iterator I = MemDefs.begin(),
322 E = MemDefs.end(); I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000323 I->second->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000324 I->second = SU;
325 }
326 for (std::map<const Value *, std::vector<SUnit *> >::iterator I =
327 MemUses.begin(), E = MemUses.end(); I != E; ++I) {
328 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Dan Gohman54e4c362008-12-09 22:54:47 +0000329 I->second[i]->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000330 I->second.clear();
331 }
332 // See if it is known to just have a single memory reference.
333 MachineInstr *ChainMI = Chain->getInstr();
334 const TargetInstrDesc &ChainTID = ChainMI->getDesc();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000335 if (!ChainTID.isCall() &&
Dan Gohman6a9041e2008-12-04 01:35:46 +0000336 !ChainTID.hasUnmodeledSideEffects() &&
337 ChainMI->hasOneMemOperand() &&
338 !ChainMI->memoperands_begin()->isVolatile() &&
339 ChainMI->memoperands_begin()->getValue())
340 // We know that the Chain accesses one specific memory location.
341 ChainMMO = &*ChainMI->memoperands_begin();
342 else
343 // Unknown memory accesses. Assume the worst.
344 ChainMMO = 0;
345 } else if (TID.mayStore()) {
Dan Gohman3311a1f2009-01-30 02:49:14 +0000346 if (const Value *V = getUnderlyingObjectForInstr(MI)) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000347 // A store to a specific PseudoSourceValue. Add precise dependencies.
Dan Gohman6a9041e2008-12-04 01:35:46 +0000348 // Handle the def in MemDefs, if there is one.
349 std::map<const Value *, SUnit *>::iterator I = MemDefs.find(V);
350 if (I != MemDefs.end()) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000351 I->second->addPred(SDep(SU, SDep::Order, SU->Latency, /*Reg=*/0,
352 /*isNormalMemory=*/true));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000353 I->second = SU;
354 } else {
355 MemDefs[V] = SU;
356 }
357 // Handle the uses in MemUses, if there are any.
Dan Gohmana629b482008-12-08 17:50:35 +0000358 std::map<const Value *, std::vector<SUnit *> >::iterator J =
359 MemUses.find(V);
Dan Gohman6a9041e2008-12-04 01:35:46 +0000360 if (J != MemUses.end()) {
361 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Dan Gohman54e4c362008-12-09 22:54:47 +0000362 J->second[i]->addPred(SDep(SU, SDep::Order, SU->Latency, /*Reg=*/0,
363 /*isNormalMemory=*/true));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000364 J->second.clear();
365 }
Dan Gohman3311a1f2009-01-30 02:49:14 +0000366 // Add dependencies from all the PendingLoads, since without
367 // memoperands we must assume they alias anything.
368 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
369 PendingLoads[k]->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000370 // Add a general dependence too, if needed.
371 if (Chain)
Dan Gohman54e4c362008-12-09 22:54:47 +0000372 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000373 } else
374 // Treat all other stores conservatively.
375 goto new_chain;
376 } else if (TID.mayLoad()) {
377 if (TII->isInvariantLoad(MI)) {
378 // Invariant load, no chain dependencies needed!
Dan Gohman3311a1f2009-01-30 02:49:14 +0000379 } else if (const Value *V = getUnderlyingObjectForInstr(MI)) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000380 // A load from a specific PseudoSourceValue. Add precise dependencies.
Dan Gohman6a9041e2008-12-04 01:35:46 +0000381 std::map<const Value *, SUnit *>::iterator I = MemDefs.find(V);
382 if (I != MemDefs.end())
Dan Gohman54e4c362008-12-09 22:54:47 +0000383 I->second->addPred(SDep(SU, SDep::Order, SU->Latency, /*Reg=*/0,
384 /*isNormalMemory=*/true));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000385 MemUses[V].push_back(SU);
386
387 // Add a general dependence too, if needed.
388 if (Chain && (!ChainMMO ||
389 (ChainMMO->isStore() || ChainMMO->isVolatile())))
Dan Gohman54e4c362008-12-09 22:54:47 +0000390 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000391 } else if (MI->hasVolatileMemoryRef()) {
392 // Treat volatile loads conservatively. Note that this includes
393 // cases where memoperand information is unavailable.
394 goto new_chain;
395 } else {
Dan Gohman3311a1f2009-01-30 02:49:14 +0000396 // A normal load. Depend on the general chain, as well as on
397 // all stores. In the absense of MachineMemOperand information,
398 // we can't even assume that the load doesn't alias well-behaved
399 // memory locations.
Dan Gohman6a9041e2008-12-04 01:35:46 +0000400 if (Chain)
Dan Gohman54e4c362008-12-09 22:54:47 +0000401 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman3311a1f2009-01-30 02:49:14 +0000402 for (std::map<const Value *, SUnit *>::iterator I = MemDefs.begin(),
403 E = MemDefs.end(); I != E; ++I)
404 I->second->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000405 PendingLoads.push_back(SU);
406 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000407 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000408 }
Dan Gohman79ce2762009-01-15 19:20:50 +0000409
410 for (int i = 0, e = TRI->getNumRegs(); i != e; ++i) {
411 Defs[i].clear();
412 Uses[i].clear();
413 }
414 PendingLoads.clear();
Dan Gohman343f0c02008-11-19 23:18:57 +0000415}
416
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000417void ScheduleDAGInstrs::FinishBlock() {
418 // Nothing to do.
419}
420
Dan Gohmanc8c28272008-11-21 00:12:10 +0000421void ScheduleDAGInstrs::ComputeLatency(SUnit *SU) {
422 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
423
David Goodwind94a4e52009-08-10 15:55:25 +0000424 // Compute the latency for the node.
Dan Gohmanc8c28272008-11-21 00:12:10 +0000425 SU->Latency =
David Goodwindc4bdcd2009-08-19 16:08:58 +0000426 InstrItins.getStageLatency(SU->getInstr()->getDesc().getSchedClass());
Dan Gohman4ea8e852008-12-16 02:38:22 +0000427
428 // Simplistic target-independent heuristic: assume that loads take
429 // extra time.
430 if (InstrItins.isEmpty())
431 if (SU->getInstr()->getDesc().mayLoad())
432 SU->Latency += 2;
Dan Gohmanc8c28272008-11-21 00:12:10 +0000433}
434
David Goodwindc4bdcd2009-08-19 16:08:58 +0000435void ScheduleDAGInstrs::ComputeOperandLatency(SUnit *Def, SUnit *Use,
436 SDep& dep) const {
437 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
438 if (InstrItins.isEmpty())
439 return;
440
441 // For a data dependency with a known register...
442 if ((dep.getKind() != SDep::Data) || (dep.getReg() == 0))
443 return;
444
445 const unsigned Reg = dep.getReg();
446
447 // ... find the definition of the register in the defining
448 // instruction
449 MachineInstr *DefMI = Def->getInstr();
450 int DefIdx = DefMI->findRegisterDefOperandIdx(Reg);
451 if (DefIdx != -1) {
452 int DefCycle = InstrItins.getOperandCycle(DefMI->getDesc().getSchedClass(), DefIdx);
453 if (DefCycle >= 0) {
454 MachineInstr *UseMI = Use->getInstr();
455 const unsigned UseClass = UseMI->getDesc().getSchedClass();
456
457 // For all uses of the register, calculate the maxmimum latency
458 int Latency = -1;
459 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
460 const MachineOperand &MO = UseMI->getOperand(i);
461 if (!MO.isReg() || !MO.isUse())
462 continue;
463 unsigned MOReg = MO.getReg();
464 if (MOReg != Reg)
465 continue;
466
467 int UseCycle = InstrItins.getOperandCycle(UseClass, i);
468 if (UseCycle >= 0)
469 Latency = std::max(Latency, DefCycle - UseCycle + 1);
470 }
471
472 // If we found a latency, then replace the existing dependence latency.
473 if (Latency >= 0)
474 dep.setLatency(Latency);
475 }
476 }
477}
478
Dan Gohman343f0c02008-11-19 23:18:57 +0000479void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
480 SU->getInstr()->dump();
481}
482
483std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
484 std::string s;
485 raw_string_ostream oss(s);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000486 if (SU == &EntrySU)
487 oss << "<entry>";
488 else if (SU == &ExitSU)
489 oss << "<exit>";
490 else
491 SU->getInstr()->print(oss);
Dan Gohman343f0c02008-11-19 23:18:57 +0000492 return oss.str();
493}
494
495// EmitSchedule - Emit the machine code in scheduled order.
Evan Chengfb2e7522009-09-18 21:02:19 +0000496MachineBasicBlock *ScheduleDAGInstrs::
497EmitSchedule(DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000498 // For MachineInstr-based scheduling, we're rescheduling the instructions in
499 // the block, so start by removing them from the block.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000500 while (Begin != InsertPos) {
Dan Gohmanf7119392009-01-16 22:10:20 +0000501 MachineBasicBlock::iterator I = Begin;
502 ++Begin;
503 BB->remove(I);
504 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000505
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000506 // Then re-insert them according to the given schedule.
Dan Gohman343f0c02008-11-19 23:18:57 +0000507 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
508 SUnit *SU = Sequence[i];
509 if (!SU) {
510 // Null SUnit* is a noop.
511 EmitNoop();
512 continue;
513 }
514
Dan Gohman47ac0f02009-02-11 04:27:20 +0000515 BB->insert(InsertPos, SU->getInstr());
Dan Gohman343f0c02008-11-19 23:18:57 +0000516 }
517
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000518 // Update the Begin iterator, as the first instruction in the block
519 // may have been scheduled later.
520 if (!Sequence.empty())
521 Begin = Sequence[0]->getInstr();
522
Dan Gohman343f0c02008-11-19 23:18:57 +0000523 return BB;
524}