blob: 17d31f48b1d0468663e870d499ef1ada4533ed69 [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
Andrew Trick8b1496c2012-11-28 05:13:28 +000015#define DEBUG_TYPE "misched"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/CodeGen/ScheduleDAGInstrs.h"
17#include "llvm/ADT/MapVector.h"
18#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/SmallSet.h"
Dan Gohman3311a1f2009-01-30 02:49:14 +000020#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohman5034dd32010-12-15 20:02:24 +000021#include "llvm/Analysis/ValueTracking.h"
Andrew Trickb4566a92012-02-22 06:08:11 +000022#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohman3f237442008-12-16 03:25:46 +000023#include "llvm/CodeGen/MachineFunctionPass.h"
Dan Gohmanc76909a2009-09-25 20:36:54 +000024#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohman3f237442008-12-16 03:25:46 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman6a9041e2008-12-04 01:35:46 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trickafc26572012-06-06 19:47:35 +000027#include "llvm/CodeGen/RegisterPressure.h"
Andrew Trick53e98a22012-11-28 05:13:24 +000028#include "llvm/CodeGen/ScheduleDFS.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000029#include "llvm/IR/Operator.h"
Evan Chengab8be962011-06-29 01:14:12 +000030#include "llvm/MC/MCInstrItineraries.h"
Andrew Trickeb05b972012-05-15 18:59:41 +000031#include "llvm/Support/CommandLine.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000032#include "llvm/Support/Debug.h"
Andrew Trick1e94e982012-10-15 18:02:27 +000033#include "llvm/Support/Format.h"
Dan Gohman343f0c02008-11-19 23:18:57 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Target/TargetInstrInfo.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetRegisterInfo.h"
38#include "llvm/Target/TargetSubtargetInfo.h"
Andrew Trickea574332013-08-23 17:48:43 +000039#include <queue>
40
Dan Gohman343f0c02008-11-19 23:18:57 +000041using namespace llvm;
42
Andrew Trickeb05b972012-05-15 18:59:41 +000043static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
44 cl::ZeroOrMore, cl::init(false),
45 cl::desc("Enable use of AA during MI GAD construction"));
46
Dan Gohman79ce2762009-01-15 19:20:50 +000047ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Dan Gohman3f237442008-12-16 03:25:46 +000048 const MachineLoopInfo &mli,
Andrew Trick5e920d72012-01-14 02:17:12 +000049 const MachineDominatorTree &mdt,
Andrew Trickb4566a92012-02-22 06:08:11 +000050 bool IsPostRAFlag,
51 LiveIntervals *lis)
Andrew Trick412cd2f2012-10-10 05:43:09 +000052 : ScheduleDAG(mf), MLI(mli), MDT(mdt), MFI(mf.getFrameInfo()), LIS(lis),
Andrew Trick714973e2012-10-09 23:44:23 +000053 IsPostRA(IsPostRAFlag), CanHandleTerminators(false), FirstDbgValue(0) {
Andrew Trickb4566a92012-02-22 06:08:11 +000054 assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals");
Devang Patelcf4cc842011-06-02 20:07:12 +000055 DbgValues.clear();
Andrew Trickcc77b542012-02-22 06:08:13 +000056 assert(!(IsPostRA && MRI.getNumVirtRegs()) &&
Andrew Trick19273ae2012-02-21 04:51:23 +000057 "Virtual registers must be removed prior to PostRA scheduling");
Andrew Trick781ab472012-09-18 18:20:00 +000058
59 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
60 SchedModel.init(*ST.getSchedModel(), &ST, TII);
Evan Cheng38bdfc62009-10-18 19:58:47 +000061}
Dan Gohman343f0c02008-11-19 23:18:57 +000062
Dan Gohman3311a1f2009-01-30 02:49:14 +000063/// getUnderlyingObjectFromInt - This is the function that does the work of
64/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
65static const Value *getUnderlyingObjectFromInt(const Value *V) {
66 do {
Dan Gohman8906f952009-07-17 20:58:59 +000067 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman3311a1f2009-01-30 02:49:14 +000068 // If we find a ptrtoint, we can transfer control back to the
69 // regular getUnderlyingObjectFromInt.
Dan Gohman8906f952009-07-17 20:58:59 +000070 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman3311a1f2009-01-30 02:49:14 +000071 return U->getOperand(0);
Andrew Trick8f82a082012-11-28 03:42:49 +000072 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman3311a1f2009-01-30 02:49:14 +000073 // likely that the other operand will lead us to the base
74 // object. We don't have to worry about the case where the
Dan Gohman748f98f2009-08-07 01:26:06 +000075 // object address is somehow being computed by the multiply,
Dan Gohman3311a1f2009-01-30 02:49:14 +000076 // because our callers only care when the result is an
Nick Lewycky6b0db5f2012-10-26 04:27:49 +000077 // identifiable object.
Dan Gohman8906f952009-07-17 20:58:59 +000078 if (U->getOpcode() != Instruction::Add ||
Dan Gohman3311a1f2009-01-30 02:49:14 +000079 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick8f82a082012-11-28 03:42:49 +000080 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
81 !isa<PHINode>(U->getOperand(1))))
Dan Gohman3311a1f2009-01-30 02:49:14 +000082 return V;
83 V = U->getOperand(0);
84 } else {
85 return V;
86 }
Duncan Sands1df98592010-02-16 11:11:14 +000087 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman3311a1f2009-01-30 02:49:14 +000088 } while (1);
89}
90
Hal Finkelf2183102012-12-10 18:49:16 +000091/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman3311a1f2009-01-30 02:49:14 +000092/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkelf2183102012-12-10 18:49:16 +000093static void getUnderlyingObjects(const Value *V,
94 SmallVectorImpl<Value *> &Objects) {
95 SmallPtrSet<const Value*, 16> Visited;
96 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman3311a1f2009-01-30 02:49:14 +000097 do {
Hal Finkelf2183102012-12-10 18:49:16 +000098 V = Working.pop_back_val();
99
100 SmallVector<Value *, 4> Objs;
101 GetUnderlyingObjects(const_cast<Value *>(V), Objs);
102
Craig Topperf22fd3f2013-07-03 05:11:49 +0000103 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkelf2183102012-12-10 18:49:16 +0000104 I != IE; ++I) {
105 V = *I;
106 if (!Visited.insert(V))
107 continue;
108 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
109 const Value *O =
110 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
111 if (O->getType()->isPointerTy()) {
112 Working.push_back(O);
113 continue;
114 }
115 }
116 Objects.push_back(const_cast<Value *>(V));
117 }
118 } while (!Working.empty());
Dan Gohman3311a1f2009-01-30 02:49:14 +0000119}
120
Benjamin Kramer04d56132013-06-29 18:41:17 +0000121typedef SmallVector<PointerIntPair<const Value *, 1, bool>, 4>
122UnderlyingObjectsVector;
123
Hal Finkelf2183102012-12-10 18:49:16 +0000124/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman3311a1f2009-01-30 02:49:14 +0000125/// information and it can be tracked to a normal reference to a known
Hal Finkelf2183102012-12-10 18:49:16 +0000126/// object, return the Value for that object.
127static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramer04d56132013-06-29 18:41:17 +0000128 const MachineFrameInfo *MFI,
129 UnderlyingObjectsVector &Objects) {
Dan Gohman3311a1f2009-01-30 02:49:14 +0000130 if (!MI->hasOneMemOperand() ||
Dan Gohmanc76909a2009-09-25 20:36:54 +0000131 !(*MI->memoperands_begin())->getValue() ||
132 (*MI->memoperands_begin())->isVolatile())
Hal Finkelf2183102012-12-10 18:49:16 +0000133 return;
Dan Gohman3311a1f2009-01-30 02:49:14 +0000134
Dan Gohmanc76909a2009-09-25 20:36:54 +0000135 const Value *V = (*MI->memoperands_begin())->getValue();
Dan Gohman3311a1f2009-01-30 02:49:14 +0000136 if (!V)
Hal Finkelf2183102012-12-10 18:49:16 +0000137 return;
Dan Gohman3311a1f2009-01-30 02:49:14 +0000138
Hal Finkelf2183102012-12-10 18:49:16 +0000139 SmallVector<Value *, 4> Objs;
140 getUnderlyingObjects(V, Objs);
Andrew Trickf405b1a2011-05-05 19:24:06 +0000141
Craig Topperf22fd3f2013-07-03 05:11:49 +0000142 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
143 I != IE; ++I) {
Hal Finkelf2183102012-12-10 18:49:16 +0000144 bool MayAlias = true;
145 V = *I;
146
147 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
148 // For now, ignore PseudoSourceValues which may alias LLVM IR values
149 // because the code that uses this function has no way to cope with
150 // such aliases.
151
152 if (PSV->isAliased(MFI)) {
153 Objects.clear();
154 return;
155 }
156
157 MayAlias = PSV->mayAlias(MFI);
158 } else if (!isIdentifiedObject(V)) {
159 Objects.clear();
160 return;
161 }
162
Benjamin Kramer04d56132013-06-29 18:41:17 +0000163 Objects.push_back(UnderlyingObjectsVector::value_type(V, MayAlias));
Evan Chengff89dcb2009-10-18 18:16:27 +0000164 }
Dan Gohman3311a1f2009-01-30 02:49:14 +0000165}
166
Andrew Trick918f38a2012-04-20 20:05:21 +0000167void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
168 BB = bb;
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000169}
170
Andrew Trick953be892012-03-07 23:00:49 +0000171void ScheduleDAGInstrs::finishBlock() {
Andrew Tricka30444a2012-04-20 20:24:33 +0000172 // Subclasses should no longer refer to the old block.
Andrew Trick918f38a2012-04-20 20:05:21 +0000173 BB = 0;
Andrew Trick47c14452012-03-07 05:21:52 +0000174}
175
Andrew Trick47c14452012-03-07 05:21:52 +0000176/// Initialize the DAG and common scheduler state for the current scheduling
177/// region. This does not actually create the DAG, only clears it. The
178/// scheduling driver may call BuildSchedGraph multiple times per scheduling
179/// region.
180void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
181 MachineBasicBlock::iterator begin,
182 MachineBasicBlock::iterator end,
Andrew Trickd2763f62013-08-23 17:48:33 +0000183 unsigned regioninstrs) {
Andrew Trick918f38a2012-04-20 20:05:21 +0000184 assert(bb == BB && "startBlock should set BB");
Andrew Trick68675c62012-03-09 04:29:02 +0000185 RegionBegin = begin;
186 RegionEnd = end;
Andrew Trickd2763f62013-08-23 17:48:33 +0000187 NumRegionInstrs = regioninstrs;
Andrew Trick17d35e52012-03-14 04:00:41 +0000188 MISUnitMap.clear();
Andrew Trick47c14452012-03-07 05:21:52 +0000189
Andrew Trick47c14452012-03-07 05:21:52 +0000190 ScheduleDAG::clearDAG();
191}
192
193/// Close the current scheduling region. Don't clear any state in case the
194/// driver wants to refer to the previous scheduling region.
195void ScheduleDAGInstrs::exitRegion() {
196 // Nothing to do.
197}
198
Andrew Trick953be892012-03-07 23:00:49 +0000199/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Chengec6906b2010-10-23 02:10:46 +0000200/// list of instructions being scheduled to scheduling barrier by adding
201/// the exit SU to the register defs and use list. This is because we want to
202/// make sure instructions which define registers that are either used by
203/// the terminator or are live-out are properly scheduled. This is
204/// especially important when the definition latency of the return value(s)
205/// are too high to be hidden by the branch or when the liveout registers
206/// used by instructions in the fallthrough block.
Andrew Trick953be892012-03-07 23:00:49 +0000207void ScheduleDAGInstrs::addSchedBarrierDeps() {
Andrew Trick68675c62012-03-09 04:29:02 +0000208 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : 0;
Evan Chengec6906b2010-10-23 02:10:46 +0000209 ExitSU.setInstr(ExitMI);
210 bool AllDepKnown = ExitMI &&
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000211 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Chengec6906b2010-10-23 02:10:46 +0000212 if (ExitMI && AllDepKnown) {
213 // If it's a call or a barrier, add dependencies on the defs and uses of
214 // instruction.
215 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
216 const MachineOperand &MO = ExitMI->getOperand(i);
217 if (!MO.isReg() || MO.isDef()) continue;
218 unsigned Reg = MO.getReg();
219 if (Reg == 0) continue;
220
Andrew Trick3c58ba82012-01-14 02:17:18 +0000221 if (TRI->isPhysicalRegister(Reg))
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000222 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Trickd3a74862012-03-16 05:04:25 +0000223 else {
Andrew Trick3c58ba82012-01-14 02:17:18 +0000224 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trick177d87a2012-12-01 01:22:44 +0000225 if (MO.readsReg()) // ignore undef operands
226 addVRegUseDeps(&ExitSU, i);
Andrew Trickd3a74862012-03-16 05:04:25 +0000227 }
Evan Chengec6906b2010-10-23 02:10:46 +0000228 }
229 } else {
230 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengde5fa932010-10-27 23:17:17 +0000231 // uses all the registers that are livein to the successor blocks.
Benjamin Kramera82d5262012-03-16 17:38:19 +0000232 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengde5fa932010-10-27 23:17:17 +0000233 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
234 SE = BB->succ_end(); SI != SE; ++SI)
235 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trickf405b1a2011-05-05 19:24:06 +0000236 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengde5fa932010-10-27 23:17:17 +0000237 unsigned Reg = *I;
Benjamin Kramera82d5262012-03-16 17:38:19 +0000238 if (!Uses.contains(Reg))
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000239 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengde5fa932010-10-27 23:17:17 +0000240 }
Evan Chengec6906b2010-10-23 02:10:46 +0000241 }
242}
243
Andrew Trick81a682a2012-02-23 01:52:38 +0000244/// MO is an operand of SU's instruction that defines a physical register. Add
245/// data dependencies from SU to any uses of the physical register.
Andrew Trickffd25262012-08-23 00:39:43 +0000246void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
247 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trick81a682a2012-02-23 01:52:38 +0000248 assert(MO.isDef() && "expect physreg def");
249
250 // Ask the target if address-backscheduling is desirable, and if so how much.
251 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
Andrew Trick81a682a2012-02-23 01:52:38 +0000252
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000253 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
254 Alias.isValid(); ++Alias) {
Andrew Trick702d4892012-02-24 07:04:55 +0000255 if (!Uses.contains(*Alias))
Andrew Trick81a682a2012-02-23 01:52:38 +0000256 continue;
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000257 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
258 SUnit *UseSU = I->SU;
Andrew Trick81a682a2012-02-23 01:52:38 +0000259 if (UseSU == SU)
260 continue;
Andrew Trick39817f92012-10-08 18:54:00 +0000261
Andrew Trick39817f92012-10-08 18:54:00 +0000262 // Adjust the dependence latency using operand def/use information,
263 // then allow the target to perform its own adjustments.
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000264 int UseOp = I->OpIdx;
Andrew Trickae692f22012-11-12 19:28:57 +0000265 MachineInstr *RegUse = 0;
266 SDep Dep;
267 if (UseOp < 0)
268 Dep = SDep(SU, SDep::Artificial);
269 else {
Andrew Trick4392f0f2013-04-13 06:07:40 +0000270 // Set the hasPhysRegDefs only for physreg defs that have a use within
271 // the scheduling region.
272 SU->hasPhysRegDefs = true;
Andrew Trickae692f22012-11-12 19:28:57 +0000273 Dep = SDep(SU, SDep::Data, *Alias);
274 RegUse = UseSU->getInstr();
Andrew Trickae692f22012-11-12 19:28:57 +0000275 }
276 Dep.setLatency(
Andrew Trickb86a0cd2013-06-15 04:49:57 +0000277 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
278 UseOp));
Andrew Trickb7e02892012-06-05 21:11:27 +0000279
Andrew Trickae692f22012-11-12 19:28:57 +0000280 ST.adjustSchedDependency(SU, UseSU, Dep);
281 UseSU->addPred(Dep);
Andrew Trick81a682a2012-02-23 01:52:38 +0000282 }
283 }
284}
285
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000286/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
287/// this SUnit to following instructions in the same scheduling region that
288/// depend the physical register referenced at OperIdx.
289void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
290 const MachineInstr *MI = SU->getInstr();
291 const MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000292
293 // Optionally add output and anti dependencies. For anti
294 // dependencies we use a latency of 0 because for a multi-issue
295 // target we want to allow the defining instruction to issue
296 // in the same cycle as the using instruction.
297 // TODO: Using a latency of 1 here for output dependencies assumes
298 // there's no cost for reusing registers.
299 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen396618b2012-06-01 23:28:30 +0000300 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
301 Alias.isValid(); ++Alias) {
Andrew Trick702d4892012-02-24 07:04:55 +0000302 if (!Defs.contains(*Alias))
Andrew Trick81a682a2012-02-23 01:52:38 +0000303 continue;
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000304 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
305 SUnit *DefSU = I->SU;
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000306 if (DefSU == &ExitSU)
307 continue;
308 if (DefSU != SU &&
309 (Kind != SDep::Output || !MO.isDead() ||
310 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
311 if (Kind == SDep::Anti)
Andrew Tricka78d3222012-11-06 03:13:46 +0000312 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000313 else {
Andrew Tricka78d3222012-11-06 03:13:46 +0000314 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickb86a0cd2013-06-15 04:49:57 +0000315 Dep.setLatency(
316 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Tricka78d3222012-11-06 03:13:46 +0000317 DefSU->addPred(Dep);
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000318 }
319 }
320 }
321 }
322
Andrew Trick81a682a2012-02-23 01:52:38 +0000323 if (!MO.isDef()) {
Andrew Trick4392f0f2013-04-13 06:07:40 +0000324 SU->hasPhysRegUses = true;
Andrew Trick81a682a2012-02-23 01:52:38 +0000325 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
326 // retrieve the existing SUnits list for this register's uses.
327 // Push this SUnit on the use list.
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000328 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick81a682a2012-02-23 01:52:38 +0000329 }
330 else {
Andrew Trickffd25262012-08-23 00:39:43 +0000331 addPhysRegDataDeps(SU, OperIdx);
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000332 unsigned Reg = MO.getReg();
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000333
Andrew Trick81a682a2012-02-23 01:52:38 +0000334 // clear this register's use list
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000335 if (Uses.contains(Reg))
336 Uses.eraseAll(Reg);
Andrew Trick81a682a2012-02-23 01:52:38 +0000337
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000338 if (!MO.isDead()) {
339 Defs.eraseAll(Reg);
340 } else if (SU->isCall) {
341 // Calls will not be reordered because of chain dependencies (see
342 // below). Since call operands are dead, calls may continue to be added
343 // to the DefList making dependence checking quadratic in the size of
344 // the block. Instead, we leave only one call at the back of the
345 // DefList.
346 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
347 Reg2SUnitsMap::iterator B = P.first;
348 Reg2SUnitsMap::iterator I = P.second;
349 for (bool isBegin = I == B; !isBegin; /* empty */) {
350 isBegin = (--I) == B;
351 if (!I->SU->isCall)
352 break;
353 I = Defs.erase(I);
354 }
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000355 }
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000356
Andrew Trick81a682a2012-02-23 01:52:38 +0000357 // Defs are pushed in the order they are visited and never reordered.
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000358 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000359 }
360}
361
Andrew Trick3c58ba82012-01-14 02:17:18 +0000362/// addVRegDefDeps - Add register output and data dependencies from this SUnit
363/// to instructions that occur later in the same scheduling region if they read
364/// from or write to the virtual register defined at OperIdx.
365///
366/// TODO: Hoist loop induction variable increments. This has to be
367/// reevaluated. Generally, IV scheduling should be done before coalescing.
368void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
369 const MachineInstr *MI = SU->getInstr();
370 unsigned Reg = MI->getOperand(OperIdx).getReg();
371
Andrew Trick4b72ada2012-07-28 01:48:15 +0000372 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick2fc09772012-02-22 18:34:49 +0000373 // The current operand is a def, so we have at least one.
Andrew Trick4b72ada2012-07-28 01:48:15 +0000374 // Check here if there are any others...
Andrew Trick8b5704f2012-07-30 23:48:17 +0000375 if (MRI.hasOneDef(Reg))
Andrew Trick4b72ada2012-07-28 01:48:15 +0000376 return;
Andrew Trickcc77b542012-02-22 06:08:13 +0000377
Andrew Trick3c58ba82012-01-14 02:17:18 +0000378 // Add output dependence to the next nearest def of this vreg.
379 //
380 // Unless this definition is dead, the output dependence should be
381 // transitively redundant with antidependencies from this definition's
382 // uses. We're conservative for now until we have a way to guarantee the uses
383 // are not eliminated sometime during scheduling. The output dependence edge
384 // is also useful if output latency exceeds def-use latency.
Andrew Trickc0ccb8b2012-04-20 20:05:28 +0000385 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trick8ae3ac72012-02-22 21:59:00 +0000386 if (DefI == VRegDefs.end())
387 VRegDefs.insert(VReg2SUnit(Reg, SU));
388 else {
389 SUnit *DefSU = DefI->SU;
390 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Tricka78d3222012-11-06 03:13:46 +0000391 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickb86a0cd2013-06-15 04:49:57 +0000392 Dep.setLatency(
393 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Tricka78d3222012-11-06 03:13:46 +0000394 DefSU->addPred(Dep);
Andrew Trick8ae3ac72012-02-22 21:59:00 +0000395 }
396 DefI->SU = SU;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000397 }
Andrew Trick3c58ba82012-01-14 02:17:18 +0000398}
399
Andrew Trickb4566a92012-02-22 06:08:11 +0000400/// addVRegUseDeps - Add a register data dependency if the instruction that
401/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
402/// register antidependency from this SUnit to instructions that occur later in
403/// the same scheduling region if they write the virtual register.
404///
405/// TODO: Handle ExitSU "uses" properly.
Andrew Trick3c58ba82012-01-14 02:17:18 +0000406void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trickb4566a92012-02-22 06:08:11 +0000407 MachineInstr *MI = SU->getInstr();
408 unsigned Reg = MI->getOperand(OperIdx).getReg();
409
Andrew Trick99093632013-08-23 17:48:39 +0000410 // Record this local VReg use.
411 VRegUses.insert(VReg2SUnit(Reg, SU));
412
Andrew Trickb4566a92012-02-22 06:08:11 +0000413 // Lookup this operand's reaching definition.
414 assert(LIS && "vreg dependencies requires LiveIntervals");
Jakob Stoklund Olesen93e29ce2012-05-20 02:44:38 +0000415 LiveRangeQuery LRQ(LIS->getInterval(Reg), LIS->getInstructionIndex(MI));
416 VNInfo *VNI = LRQ.valueIn();
Andrew Trickc3ad8852012-04-24 18:04:41 +0000417
Andrew Trick63d578b2012-02-23 03:16:24 +0000418 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesen93e29ce2012-05-20 02:44:38 +0000419 assert(VNI && "No value to read by operand");
Andrew Trickb4566a92012-02-22 06:08:11 +0000420 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trick63d578b2012-02-23 03:16:24 +0000421 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trickb4566a92012-02-22 06:08:11 +0000422 if (Def) {
423 SUnit *DefSU = getSUnit(Def);
424 if (DefSU) {
425 // The reaching Def lives within this scheduling region.
426 // Create a data dependence.
Andrew Tricka78d3222012-11-06 03:13:46 +0000427 SDep dep(DefSU, SDep::Data, Reg);
Andrew Tricka98f6002012-10-08 18:53:57 +0000428 // Adjust the dependence latency using operand def/use information, then
429 // allow the target to perform its own adjustments.
430 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickb86a0cd2013-06-15 04:49:57 +0000431 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trickb7e02892012-06-05 21:11:27 +0000432
Andrew Tricka98f6002012-10-08 18:53:57 +0000433 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
434 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trickb4566a92012-02-22 06:08:11 +0000435 SU->addPred(dep);
436 }
437 }
Andrew Trick3c58ba82012-01-14 02:17:18 +0000438
439 // Add antidependence to the following def of the vreg it uses.
Andrew Trickc0ccb8b2012-04-20 20:05:28 +0000440 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trick8ae3ac72012-02-22 21:59:00 +0000441 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Tricka78d3222012-11-06 03:13:46 +0000442 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trickb4566a92012-02-22 06:08:11 +0000443}
Andrew Trick3c58ba82012-01-14 02:17:18 +0000444
Andrew Trickeb05b972012-05-15 18:59:41 +0000445/// Return true if MI is an instruction we are unable to reason about
446/// (like a call or something with unmodeled side effects).
447static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
448 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesenf036f7a2012-08-29 21:19:21 +0000449 (MI->hasOrderedMemoryRef() &&
Andrew Trickeb05b972012-05-15 18:59:41 +0000450 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
451 return true;
452 return false;
453}
454
455// This MI might have either incomplete info, or known to be unsafe
456// to deal with (i.e. volatile object).
457static inline bool isUnsafeMemoryObject(MachineInstr *MI,
458 const MachineFrameInfo *MFI) {
459 if (!MI || MI->memoperands_empty())
460 return true;
461 // We purposefully do no check for hasOneMemOperand() here
462 // in hope to trigger an assert downstream in order to
463 // finish implementation.
464 if ((*MI->memoperands_begin())->isVolatile() ||
465 MI->hasUnmodeledSideEffects())
466 return true;
Andrew Trickeb05b972012-05-15 18:59:41 +0000467 const Value *V = (*MI->memoperands_begin())->getValue();
468 if (!V)
469 return true;
470
Hal Finkelf2183102012-12-10 18:49:16 +0000471 SmallVector<Value *, 4> Objs;
472 getUnderlyingObjects(V, Objs);
Craig Topperf22fd3f2013-07-03 05:11:49 +0000473 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
474 IE = Objs.end(); I != IE; ++I) {
Hal Finkelf2183102012-12-10 18:49:16 +0000475 V = *I;
476
477 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
478 // Similarly to getUnderlyingObjectForInstr:
479 // For now, ignore PseudoSourceValues which may alias LLVM IR values
480 // because the code that uses this function has no way to cope with
481 // such aliases.
482 if (PSV->isAliased(MFI))
483 return true;
484 }
485
486 // Does this pointer refer to a distinct and identifiable object?
487 if (!isIdentifiedObject(V))
Andrew Trickeb05b972012-05-15 18:59:41 +0000488 return true;
489 }
Andrew Trickeb05b972012-05-15 18:59:41 +0000490
491 return false;
492}
493
494/// This returns true if the two MIs need a chain edge betwee them.
495/// If these are not even memory operations, we still may need
496/// chain deps between them. The question really is - could
497/// these two MIs be reordered during scheduling from memory dependency
498/// point of view.
499static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
500 MachineInstr *MIa,
501 MachineInstr *MIb) {
502 // Cover a trivial case - no edge is need to itself.
503 if (MIa == MIb)
504 return false;
505
506 if (isUnsafeMemoryObject(MIa, MFI) || isUnsafeMemoryObject(MIb, MFI))
507 return true;
508
509 // If we are dealing with two "normal" loads, we do not need an edge
510 // between them - they could be reordered.
511 if (!MIa->mayStore() && !MIb->mayStore())
512 return false;
513
514 // To this point analysis is generic. From here on we do need AA.
515 if (!AA)
516 return true;
517
518 MachineMemOperand *MMOa = *MIa->memoperands_begin();
519 MachineMemOperand *MMOb = *MIb->memoperands_begin();
520
521 // FIXME: Need to handle multiple memory operands to support all targets.
522 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
523 llvm_unreachable("Multiple memory operands.");
524
525 // The following interface to AA is fashioned after DAGCombiner::isAlias
526 // and operates with MachineMemOperand offset with some important
527 // assumptions:
528 // - LLVM fundamentally assumes flat address spaces.
529 // - MachineOperand offset can *only* result from legalization and
530 // cannot affect queries other than the trivial case of overlap
531 // checking.
532 // - These offsets never wrap and never step outside
533 // of allocated objects.
534 // - There should never be any negative offsets here.
535 //
536 // FIXME: Modify API to hide this math from "user"
537 // FIXME: Even before we go to AA we can reason locally about some
538 // memory objects. It can save compile time, and possibly catch some
539 // corner cases not currently covered.
540
541 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
542 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
543
544 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
545 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
546 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
547
548 AliasAnalysis::AliasResult AAResult = AA->alias(
549 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
550 MMOa->getTBAAInfo()),
551 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
552 MMOb->getTBAAInfo()));
553
554 return (AAResult != AliasAnalysis::NoAlias);
555}
556
557/// This recursive function iterates over chain deps of SUb looking for
558/// "latest" node that needs a chain edge to SUa.
559static unsigned
560iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
561 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
562 SmallPtrSet<const SUnit*, 16> &Visited) {
563 if (!SUa || !SUb || SUb == ExitSU)
564 return *Depth;
565
566 // Remember visited nodes.
567 if (!Visited.insert(SUb))
568 return *Depth;
569 // If there is _some_ dependency already in place, do not
570 // descend any further.
571 // TODO: Need to make sure that if that dependency got eliminated or ignored
572 // for any reason in the future, we would not violate DAG topology.
573 // Currently it does not happen, but makes an implicit assumption about
574 // future implementation.
575 //
576 // Independently, if we encounter node that is some sort of global
577 // object (like a call) we already have full set of dependencies to it
578 // and we can stop descending.
579 if (SUa->isSucc(SUb) ||
580 isGlobalMemoryObject(AA, SUb->getInstr()))
581 return *Depth;
582
583 // If we do need an edge, or we have exceeded depth budget,
584 // add that edge to the predecessors chain of SUb,
585 // and stop descending.
586 if (*Depth > 200 ||
587 MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Tricka78d3222012-11-06 03:13:46 +0000588 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickeb05b972012-05-15 18:59:41 +0000589 return *Depth;
590 }
591 // Track current depth.
592 (*Depth)++;
593 // Iterate over chain dependencies only.
594 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
595 I != E; ++I)
596 if (I->isCtrl())
597 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited);
598 return *Depth;
599}
600
601/// This function assumes that "downward" from SU there exist
602/// tail/leaf of already constructed DAG. It iterates downward and
603/// checks whether SU can be aliasing any node dominated
604/// by it.
605static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000606 SUnit *SU, SUnit *ExitSU, std::set<SUnit *> &CheckList,
607 unsigned LatencyToLoad) {
Andrew Trickeb05b972012-05-15 18:59:41 +0000608 if (!SU)
609 return;
610
611 SmallPtrSet<const SUnit*, 16> Visited;
612 unsigned Depth = 0;
613
614 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
615 I != IE; ++I) {
616 if (SU == *I)
617 continue;
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000618 if (MIsNeedChainEdge(AA, MFI, SU->getInstr(), (*I)->getInstr())) {
Andrew Tricka78d3222012-11-06 03:13:46 +0000619 SDep Dep(SU, SDep::MayAliasMem);
620 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
621 (*I)->addPred(Dep);
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000622 }
Andrew Trickeb05b972012-05-15 18:59:41 +0000623 // Now go through all the chain successors and iterate from them.
624 // Keep track of visited nodes.
625 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
626 JE = (*I)->Succs.end(); J != JE; ++J)
627 if (J->isCtrl())
628 iterateChainSucc (AA, MFI, SU, J->getSUnit(),
629 ExitSU, &Depth, Visited);
630 }
631}
632
633/// Check whether two objects need a chain edge, if so, add it
634/// otherwise remember the rejected SU.
635static inline
636void addChainDependency (AliasAnalysis *AA, const MachineFrameInfo *MFI,
637 SUnit *SUa, SUnit *SUb,
638 std::set<SUnit *> &RejectList,
639 unsigned TrueMemOrderLatency = 0,
640 bool isNormalMemory = false) {
641 // If this is a false dependency,
642 // do not add the edge, but rememeber the rejected node.
Hal Finkel738073c2013-08-29 03:25:05 +0000643 if (!AA || MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Tricka78d3222012-11-06 03:13:46 +0000644 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
645 Dep.setLatency(TrueMemOrderLatency);
646 SUb->addPred(Dep);
647 }
Andrew Trickeb05b972012-05-15 18:59:41 +0000648 else {
649 // Duplicate entries should be ignored.
650 RejectList.insert(SUb);
651 DEBUG(dbgs() << "\tReject chain dep between SU("
652 << SUa->NodeNum << ") and SU("
653 << SUb->NodeNum << ")\n");
654 }
655}
656
Andrew Trickb4566a92012-02-22 06:08:11 +0000657/// Create an SUnit for each real instruction, numbered in top-down toplological
658/// order. The instruction order A < B, implies that no edge exists from B to A.
659///
660/// Map each real instruction to its SUnit.
661///
Andrew Trick17d35e52012-03-14 04:00:41 +0000662/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
663/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
664/// instead of pointers.
665///
666/// MachineScheduler relies on initSUnits numbering the nodes by their order in
667/// the original instruction list.
Andrew Trickb4566a92012-02-22 06:08:11 +0000668void ScheduleDAGInstrs::initSUnits() {
669 // We'll be allocating one SUnit for each real instruction in the region,
670 // which is contained within a basic block.
Andrew Trickd2763f62013-08-23 17:48:33 +0000671 SUnits.reserve(NumRegionInstrs);
Andrew Trickb4566a92012-02-22 06:08:11 +0000672
Andrew Trick68675c62012-03-09 04:29:02 +0000673 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trickb4566a92012-02-22 06:08:11 +0000674 MachineInstr *MI = I;
675 if (MI->isDebugValue())
676 continue;
677
Andrew Trick953be892012-03-07 23:00:49 +0000678 SUnit *SU = newSUnit(MI);
Andrew Trickb4566a92012-02-22 06:08:11 +0000679 MISUnitMap[MI] = SU;
680
681 SU->isCall = MI->isCall();
682 SU->isCommutable = MI->isCommutable();
683
684 // Assign the Latency field of SU using target-provided information.
Andrew Trick412cd2f2012-10-10 05:43:09 +0000685 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trickb4566a92012-02-22 06:08:11 +0000686 }
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000687}
688
Andrew Trick006e1ab2012-04-24 17:56:43 +0000689/// If RegPressure is non null, compute register pressure as a side effect. The
690/// DAG builder is an efficient place to do it because it already visits
691/// operands.
692void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
693 RegPressureTracker *RPTracker) {
Hal Finkel738073c2013-08-29 03:25:05 +0000694 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
695 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
696 : ST.useAA();
697 AliasAnalysis *AAForDep = UseAA ? AA : 0;
698
Andrew Trickb4566a92012-02-22 06:08:11 +0000699 // Create an SUnit for each real instruction.
700 initSUnits();
Dan Gohman343f0c02008-11-19 23:18:57 +0000701
Dan Gohman6a9041e2008-12-04 01:35:46 +0000702 // We build scheduling units by walking a block's instruction list from bottom
703 // to top.
704
David Goodwin980d4942009-11-09 19:22:17 +0000705 // Remember where a generic side-effecting instruction is as we procede.
706 SUnit *BarrierChain = 0, *AliasChain = 0;
Dan Gohman6a9041e2008-12-04 01:35:46 +0000707
David Goodwin980d4942009-11-09 19:22:17 +0000708 // Memory references to specific known memory locations are tracked
709 // so that they can be given more precise dependencies. We track
710 // separately the known memory locations that may alias and those
711 // that are known not to alias
Sergei Larin009cf9e2012-11-15 17:45:50 +0000712 MapVector<const Value *, SUnit *> AliasMemDefs, NonAliasMemDefs;
713 MapVector<const Value *, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickeb05b972012-05-15 18:59:41 +0000714 std::set<SUnit*> RejectMemNodes;
Dan Gohman6a9041e2008-12-04 01:35:46 +0000715
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000716 // Remove any stale debug info; sometimes BuildSchedGraph is called again
717 // without emitting the info from the previous call.
Devang Patelcf4cc842011-06-02 20:07:12 +0000718 DbgValues.clear();
719 FirstDbgValue = NULL;
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000720
Andrew Trick81a682a2012-02-23 01:52:38 +0000721 assert(Defs.empty() && Uses.empty() &&
722 "Only BuildGraph should update Defs/Uses");
Michael Ilsemanafe77f32013-01-21 18:18:53 +0000723 Defs.setUniverse(TRI->getNumRegs());
724 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick9b668532011-05-06 21:52:52 +0000725
Andrew Trick8ae3ac72012-02-22 21:59:00 +0000726 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick99093632013-08-23 17:48:39 +0000727 VRegUses.clear();
Andrew Trick8ae3ac72012-02-22 21:59:00 +0000728 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick99093632013-08-23 17:48:39 +0000729 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick3c58ba82012-01-14 02:17:18 +0000730
Andrew Trick81a682a2012-02-23 01:52:38 +0000731 // Model data dependencies between instructions being scheduled and the
732 // ExitSU.
Andrew Trick953be892012-03-07 23:00:49 +0000733 addSchedBarrierDeps();
Andrew Trick81a682a2012-02-23 01:52:38 +0000734
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000735 // Walk the list of instructions, from bottom moving up.
Andrew Trick657b75b2012-12-01 01:22:49 +0000736 MachineInstr *DbgMI = NULL;
Andrew Trick68675c62012-03-09 04:29:02 +0000737 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman343f0c02008-11-19 23:18:57 +0000738 MII != MIE; --MII) {
739 MachineInstr *MI = prior(MII);
Andrew Trick657b75b2012-12-01 01:22:49 +0000740 if (MI && DbgMI) {
741 DbgValues.push_back(std::make_pair(DbgMI, MI));
742 DbgMI = NULL;
Devang Patelcf4cc842011-06-02 20:07:12 +0000743 }
744
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000745 if (MI->isDebugValue()) {
Andrew Trick657b75b2012-12-01 01:22:49 +0000746 DbgMI = MI;
Dale Johannesenbfdf7f32010-03-10 22:13:47 +0000747 continue;
748 }
Andrew Trick006e1ab2012-04-24 17:56:43 +0000749 if (RPTracker) {
750 RPTracker->recede();
751 assert(RPTracker->getPos() == prior(MII) && "RPTracker can't find MI");
752 }
Devang Patelcf4cc842011-06-02 20:07:12 +0000753
Sergei Larin91231a62013-02-12 16:36:03 +0000754 assert((CanHandleTerminators || (!MI->isTerminator() && !MI->isLabel())) &&
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000755 "Cannot schedule terminators or labels!");
Dan Gohman343f0c02008-11-19 23:18:57 +0000756
Andrew Trickb4566a92012-02-22 06:08:11 +0000757 SUnit *SU = MISUnitMap[MI];
758 assert(SU && "No SUnit mapped to this MI");
Dan Gohman54e4c362008-12-09 22:54:47 +0000759
Dan Gohman6a9041e2008-12-04 01:35:46 +0000760 // Add register-based dependencies (data, anti, and output).
Andrew Trick04f52e12012-12-18 20:53:01 +0000761 bool HasVRegDef = false;
Dan Gohman343f0c02008-11-19 23:18:57 +0000762 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
763 const MachineOperand &MO = MI->getOperand(j);
764 if (!MO.isReg()) continue;
765 unsigned Reg = MO.getReg();
766 if (Reg == 0) continue;
767
Andrew Trick7ebcaf42012-01-14 02:17:15 +0000768 if (TRI->isPhysicalRegister(Reg))
769 addPhysRegDeps(SU, j);
770 else {
771 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trick04f52e12012-12-18 20:53:01 +0000772 if (MO.isDef()) {
773 HasVRegDef = true;
Andrew Trick3c58ba82012-01-14 02:17:18 +0000774 addVRegDefDeps(SU, j);
Andrew Trick04f52e12012-12-18 20:53:01 +0000775 }
Andrew Trick63d578b2012-02-23 03:16:24 +0000776 else if (MO.readsReg()) // ignore undef operands
Andrew Trick3c58ba82012-01-14 02:17:18 +0000777 addVRegUseDeps(SU, j);
Dan Gohman343f0c02008-11-19 23:18:57 +0000778 }
779 }
Andrew Trick04f52e12012-12-18 20:53:01 +0000780 // If we haven't seen any uses in this scheduling region, create a
781 // dependence edge to ExitSU to model the live-out latency. This is required
782 // for vreg defs with no in-region use, and prefetches with no vreg def.
783 //
784 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
785 // check currently relies on being called before adding chain deps.
786 if (SU->NumSuccs == 0 && SU->Latency > 1
787 && (HasVRegDef || MI->mayLoad())) {
788 SDep Dep(SU, SDep::Artificial);
789 Dep.setLatency(SU->Latency - 1);
790 ExitSU.addPred(Dep);
791 }
Dan Gohman6a9041e2008-12-04 01:35:46 +0000792
793 // Add chain dependencies.
David Goodwin7c9b1ac2009-11-02 17:06:28 +0000794 // Chain dependencies used to enforce memory order should have
795 // latency of 0 (except for true dependency of Store followed by
796 // aliased Load... we estimate that with a single cycle of latency
797 // assuming the hardware will bypass)
Dan Gohman6a9041e2008-12-04 01:35:46 +0000798 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
799 // after stack slots are lowered to actual addresses.
800 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
801 // produce more precise dependence information.
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000802 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickeb05b972012-05-15 18:59:41 +0000803 if (isGlobalMemoryObject(AA, MI)) {
David Goodwin980d4942009-11-09 19:22:17 +0000804 // Be conservative with these and add dependencies on all memory
805 // references, even those that are known to not alias.
Sergei Larin009cf9e2012-11-15 17:45:50 +0000806 for (MapVector<const Value *, SUnit *>::iterator I =
David Goodwin980d4942009-11-09 19:22:17 +0000807 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Andrew Tricka78d3222012-11-06 03:13:46 +0000808 I->second->addPred(SDep(SU, SDep::Barrier));
Dan Gohman6a9041e2008-12-04 01:35:46 +0000809 }
Sergei Larin009cf9e2012-11-15 17:45:50 +0000810 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
David Goodwin980d4942009-11-09 19:22:17 +0000811 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Tricka78d3222012-11-06 03:13:46 +0000812 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
813 SDep Dep(SU, SDep::Barrier);
814 Dep.setLatency(TrueMemOrderLatency);
815 I->second[i]->addPred(Dep);
816 }
Dan Gohman6a9041e2008-12-04 01:35:46 +0000817 }
David Goodwin980d4942009-11-09 19:22:17 +0000818 // Add SU to the barrier chain.
819 if (BarrierChain)
Andrew Tricka78d3222012-11-06 03:13:46 +0000820 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwin980d4942009-11-09 19:22:17 +0000821 BarrierChain = SU;
Andrew Trickeb05b972012-05-15 18:59:41 +0000822 // This is a barrier event that acts as a pivotal node in the DAG,
823 // so it is safe to clear list of exposed nodes.
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000824 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
825 TrueMemOrderLatency);
Andrew Trickeb05b972012-05-15 18:59:41 +0000826 RejectMemNodes.clear();
827 NonAliasMemDefs.clear();
828 NonAliasMemUses.clear();
David Goodwin980d4942009-11-09 19:22:17 +0000829
830 // fall-through
831 new_alias_chain:
832 // Chain all possibly aliasing memory references though SU.
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000833 if (AliasChain) {
834 unsigned ChainLatency = 0;
835 if (AliasChain->getInstr()->mayLoad())
836 ChainLatency = TrueMemOrderLatency;
Hal Finkel738073c2013-08-29 03:25:05 +0000837 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes,
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000838 ChainLatency);
839 }
David Goodwin980d4942009-11-09 19:22:17 +0000840 AliasChain = SU;
841 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkel738073c2013-08-29 03:25:05 +0000842 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Andrew Trickeb05b972012-05-15 18:59:41 +0000843 TrueMemOrderLatency);
Sergei Larin009cf9e2012-11-15 17:45:50 +0000844 for (MapVector<const Value *, SUnit *>::iterator I = AliasMemDefs.begin(),
Andrew Trickeb05b972012-05-15 18:59:41 +0000845 E = AliasMemDefs.end(); I != E; ++I)
Hal Finkel738073c2013-08-29 03:25:05 +0000846 addChainDependency(AAForDep, MFI, SU, I->second, RejectMemNodes);
Sergei Larin009cf9e2012-11-15 17:45:50 +0000847 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
David Goodwin980d4942009-11-09 19:22:17 +0000848 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
849 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Hal Finkel738073c2013-08-29 03:25:05 +0000850 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
Andrew Trickeb05b972012-05-15 18:59:41 +0000851 TrueMemOrderLatency);
David Goodwin980d4942009-11-09 19:22:17 +0000852 }
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000853 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
854 TrueMemOrderLatency);
David Goodwin980d4942009-11-09 19:22:17 +0000855 PendingLoads.clear();
856 AliasMemDefs.clear();
857 AliasMemUses.clear();
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000858 } else if (MI->mayStore()) {
Benjamin Kramer04d56132013-06-29 18:41:17 +0000859 UnderlyingObjectsVector Objs;
Hal Finkelf2183102012-12-10 18:49:16 +0000860 getUnderlyingObjectsForInstr(MI, MFI, Objs);
861
862 if (Objs.empty()) {
863 // Treat all other stores conservatively.
864 goto new_alias_chain;
865 }
866
867 bool MayAlias = false;
Benjamin Kramer04d56132013-06-29 18:41:17 +0000868 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
869 K != KE; ++K) {
870 const Value *V = K->getPointer();
871 bool ThisMayAlias = K->getInt();
Hal Finkelf2183102012-12-10 18:49:16 +0000872 if (ThisMayAlias)
873 MayAlias = true;
874
Dan Gohman6a9041e2008-12-04 01:35:46 +0000875 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwin980d4942009-11-09 19:22:17 +0000876 // Record the def in MemDefs, first adding a dep if there is
877 // an existing def.
Sergei Larin009cf9e2012-11-15 17:45:50 +0000878 MapVector<const Value *, SUnit *>::iterator I =
Hal Finkelf2183102012-12-10 18:49:16 +0000879 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Sergei Larin009cf9e2012-11-15 17:45:50 +0000880 MapVector<const Value *, SUnit *>::iterator IE =
Hal Finkelf2183102012-12-10 18:49:16 +0000881 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwin980d4942009-11-09 19:22:17 +0000882 if (I != IE) {
Hal Finkel738073c2013-08-29 03:25:05 +0000883 addChainDependency(AAForDep, MFI, SU, I->second, RejectMemNodes,
884 0, true);
Dan Gohman6a9041e2008-12-04 01:35:46 +0000885 I->second = SU;
886 } else {
Hal Finkelf2183102012-12-10 18:49:16 +0000887 if (ThisMayAlias)
David Goodwin980d4942009-11-09 19:22:17 +0000888 AliasMemDefs[V] = SU;
889 else
890 NonAliasMemDefs[V] = SU;
Dan Gohman6a9041e2008-12-04 01:35:46 +0000891 }
892 // Handle the uses in MemUses, if there are any.
Sergei Larin009cf9e2012-11-15 17:45:50 +0000893 MapVector<const Value *, std::vector<SUnit *> >::iterator J =
Hal Finkelf2183102012-12-10 18:49:16 +0000894 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Sergei Larin009cf9e2012-11-15 17:45:50 +0000895 MapVector<const Value *, std::vector<SUnit *> >::iterator JE =
Hal Finkelf2183102012-12-10 18:49:16 +0000896 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwin980d4942009-11-09 19:22:17 +0000897 if (J != JE) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000898 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Hal Finkel738073c2013-08-29 03:25:05 +0000899 addChainDependency(AAForDep, MFI, SU, J->second[i], RejectMemNodes,
Andrew Trickeb05b972012-05-15 18:59:41 +0000900 TrueMemOrderLatency, true);
Dan Gohman6a9041e2008-12-04 01:35:46 +0000901 J->second.clear();
902 }
David Goodwin7c9b1ac2009-11-02 17:06:28 +0000903 }
Hal Finkelf2183102012-12-10 18:49:16 +0000904 if (MayAlias) {
905 // Add dependencies from all the PendingLoads, i.e. loads
906 // with no underlying object.
907 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkel738073c2013-08-29 03:25:05 +0000908 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Hal Finkelf2183102012-12-10 18:49:16 +0000909 TrueMemOrderLatency);
910 // Add dependence on alias chain, if needed.
911 if (AliasChain)
Hal Finkel738073c2013-08-29 03:25:05 +0000912 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
Hal Finkelf2183102012-12-10 18:49:16 +0000913 // But we also should check dependent instructions for the
914 // SU in question.
915 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
916 TrueMemOrderLatency);
917 }
918 // Add dependence on barrier chain, if needed.
919 // There is no point to check aliasing on barrier event. Even if
920 // SU and barrier _could_ be reordered, they should not. In addition,
921 // we have lost all RejectMemNodes below barrier.
922 if (BarrierChain)
923 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Evan Chengec6906b2010-10-23 02:10:46 +0000924
925 if (!ExitSU.isPred(SU))
926 // Push store's up a bit to avoid them getting in between cmp
927 // and branches.
Andrew Tricka78d3222012-11-06 03:13:46 +0000928 ExitSU.addPred(SDep(SU, SDep::Artificial));
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000929 } else if (MI->mayLoad()) {
David Goodwina9e61072009-11-03 20:15:00 +0000930 bool MayAlias = true;
Dan Gohmana70dca12009-10-09 23:27:56 +0000931 if (MI->isInvariantLoad(AA)) {
Dan Gohman6a9041e2008-12-04 01:35:46 +0000932 // Invariant load, no chain dependencies needed!
David Goodwin5be870a2009-11-05 00:16:44 +0000933 } else {
Benjamin Kramer04d56132013-06-29 18:41:17 +0000934 UnderlyingObjectsVector Objs;
Hal Finkelf2183102012-12-10 18:49:16 +0000935 getUnderlyingObjectsForInstr(MI, MFI, Objs);
936
937 if (Objs.empty()) {
David Goodwin980d4942009-11-09 19:22:17 +0000938 // A load with no underlying object. Depend on all
939 // potentially aliasing stores.
Sergei Larin009cf9e2012-11-15 17:45:50 +0000940 for (MapVector<const Value *, SUnit *>::iterator I =
David Goodwin980d4942009-11-09 19:22:17 +0000941 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkel738073c2013-08-29 03:25:05 +0000942 addChainDependency(AAForDep, MFI, SU, I->second, RejectMemNodes);
Andrew Trickf405b1a2011-05-05 19:24:06 +0000943
David Goodwin980d4942009-11-09 19:22:17 +0000944 PendingLoads.push_back(SU);
945 MayAlias = true;
Hal Finkelf2183102012-12-10 18:49:16 +0000946 } else {
947 MayAlias = false;
948 }
949
Benjamin Kramer04d56132013-06-29 18:41:17 +0000950 for (UnderlyingObjectsVector::iterator
Hal Finkelf2183102012-12-10 18:49:16 +0000951 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Benjamin Kramer04d56132013-06-29 18:41:17 +0000952 const Value *V = J->getPointer();
953 bool ThisMayAlias = J->getInt();
Hal Finkelf2183102012-12-10 18:49:16 +0000954
955 if (ThisMayAlias)
956 MayAlias = true;
957
958 // A load from a specific PseudoSourceValue. Add precise dependencies.
959 MapVector<const Value *, SUnit *>::iterator I =
960 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
961 MapVector<const Value *, SUnit *>::iterator IE =
962 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
963 if (I != IE)
Hal Finkel738073c2013-08-29 03:25:05 +0000964 addChainDependency(AAForDep, MFI, SU, I->second, RejectMemNodes,
965 0, true);
Hal Finkelf2183102012-12-10 18:49:16 +0000966 if (ThisMayAlias)
967 AliasMemUses[V].push_back(SU);
968 else
969 NonAliasMemUses[V].push_back(SU);
David Goodwina9e61072009-11-03 20:15:00 +0000970 }
Andrew Trickeb05b972012-05-15 18:59:41 +0000971 if (MayAlias)
Andrew Trick1c2d3c52012-06-13 02:39:03 +0000972 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, /*Latency=*/0);
David Goodwin980d4942009-11-09 19:22:17 +0000973 // Add dependencies on alias and barrier chains, if needed.
974 if (MayAlias && AliasChain)
Hal Finkel738073c2013-08-29 03:25:05 +0000975 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
David Goodwin980d4942009-11-09 19:22:17 +0000976 if (BarrierChain)
Andrew Tricka78d3222012-11-06 03:13:46 +0000977 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trickf405b1a2011-05-05 19:24:06 +0000978 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000979 }
Dan Gohman343f0c02008-11-19 23:18:57 +0000980 }
Andrew Trick657b75b2012-12-01 01:22:49 +0000981 if (DbgMI)
982 FirstDbgValue = DbgMI;
Dan Gohman79ce2762009-01-15 19:20:50 +0000983
Andrew Trick81a682a2012-02-23 01:52:38 +0000984 Defs.clear();
985 Uses.clear();
Andrew Trick3c58ba82012-01-14 02:17:18 +0000986 VRegDefs.clear();
Dan Gohman79ce2762009-01-15 19:20:50 +0000987 PendingLoads.clear();
Dan Gohman343f0c02008-11-19 23:18:57 +0000988}
989
Dan Gohman343f0c02008-11-19 23:18:57 +0000990void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Renb720be62012-09-11 22:23:19 +0000991#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman343f0c02008-11-19 23:18:57 +0000992 SU->getInstr()->dump();
Manman Ren77e300e2012-09-06 19:06:06 +0000993#endif
Dan Gohman343f0c02008-11-19 23:18:57 +0000994}
995
996std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
997 std::string s;
998 raw_string_ostream oss(s);
Dan Gohman9e64bbb2009-02-10 23:27:53 +0000999 if (SU == &EntrySU)
1000 oss << "<entry>";
1001 else if (SU == &ExitSU)
1002 oss << "<exit>";
1003 else
Andrew Trickc6ada8e2013-01-25 07:45:25 +00001004 SU->getInstr()->print(oss, &TM, /*SkipOpers=*/true);
Dan Gohman343f0c02008-11-19 23:18:57 +00001005 return oss.str();
1006}
1007
Andrew Trick56b94c52012-03-07 00:18:22 +00001008/// Return the basic block label. It is not necessarilly unique because a block
1009/// contains multiple scheduling regions. But it is fine for visualization.
1010std::string ScheduleDAGInstrs::getDAGName() const {
1011 return "dag." + BB->getFullName();
1012}
Andrew Trick1e94e982012-10-15 18:02:27 +00001013
Andrew Trick8b1496c2012-11-28 05:13:28 +00001014//===----------------------------------------------------------------------===//
1015// SchedDFSResult Implementation
1016//===----------------------------------------------------------------------===//
1017
1018namespace llvm {
1019/// \brief Internal state used to compute SchedDFSResult.
1020class SchedDFSImpl {
1021 SchedDFSResult &R;
1022
1023 /// Join DAG nodes into equivalence classes by their subtree.
1024 IntEqClasses SubtreeClasses;
1025 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1026 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1027
Andrew Trick988d06b2013-01-25 06:52:27 +00001028 struct RootData {
1029 unsigned NodeID;
1030 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1031 unsigned SubInstrCount; // Instr count in this tree only, not children.
1032
1033 RootData(unsigned id): NodeID(id),
1034 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1035 SubInstrCount(0) {}
1036
1037 unsigned getSparseSetIndex() const { return NodeID; }
1038 };
1039
1040 SparseSet<RootData> RootSet;
1041
Andrew Trick8b1496c2012-11-28 05:13:28 +00001042public:
Andrew Trick988d06b2013-01-25 06:52:27 +00001043 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1044 RootSet.setUniverse(R.DFSNodeData.size());
1045 }
Andrew Trick8b1496c2012-11-28 05:13:28 +00001046
Andrew Trickbfb82232013-01-25 06:02:44 +00001047 /// Return true if this node been visited by the DFS traversal.
1048 ///
1049 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1050 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick8b1496c2012-11-28 05:13:28 +00001051 bool isVisited(const SUnit *SU) const {
Andrew Trick988d06b2013-01-25 06:52:27 +00001052 return R.DFSNodeData[SU->NodeNum].SubtreeID
1053 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick8b1496c2012-11-28 05:13:28 +00001054 }
1055
1056 /// Initialize this node's instruction count. We don't need to flag the node
1057 /// visited until visitPostorder because the DAG cannot have cycles.
1058 void visitPreorder(const SUnit *SU) {
Andrew Trick988d06b2013-01-25 06:52:27 +00001059 R.DFSNodeData[SU->NodeNum].InstrCount =
1060 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trickbfb82232013-01-25 06:02:44 +00001061 }
1062
1063 /// Called once for each node after all predecessors are visited. Revisit this
1064 /// node's predecessors and potentially join them now that we know the ILP of
1065 /// the other predecessors.
1066 void visitPostorderNode(const SUnit *SU) {
1067 // Mark this node as the root of a subtree. It may be joined with its
1068 // successors later.
Andrew Trick988d06b2013-01-25 06:52:27 +00001069 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1070 RootData RData(SU->NodeNum);
1071 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick8b1496c2012-11-28 05:13:28 +00001072
Andrew Trickbfb82232013-01-25 06:02:44 +00001073 // If any predecessors are still in their own subtree, they either cannot be
1074 // joined or are large enough to remain separate. If this parent node's
1075 // total instruction count is not greater than a child subtree by at least
1076 // the subtree limit, then try to join it now since splitting subtrees is
1077 // only useful if multiple high-pressure paths are possible.
Andrew Trick988d06b2013-01-25 06:52:27 +00001078 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trickbfb82232013-01-25 06:02:44 +00001079 for (SUnit::const_pred_iterator
1080 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1081 if (PI->getKind() != SDep::Data)
1082 continue;
1083 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trick988d06b2013-01-25 06:52:27 +00001084 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trickbfb82232013-01-25 06:02:44 +00001085 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trick988d06b2013-01-25 06:52:27 +00001086
1087 // Either link or merge the TreeData entry from the child to the parent.
Andrew Tricka5a73ad2013-01-25 06:52:30 +00001088 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1089 // If the predecessor's parent is invalid, this is a tree edge and the
1090 // current node is the parent.
1091 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1092 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1093 }
1094 else if (RootSet.count(PredNum)) {
1095 // The predecessor is not a root, but is still in the root set. This
1096 // must be the new parent that it was just joined to. Note that
1097 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1098 // set to the original parent.
Andrew Trick988d06b2013-01-25 06:52:27 +00001099 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1100 RootSet.erase(PredNum);
1101 }
Andrew Trickbfb82232013-01-25 06:02:44 +00001102 }
Andrew Trick988d06b2013-01-25 06:52:27 +00001103 RootSet[SU->NodeNum] = RData;
1104 }
1105
1106 /// Called once for each tree edge after calling visitPostOrderNode on the
1107 /// predecessor. Increment the parent node's instruction count and
1108 /// preemptively join this subtree to its parent's if it is small enough.
1109 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1110 R.DFSNodeData[Succ->NodeNum].InstrCount
1111 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1112 joinPredSubtree(PredDep, Succ);
Andrew Trick8b1496c2012-11-28 05:13:28 +00001113 }
1114
Andrew Trickbfb82232013-01-25 06:02:44 +00001115 /// Add a connection for cross edges.
1116 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick8b1496c2012-11-28 05:13:28 +00001117 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1118 }
1119
1120 /// Set each node's subtree ID to the representative ID and record connections
1121 /// between trees.
1122 void finalize() {
1123 SubtreeClasses.compress();
Andrew Trick988d06b2013-01-25 06:52:27 +00001124 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1125 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1126 && "number of roots should match trees");
1127 for (SparseSet<RootData>::const_iterator
1128 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1129 unsigned TreeID = SubtreeClasses[RI->NodeID];
1130 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1131 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1132 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Tricka5a73ad2013-01-25 06:52:30 +00001133 // Note that SubInstrCount may be greater than InstrCount if we joined
1134 // subtrees across a cross edge. InstrCount will be attributed to the
1135 // original parent, while SubInstrCount will be attributed to the joined
1136 // parent.
Andrew Trick988d06b2013-01-25 06:52:27 +00001137 }
Andrew Trick8b1496c2012-11-28 05:13:28 +00001138 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1139 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1140 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trick988d06b2013-01-25 06:52:27 +00001141 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1142 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick8b1496c2012-11-28 05:13:28 +00001143 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trick988d06b2013-01-25 06:52:27 +00001144 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick8b1496c2012-11-28 05:13:28 +00001145 }
1146 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1147 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1148 I != E; ++I) {
1149 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1150 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1151 if (PredTree == SuccTree)
1152 continue;
1153 unsigned Depth = I->first->getDepth();
1154 addConnection(PredTree, SuccTree, Depth);
1155 addConnection(SuccTree, PredTree, Depth);
1156 }
1157 }
1158
1159protected:
Andrew Trickbfb82232013-01-25 06:02:44 +00001160 /// Join the predecessor subtree with the successor that is its DFS
1161 /// parent. Apply some heuristics before joining.
1162 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1163 bool CheckLimit = true) {
1164 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1165
1166 // Check if the predecessor is already joined.
1167 const SUnit *PredSU = PredDep.getSUnit();
1168 unsigned PredNum = PredSU->NodeNum;
Andrew Trick988d06b2013-01-25 06:52:27 +00001169 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trickbfb82232013-01-25 06:02:44 +00001170 return false;
Andrew Trickb12a7712013-01-25 00:12:57 +00001171
1172 // Four is the magic number of successors before a node is considered a
1173 // pinch point.
1174 unsigned NumDataSucs = 0;
Andrew Trickb12a7712013-01-25 00:12:57 +00001175 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1176 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1177 if (SI->getKind() == SDep::Data) {
1178 if (++NumDataSucs >= 4)
Andrew Trickbfb82232013-01-25 06:02:44 +00001179 return false;
Andrew Trickb12a7712013-01-25 00:12:57 +00001180 }
1181 }
Andrew Trick988d06b2013-01-25 06:52:27 +00001182 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trickbfb82232013-01-25 06:02:44 +00001183 return false;
Andrew Trick988d06b2013-01-25 06:52:27 +00001184 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trickbfb82232013-01-25 06:02:44 +00001185 SubtreeClasses.join(Succ->NodeNum, PredNum);
1186 return true;
Andrew Trickb12a7712013-01-25 00:12:57 +00001187 }
1188
Andrew Trick8b1496c2012-11-28 05:13:28 +00001189 /// Called by finalize() to record a connection between trees.
1190 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1191 if (!Depth)
1192 return;
1193
Andrew Trick988d06b2013-01-25 06:52:27 +00001194 do {
1195 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1196 R.SubtreeConnections[FromTree];
1197 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1198 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1199 if (I->TreeID == ToTree) {
1200 I->Level = std::max(I->Level, Depth);
1201 return;
1202 }
Andrew Trick8b1496c2012-11-28 05:13:28 +00001203 }
Andrew Trick988d06b2013-01-25 06:52:27 +00001204 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1205 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1206 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick8b1496c2012-11-28 05:13:28 +00001207 }
1208};
1209} // namespace llvm
1210
Andrew Trick1e94e982012-10-15 18:02:27 +00001211namespace {
1212/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1213class SchedDAGReverseDFS {
1214 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1215public:
1216 bool isComplete() const { return DFSStack.empty(); }
1217
1218 void follow(const SUnit *SU) {
1219 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1220 }
1221 void advance() { ++DFSStack.back().second; }
1222
Andrew Trick8b1496c2012-11-28 05:13:28 +00001223 const SDep *backtrack() {
1224 DFSStack.pop_back();
1225 return DFSStack.empty() ? 0 : llvm::prior(DFSStack.back().second);
1226 }
Andrew Trick1e94e982012-10-15 18:02:27 +00001227
1228 const SUnit *getCurr() const { return DFSStack.back().first; }
1229
1230 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1231
1232 SUnit::const_pred_iterator getPredEnd() const {
1233 return getCurr()->Preds.end();
1234 }
1235};
1236} // anonymous
1237
Andrew Trickbfb82232013-01-25 06:02:44 +00001238static bool hasDataSucc(const SUnit *SU) {
1239 for (SUnit::const_succ_iterator
1240 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Tricka5a73ad2013-01-25 06:52:30 +00001241 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trickbfb82232013-01-25 06:02:44 +00001242 return true;
1243 }
1244 return false;
1245}
1246
Andrew Trick1e94e982012-10-15 18:02:27 +00001247/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1248/// search from this root.
Andrew Trick4e1fb182013-01-25 06:33:57 +00001249void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick1e94e982012-10-15 18:02:27 +00001250 if (!IsBottomUp)
1251 llvm_unreachable("Top-down ILP metric is unimplemnted");
1252
Andrew Trick8b1496c2012-11-28 05:13:28 +00001253 SchedDFSImpl Impl(*this);
Andrew Trick4e1fb182013-01-25 06:33:57 +00001254 for (ArrayRef<SUnit>::const_iterator
1255 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1256 const SUnit *SU = &*SI;
1257 if (Impl.isVisited(SU) || hasDataSucc(SU))
1258 continue;
1259
Andrew Trick8b1496c2012-11-28 05:13:28 +00001260 SchedDAGReverseDFS DFS;
Andrew Trick4e1fb182013-01-25 06:33:57 +00001261 Impl.visitPreorder(SU);
1262 DFS.follow(SU);
Andrew Trick8b1496c2012-11-28 05:13:28 +00001263 for (;;) {
1264 // Traverse the leftmost path as far as possible.
1265 while (DFS.getPred() != DFS.getPredEnd()) {
1266 const SDep &PredDep = *DFS.getPred();
1267 DFS.advance();
Andrew Trickbfb82232013-01-25 06:02:44 +00001268 // Ignore non-data edges.
Andrew Tricka5a73ad2013-01-25 06:52:30 +00001269 if (PredDep.getKind() != SDep::Data
1270 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trickbfb82232013-01-25 06:02:44 +00001271 continue;
Andrew Tricka5a73ad2013-01-25 06:52:30 +00001272 }
Andrew Trickbfb82232013-01-25 06:02:44 +00001273 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick8b1496c2012-11-28 05:13:28 +00001274 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trickbfb82232013-01-25 06:02:44 +00001275 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick8b1496c2012-11-28 05:13:28 +00001276 continue;
1277 }
1278 Impl.visitPreorder(PredDep.getSUnit());
1279 DFS.follow(PredDep.getSUnit());
1280 }
1281 // Visit the top of the stack in postorder and backtrack.
1282 const SUnit *Child = DFS.getCurr();
1283 const SDep *PredDep = DFS.backtrack();
Andrew Trickbfb82232013-01-25 06:02:44 +00001284 Impl.visitPostorderNode(Child);
1285 if (PredDep)
1286 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick8b1496c2012-11-28 05:13:28 +00001287 if (DFS.isComplete())
1288 break;
Andrew Trick1e94e982012-10-15 18:02:27 +00001289 }
Andrew Trick8b1496c2012-11-28 05:13:28 +00001290 }
1291 Impl.finalize();
1292}
1293
1294/// The root of the given SubtreeID was just scheduled. For all subtrees
1295/// connected to this tree, record the depth of the connection so that the
1296/// nearest connected subtrees can be prioritized.
1297void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1298 for (SmallVectorImpl<Connection>::const_iterator
1299 I = SubtreeConnections[SubtreeID].begin(),
1300 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1301 SubtreeConnectLevels[I->TreeID] =
1302 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1303 DEBUG(dbgs() << " Tree: " << I->TreeID
1304 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick1e94e982012-10-15 18:02:27 +00001305 }
1306}
1307
1308#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1309void ILPValue::print(raw_ostream &OS) const {
Andrew Trick8b1496c2012-11-28 05:13:28 +00001310 OS << InstrCount << " / " << Length << " = ";
1311 if (!Length)
Andrew Trick1e94e982012-10-15 18:02:27 +00001312 OS << "BADILP";
Andrew Trick8b1496c2012-11-28 05:13:28 +00001313 else
1314 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick1e94e982012-10-15 18:02:27 +00001315}
1316
1317void ILPValue::dump() const {
1318 dbgs() << *this << '\n';
1319}
1320
1321namespace llvm {
1322
1323raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1324 Val.print(OS);
1325 return OS;
1326}
1327
1328} // namespace llvm
1329#endif // !NDEBUG || LLVM_ENABLE_DUMP