blob: b55e6069ec9b1af40e0cc2995fbce6e1d75aeaf7 [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"
Dan Gohmanc76909a2009-09-25 20:36:54 +000020#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohman3f237442008-12-16 03:25:46 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman6a9041e2008-12-04 01:35:46 +000022#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000023#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohman3f237442008-12-16 03:25:46 +000026#include "llvm/Target/TargetSubtarget.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000027#include "llvm/Support/Debug.h"
28#include "llvm/Support/raw_ostream.h"
Dan Gohman3f237442008-12-16 03:25:46 +000029#include "llvm/ADT/SmallSet.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000030using namespace llvm;
31
Dan Gohman79ce2762009-01-15 19:20:50 +000032ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Dan Gohman3f237442008-12-16 03:25:46 +000033 const MachineLoopInfo &mli,
34 const MachineDominatorTree &mdt)
Dan Gohman9e64bbb2009-02-10 23:27:53 +000035 : ScheduleDAG(mf), MLI(mli), MDT(mdt), LoopRegs(MLI, MDT) {}
Dan Gohman343f0c02008-11-19 23:18:57 +000036
Dan Gohman47ac0f02009-02-11 04:27:20 +000037/// Run - perform scheduling.
38///
39void ScheduleDAGInstrs::Run(MachineBasicBlock *bb,
40 MachineBasicBlock::iterator begin,
41 MachineBasicBlock::iterator end,
42 unsigned endcount) {
43 BB = bb;
44 Begin = begin;
45 InsertPosIndex = endcount;
46
47 ScheduleDAG::Run(bb, end);
48}
49
Dan Gohman3311a1f2009-01-30 02:49:14 +000050/// getUnderlyingObjectFromInt - This is the function that does the work of
51/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
52static const Value *getUnderlyingObjectFromInt(const Value *V) {
53 do {
Dan Gohman8906f952009-07-17 20:58:59 +000054 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman3311a1f2009-01-30 02:49:14 +000055 // If we find a ptrtoint, we can transfer control back to the
56 // regular getUnderlyingObjectFromInt.
Dan Gohman8906f952009-07-17 20:58:59 +000057 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman3311a1f2009-01-30 02:49:14 +000058 return U->getOperand(0);
59 // If we find an add of a constant or a multiplied value, it's
60 // likely that the other operand will lead us to the base
61 // object. We don't have to worry about the case where the
Dan Gohman748f98f2009-08-07 01:26:06 +000062 // object address is somehow being computed by the multiply,
Dan Gohman3311a1f2009-01-30 02:49:14 +000063 // because our callers only care when the result is an
64 // identifibale object.
Dan Gohman8906f952009-07-17 20:58:59 +000065 if (U->getOpcode() != Instruction::Add ||
Dan Gohman3311a1f2009-01-30 02:49:14 +000066 (!isa<ConstantInt>(U->getOperand(1)) &&
Dan Gohman8906f952009-07-17 20:58:59 +000067 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul))
Dan Gohman3311a1f2009-01-30 02:49:14 +000068 return V;
69 V = U->getOperand(0);
70 } else {
71 return V;
72 }
73 assert(isa<IntegerType>(V->getType()) && "Unexpected operand type!");
74 } while (1);
75}
76
77/// getUnderlyingObject - This is a wrapper around Value::getUnderlyingObject
78/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
79static const Value *getUnderlyingObject(const Value *V) {
80 // First just call Value::getUnderlyingObject to let it do what it does.
81 do {
82 V = V->getUnderlyingObject();
83 // If it found an inttoptr, use special code to continue climing.
Dan Gohman8906f952009-07-17 20:58:59 +000084 if (Operator::getOpcode(V) != Instruction::IntToPtr)
Dan Gohman3311a1f2009-01-30 02:49:14 +000085 break;
86 const Value *O = getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
87 // If that succeeded in finding a pointer, continue the search.
88 if (!isa<PointerType>(O->getType()))
89 break;
90 V = O;
91 } while (1);
92 return V;
93}
94
95/// getUnderlyingObjectForInstr - If this machine instr has memory reference
96/// information and it can be tracked to a normal reference to a known
97/// object, return the Value for that object. Otherwise return null.
98static const Value *getUnderlyingObjectForInstr(const MachineInstr *MI) {
99 if (!MI->hasOneMemOperand() ||
Dan Gohmanc76909a2009-09-25 20:36:54 +0000100 !(*MI->memoperands_begin())->getValue() ||
101 (*MI->memoperands_begin())->isVolatile())
Dan Gohman3311a1f2009-01-30 02:49:14 +0000102 return 0;
103
Dan Gohmanc76909a2009-09-25 20:36:54 +0000104 const Value *V = (*MI->memoperands_begin())->getValue();
Dan Gohman3311a1f2009-01-30 02:49:14 +0000105 if (!V)
106 return 0;
107
108 V = getUnderlyingObject(V);
109 if (!isa<PseudoSourceValue>(V) && !isIdentifiedObject(V))
110 return 0;
111
112 return V;
113}
114
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000115void ScheduleDAGInstrs::StartBlock(MachineBasicBlock *BB) {
116 if (MachineLoop *ML = MLI.getLoopFor(BB))
117 if (BB == ML->getLoopLatch()) {
118 MachineBasicBlock *Header = ML->getHeader();
119 for (MachineBasicBlock::livein_iterator I = Header->livein_begin(),
120 E = Header->livein_end(); I != E; ++I)
121 LoopLiveInRegs.insert(*I);
122 LoopRegs.VisitLoop(ML);
123 }
124}
125
Dan Gohmanc9a5b9e2008-12-23 18:36:58 +0000126void ScheduleDAGInstrs::BuildSchedGraph() {
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000127 // We'll be allocating one SUnit for each instruction, plus one for
128 // the region exit node.
Dan Gohman343f0c02008-11-19 23:18:57 +0000129 SUnits.reserve(BB->size());
130
Dan Gohman6a9041e2008-12-04 01:35:46 +0000131 // We build scheduling units by walking a block's instruction list from bottom
132 // to top.
133
Dan Gohman6a9041e2008-12-04 01:35:46 +0000134 // Remember where a generic side-effecting instruction is as we procede. If
135 // ChainMMO is null, this is assumed to have arbitrary side-effects. If
136 // ChainMMO is non-null, then Chain makes only a single memory reference.
137 SUnit *Chain = 0;
138 MachineMemOperand *ChainMMO = 0;
139
140 // Memory references to specific known memory locations are tracked so that
141 // they can be given more precise dependencies.
142 std::map<const Value *, SUnit *> MemDefs;
143 std::map<const Value *, std::vector<SUnit *> > MemUses;
144
Dan Gohman3f237442008-12-16 03:25:46 +0000145 // Check to see if the scheduler cares about latencies.
146 bool UnitLatencies = ForceUnitLatencies();
147
Dan Gohman8749b612008-12-16 03:35:01 +0000148 // Ask the target if address-backscheduling is desirable, and if so how much.
David Goodwin71046162009-08-13 16:05:04 +0000149 const TargetSubtarget &ST = TM.getSubtarget<TargetSubtarget>();
150 unsigned SpecialAddressLatency = ST.getSpecialAddressLatency();
Dan Gohman8749b612008-12-16 03:35:01 +0000151
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000152 // Walk the list of instructions, from bottom moving up.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000153 for (MachineBasicBlock::iterator MII = InsertPos, MIE = Begin;
Dan Gohman343f0c02008-11-19 23:18:57 +0000154 MII != MIE; --MII) {
155 MachineInstr *MI = prior(MII);
Dan Gohman3f237442008-12-16 03:25:46 +0000156 const TargetInstrDesc &TID = MI->getDesc();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000157 assert(!TID.isTerminator() && !MI->isLabel() &&
158 "Cannot schedule terminators or labels!");
159 // Create the SUnit for this MI.
Dan Gohman343f0c02008-11-19 23:18:57 +0000160 SUnit *SU = NewSUnit(MI);
161
Dan Gohman54e4c362008-12-09 22:54:47 +0000162 // Assign the Latency field of SU using target-provided information.
Dan Gohman3f237442008-12-16 03:25:46 +0000163 if (UnitLatencies)
164 SU->Latency = 1;
165 else
166 ComputeLatency(SU);
Dan Gohman54e4c362008-12-09 22:54:47 +0000167
Dan Gohman6a9041e2008-12-04 01:35:46 +0000168 // Add register-based dependencies (data, anti, and output).
Dan Gohman343f0c02008-11-19 23:18:57 +0000169 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
170 const MachineOperand &MO = MI->getOperand(j);
171 if (!MO.isReg()) continue;
172 unsigned Reg = MO.getReg();
173 if (Reg == 0) continue;
174
175 assert(TRI->isPhysicalRegister(Reg) && "Virtual register encountered!");
176 std::vector<SUnit *> &UseList = Uses[Reg];
Dan Gohman3f237442008-12-16 03:25:46 +0000177 std::vector<SUnit *> &DefList = Defs[Reg];
David Goodwind94a4e52009-08-10 15:55:25 +0000178 // Optionally add output and anti dependencies. For anti
179 // dependencies we use a latency of 0 because for a multi-issue
180 // target we want to allow the defining instruction to issue
181 // in the same cycle as the using instruction.
182 // TODO: Using a latency of 1 here for output dependencies assumes
183 // there's no cost for reusing registers.
Dan Gohman54e4c362008-12-09 22:54:47 +0000184 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
David Goodwind94a4e52009-08-10 15:55:25 +0000185 unsigned AOLatency = (Kind == SDep::Anti) ? 0 : 1;
Dan Gohman3f237442008-12-16 03:25:46 +0000186 for (unsigned i = 0, e = DefList.size(); i != e; ++i) {
187 SUnit *DefSU = DefList[i];
188 if (DefSU != SU &&
189 (Kind != SDep::Output || !MO.isDead() ||
190 !DefSU->getInstr()->registerDefIsDead(Reg)))
David Goodwind94a4e52009-08-10 15:55:25 +0000191 DefSU->addPred(SDep(SU, Kind, AOLatency, /*Reg=*/Reg));
Dan Gohman3f237442008-12-16 03:25:46 +0000192 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000193 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
Dan Gohman3f237442008-12-16 03:25:46 +0000194 std::vector<SUnit *> &DefList = Defs[*Alias];
195 for (unsigned i = 0, e = DefList.size(); i != e; ++i) {
196 SUnit *DefSU = DefList[i];
197 if (DefSU != SU &&
198 (Kind != SDep::Output || !MO.isDead() ||
199 !DefSU->getInstr()->registerDefIsDead(Reg)))
David Goodwind94a4e52009-08-10 15:55:25 +0000200 DefSU->addPred(SDep(SU, Kind, AOLatency, /*Reg=*/ *Alias));
Dan Gohman3f237442008-12-16 03:25:46 +0000201 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000202 }
203
204 if (MO.isDef()) {
205 // Add any data dependencies.
Dan Gohman3f237442008-12-16 03:25:46 +0000206 unsigned DataLatency = SU->Latency;
207 for (unsigned i = 0, e = UseList.size(); i != e; ++i) {
208 SUnit *UseSU = UseList[i];
209 if (UseSU != SU) {
Dan Gohman8749b612008-12-16 03:35:01 +0000210 unsigned LDataLatency = DataLatency;
211 // Optionally add in a special extra latency for nodes that
212 // feed addresses.
213 // TODO: Do this for register aliases too.
David Goodwindc4bdcd2009-08-19 16:08:58 +0000214 // TODO: Perhaps we should get rid of
215 // SpecialAddressLatency and just move this into
216 // adjustSchedDependency for the targets that care about
217 // it.
Dan Gohman8749b612008-12-16 03:35:01 +0000218 if (SpecialAddressLatency != 0 && !UnitLatencies) {
219 MachineInstr *UseMI = UseSU->getInstr();
220 const TargetInstrDesc &UseTID = UseMI->getDesc();
221 int RegUseIndex = UseMI->findRegisterUseOperandIdx(Reg);
222 assert(RegUseIndex >= 0 && "UseMI doesn's use register!");
223 if ((UseTID.mayLoad() || UseTID.mayStore()) &&
224 (unsigned)RegUseIndex < UseTID.getNumOperands() &&
225 UseTID.OpInfo[RegUseIndex].isLookupPtrRegClass())
226 LDataLatency += SpecialAddressLatency;
227 }
David Goodwindc4bdcd2009-08-19 16:08:58 +0000228 // Adjust the dependence latency using operand def/use
229 // information (if any), and then allow the target to
230 // perform its own adjustments.
David Goodwin71046162009-08-13 16:05:04 +0000231 const SDep& dep = SDep(SU, SDep::Data, LDataLatency, Reg);
David Goodwindc4bdcd2009-08-19 16:08:58 +0000232 if (!UnitLatencies) {
233 ComputeOperandLatency(SU, UseSU, (SDep &)dep);
234 ST.adjustSchedDependency(SU, UseSU, (SDep &)dep);
235 }
David Goodwin71046162009-08-13 16:05:04 +0000236 UseSU->addPred(dep);
Dan Gohman3f237442008-12-16 03:25:46 +0000237 }
238 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000239 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
240 std::vector<SUnit *> &UseList = Uses[*Alias];
Dan Gohman3f237442008-12-16 03:25:46 +0000241 for (unsigned i = 0, e = UseList.size(); i != e; ++i) {
242 SUnit *UseSU = UseList[i];
David Goodwin71046162009-08-13 16:05:04 +0000243 if (UseSU != SU) {
244 const SDep& dep = SDep(SU, SDep::Data, DataLatency, *Alias);
David Goodwindc4bdcd2009-08-19 16:08:58 +0000245 if (!UnitLatencies) {
246 ComputeOperandLatency(SU, UseSU, (SDep &)dep);
247 ST.adjustSchedDependency(SU, UseSU, (SDep &)dep);
248 }
David Goodwin71046162009-08-13 16:05:04 +0000249 UseSU->addPred(dep);
250 }
Dan Gohman3f237442008-12-16 03:25:46 +0000251 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000252 }
253
Dan Gohman8749b612008-12-16 03:35:01 +0000254 // If a def is going to wrap back around to the top of the loop,
255 // backschedule it.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000256 if (!UnitLatencies && DefList.empty()) {
Dan Gohman8749b612008-12-16 03:35:01 +0000257 LoopDependencies::LoopDeps::iterator I = LoopRegs.Deps.find(Reg);
258 if (I != LoopRegs.Deps.end()) {
259 const MachineOperand *UseMO = I->second.first;
260 unsigned Count = I->second.second;
261 const MachineInstr *UseMI = UseMO->getParent();
262 unsigned UseMOIdx = UseMO - &UseMI->getOperand(0);
263 const TargetInstrDesc &UseTID = UseMI->getDesc();
264 // TODO: If we knew the total depth of the region here, we could
265 // handle the case where the whole loop is inside the region but
266 // is large enough that the isScheduleHigh trick isn't needed.
267 if (UseMOIdx < UseTID.getNumOperands()) {
268 // Currently, we only support scheduling regions consisting of
269 // single basic blocks. Check to see if the instruction is in
270 // the same region by checking to see if it has the same parent.
271 if (UseMI->getParent() != MI->getParent()) {
272 unsigned Latency = SU->Latency;
273 if (UseTID.OpInfo[UseMOIdx].isLookupPtrRegClass())
274 Latency += SpecialAddressLatency;
275 // This is a wild guess as to the portion of the latency which
276 // will be overlapped by work done outside the current
277 // scheduling region.
278 Latency -= std::min(Latency, Count);
279 // Add the artifical edge.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000280 ExitSU.addPred(SDep(SU, SDep::Order, Latency,
281 /*Reg=*/0, /*isNormalMemory=*/false,
282 /*isMustAlias=*/false,
283 /*isArtificial=*/true));
Dan Gohman8749b612008-12-16 03:35:01 +0000284 } else if (SpecialAddressLatency > 0 &&
285 UseTID.OpInfo[UseMOIdx].isLookupPtrRegClass()) {
286 // The entire loop body is within the current scheduling region
287 // and the latency of this operation is assumed to be greater
288 // than the latency of the loop.
289 // TODO: Recursively mark data-edge predecessors as
290 // isScheduleHigh too.
291 SU->isScheduleHigh = true;
292 }
293 }
294 LoopRegs.Deps.erase(I);
295 }
296 }
297
Dan Gohman343f0c02008-11-19 23:18:57 +0000298 UseList.clear();
Dan Gohman3f237442008-12-16 03:25:46 +0000299 if (!MO.isDead())
300 DefList.clear();
301 DefList.push_back(SU);
Dan Gohman343f0c02008-11-19 23:18:57 +0000302 } else {
303 UseList.push_back(SU);
304 }
305 }
Dan Gohman6a9041e2008-12-04 01:35:46 +0000306
307 // Add chain dependencies.
308 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
309 // after stack slots are lowered to actual addresses.
310 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
311 // produce more precise dependence information.
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000312 if (TID.isCall() || TID.hasUnmodeledSideEffects()) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000313 new_chain:
Dan Gohmana629b482008-12-08 17:50:35 +0000314 // This is the conservative case. Add dependencies on all memory
315 // references.
Dan Gohman343f0c02008-11-19 23:18:57 +0000316 if (Chain)
Dan Gohman54e4c362008-12-09 22:54:47 +0000317 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000318 Chain = SU;
Dan Gohman343f0c02008-11-19 23:18:57 +0000319 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Dan Gohman54e4c362008-12-09 22:54:47 +0000320 PendingLoads[k]->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman343f0c02008-11-19 23:18:57 +0000321 PendingLoads.clear();
Dan Gohman6a9041e2008-12-04 01:35:46 +0000322 for (std::map<const Value *, SUnit *>::iterator I = MemDefs.begin(),
323 E = MemDefs.end(); I != E; ++I) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000324 I->second->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000325 I->second = SU;
326 }
327 for (std::map<const Value *, std::vector<SUnit *> >::iterator I =
328 MemUses.begin(), E = MemUses.end(); I != E; ++I) {
329 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Dan Gohman54e4c362008-12-09 22:54:47 +0000330 I->second[i]->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000331 I->second.clear();
332 }
333 // See if it is known to just have a single memory reference.
334 MachineInstr *ChainMI = Chain->getInstr();
335 const TargetInstrDesc &ChainTID = ChainMI->getDesc();
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000336 if (!ChainTID.isCall() &&
Dan Gohman6a9041e2008-12-04 01:35:46 +0000337 !ChainTID.hasUnmodeledSideEffects() &&
338 ChainMI->hasOneMemOperand() &&
Dan Gohmanc76909a2009-09-25 20:36:54 +0000339 !(*ChainMI->memoperands_begin())->isVolatile() &&
340 (*ChainMI->memoperands_begin())->getValue())
Dan Gohman6a9041e2008-12-04 01:35:46 +0000341 // We know that the Chain accesses one specific memory location.
Dan Gohmanc76909a2009-09-25 20:36:54 +0000342 ChainMMO = *ChainMI->memoperands_begin();
Dan Gohman6a9041e2008-12-04 01:35:46 +0000343 else
344 // Unknown memory accesses. Assume the worst.
345 ChainMMO = 0;
346 } else if (TID.mayStore()) {
Dan Gohman3311a1f2009-01-30 02:49:14 +0000347 if (const Value *V = getUnderlyingObjectForInstr(MI)) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000348 // A store to a specific PseudoSourceValue. Add precise dependencies.
Dan Gohman6a9041e2008-12-04 01:35:46 +0000349 // Handle the def in MemDefs, if there is one.
350 std::map<const Value *, SUnit *>::iterator I = MemDefs.find(V);
351 if (I != MemDefs.end()) {
Dan Gohman54e4c362008-12-09 22:54:47 +0000352 I->second->addPred(SDep(SU, SDep::Order, SU->Latency, /*Reg=*/0,
353 /*isNormalMemory=*/true));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000354 I->second = SU;
355 } else {
356 MemDefs[V] = SU;
357 }
358 // Handle the uses in MemUses, if there are any.
Dan Gohmana629b482008-12-08 17:50:35 +0000359 std::map<const Value *, std::vector<SUnit *> >::iterator J =
360 MemUses.find(V);
Dan Gohman6a9041e2008-12-04 01:35:46 +0000361 if (J != MemUses.end()) {
362 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Dan Gohman54e4c362008-12-09 22:54:47 +0000363 J->second[i]->addPred(SDep(SU, SDep::Order, SU->Latency, /*Reg=*/0,
364 /*isNormalMemory=*/true));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000365 J->second.clear();
366 }
Dan Gohman3311a1f2009-01-30 02:49:14 +0000367 // Add dependencies from all the PendingLoads, since without
368 // memoperands we must assume they alias anything.
369 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
370 PendingLoads[k]->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000371 // Add a general dependence too, if needed.
372 if (Chain)
Dan Gohman54e4c362008-12-09 22:54:47 +0000373 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000374 } else
375 // Treat all other stores conservatively.
376 goto new_chain;
377 } else if (TID.mayLoad()) {
378 if (TII->isInvariantLoad(MI)) {
379 // Invariant load, no chain dependencies needed!
Dan Gohman3311a1f2009-01-30 02:49:14 +0000380 } else if (const Value *V = getUnderlyingObjectForInstr(MI)) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000381 // A load from a specific PseudoSourceValue. Add precise dependencies.
Dan Gohman6a9041e2008-12-04 01:35:46 +0000382 std::map<const Value *, SUnit *>::iterator I = MemDefs.find(V);
383 if (I != MemDefs.end())
Dan Gohman54e4c362008-12-09 22:54:47 +0000384 I->second->addPred(SDep(SU, SDep::Order, SU->Latency, /*Reg=*/0,
385 /*isNormalMemory=*/true));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000386 MemUses[V].push_back(SU);
387
388 // Add a general dependence too, if needed.
389 if (Chain && (!ChainMMO ||
390 (ChainMMO->isStore() || ChainMMO->isVolatile())))
Dan Gohman54e4c362008-12-09 22:54:47 +0000391 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000392 } else if (MI->hasVolatileMemoryRef()) {
393 // Treat volatile loads conservatively. Note that this includes
394 // cases where memoperand information is unavailable.
395 goto new_chain;
396 } else {
Dan Gohman3311a1f2009-01-30 02:49:14 +0000397 // A normal load. Depend on the general chain, as well as on
398 // all stores. In the absense of MachineMemOperand information,
399 // we can't even assume that the load doesn't alias well-behaved
400 // memory locations.
Dan Gohman6a9041e2008-12-04 01:35:46 +0000401 if (Chain)
Dan Gohman54e4c362008-12-09 22:54:47 +0000402 Chain->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman3311a1f2009-01-30 02:49:14 +0000403 for (std::map<const Value *, SUnit *>::iterator I = MemDefs.begin(),
404 E = MemDefs.end(); I != E; ++I)
405 I->second->addPred(SDep(SU, SDep::Order, SU->Latency));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000406 PendingLoads.push_back(SU);
407 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000408 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000409 }
Dan Gohman79ce2762009-01-15 19:20:50 +0000410
411 for (int i = 0, e = TRI->getNumRegs(); i != e; ++i) {
412 Defs[i].clear();
413 Uses[i].clear();
414 }
415 PendingLoads.clear();
Dan Gohman343f0c02008-11-19 23:18:57 +0000416}
417
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000418void ScheduleDAGInstrs::FinishBlock() {
419 // Nothing to do.
420}
421
Dan Gohmanc8c28272008-11-21 00:12:10 +0000422void ScheduleDAGInstrs::ComputeLatency(SUnit *SU) {
423 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
424
David Goodwind94a4e52009-08-10 15:55:25 +0000425 // Compute the latency for the node.
Dan Gohmanc8c28272008-11-21 00:12:10 +0000426 SU->Latency =
David Goodwindc4bdcd2009-08-19 16:08:58 +0000427 InstrItins.getStageLatency(SU->getInstr()->getDesc().getSchedClass());
Dan Gohman4ea8e852008-12-16 02:38:22 +0000428
429 // Simplistic target-independent heuristic: assume that loads take
430 // extra time.
431 if (InstrItins.isEmpty())
432 if (SU->getInstr()->getDesc().mayLoad())
433 SU->Latency += 2;
Dan Gohmanc8c28272008-11-21 00:12:10 +0000434}
435
David Goodwindc4bdcd2009-08-19 16:08:58 +0000436void ScheduleDAGInstrs::ComputeOperandLatency(SUnit *Def, SUnit *Use,
437 SDep& dep) const {
438 const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
439 if (InstrItins.isEmpty())
440 return;
441
442 // For a data dependency with a known register...
443 if ((dep.getKind() != SDep::Data) || (dep.getReg() == 0))
444 return;
445
446 const unsigned Reg = dep.getReg();
447
448 // ... find the definition of the register in the defining
449 // instruction
450 MachineInstr *DefMI = Def->getInstr();
451 int DefIdx = DefMI->findRegisterDefOperandIdx(Reg);
452 if (DefIdx != -1) {
453 int DefCycle = InstrItins.getOperandCycle(DefMI->getDesc().getSchedClass(), DefIdx);
454 if (DefCycle >= 0) {
455 MachineInstr *UseMI = Use->getInstr();
456 const unsigned UseClass = UseMI->getDesc().getSchedClass();
457
458 // For all uses of the register, calculate the maxmimum latency
459 int Latency = -1;
460 for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) {
461 const MachineOperand &MO = UseMI->getOperand(i);
462 if (!MO.isReg() || !MO.isUse())
463 continue;
464 unsigned MOReg = MO.getReg();
465 if (MOReg != Reg)
466 continue;
467
468 int UseCycle = InstrItins.getOperandCycle(UseClass, i);
469 if (UseCycle >= 0)
470 Latency = std::max(Latency, DefCycle - UseCycle + 1);
471 }
472
473 // If we found a latency, then replace the existing dependence latency.
474 if (Latency >= 0)
475 dep.setLatency(Latency);
476 }
477 }
478}
479
Dan Gohman343f0c02008-11-19 23:18:57 +0000480void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
481 SU->getInstr()->dump();
482}
483
484std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
485 std::string s;
486 raw_string_ostream oss(s);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000487 if (SU == &EntrySU)
488 oss << "<entry>";
489 else if (SU == &ExitSU)
490 oss << "<exit>";
491 else
492 SU->getInstr()->print(oss);
Dan Gohman343f0c02008-11-19 23:18:57 +0000493 return oss.str();
494}
495
496// EmitSchedule - Emit the machine code in scheduled order.
Evan Chengfb2e7522009-09-18 21:02:19 +0000497MachineBasicBlock *ScheduleDAGInstrs::
498EmitSchedule(DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) {
Dan Gohman343f0c02008-11-19 23:18:57 +0000499 // For MachineInstr-based scheduling, we're rescheduling the instructions in
500 // the block, so start by removing them from the block.
Dan Gohman47ac0f02009-02-11 04:27:20 +0000501 while (Begin != InsertPos) {
Dan Gohmanf7119392009-01-16 22:10:20 +0000502 MachineBasicBlock::iterator I = Begin;
503 ++Begin;
504 BB->remove(I);
505 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000506
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000507 // Then re-insert them according to the given schedule.
Dan Gohman343f0c02008-11-19 23:18:57 +0000508 for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
509 SUnit *SU = Sequence[i];
510 if (!SU) {
511 // Null SUnit* is a noop.
512 EmitNoop();
513 continue;
514 }
515
Dan Gohman47ac0f02009-02-11 04:27:20 +0000516 BB->insert(InsertPos, SU->getInstr());
Dan Gohman343f0c02008-11-19 23:18:57 +0000517 }
518
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000519 // Update the Begin iterator, as the first instruction in the block
520 // may have been scheduled later.
521 if (!Sequence.empty())
522 Begin = Sequence[0]->getInstr();
523
Dan Gohman343f0c02008-11-19 23:18:57 +0000524 return BB;
525}