blob: 959b1c227cb452bcbb22f083a23f57f5ef04a8f2 [file] [log] [blame]
Dan Gohmanf90d3b02008-12-08 17:50:35 +00001//===---- ScheduleDAGInstrs.cpp - MachineInstr Rescheduling ---------------===//
Dan Gohman60cb69e2008-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 Gohmanf90d3b02008-12-08 17:50:35 +000010// This implements the ScheduleDAGInstrs class, which implements re-scheduling
11// of MachineInstrs.
Dan Gohman60cb69e2008-11-19 23:18:57 +000012//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/ScheduleDAGInstrs.h"
16#include "llvm/ADT/MapVector.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallSet.h"
Dan Gohman1ee0d412009-01-30 02:49:14 +000019#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohmana4fcd242010-12-15 20:02:24 +000020#include "llvm/Analysis/ValueTracking.h"
Andrew Trick46cc9a42012-02-22 06:08:11 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000022#include "llvm/CodeGen/MachineFunctionPass.h"
Andrew Trick6b104f82013-12-28 21:56:55 +000023#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman48b185d2009-09-25 20:36:54 +000024#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman3aab10b2008-12-04 01:35:46 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trick88517f62012-06-06 19:47:35 +000027#include "llvm/CodeGen/RegisterPressure.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000028#include "llvm/CodeGen/ScheduleDFS.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Operator.h"
Evan Cheng8264e272011-06-29 01:14:12 +000030#include "llvm/MC/MCInstrItineraries.h"
Andrew Trickda01ba32012-05-15 18:59:41 +000031#include "llvm/Support/CommandLine.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000032#include "llvm/Support/Debug.h"
Andrew Trick90f711d2012-10-15 18:02:27 +000033#include "llvm/Support/Format.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-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 Trickc01b0042013-08-23 17:48:43 +000039#include <queue>
40
Dan Gohman60cb69e2008-11-19 23:18:57 +000041using namespace llvm;
42
Chandler Carruth1b9dde02014-04-22 02:02:50 +000043#define DEBUG_TYPE "misched"
44
Andrew Trickda01ba32012-05-15 18:59:41 +000045static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
46 cl::ZeroOrMore, cl::init(false),
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000047 cl::desc("Enable use of AA during MI DAG construction"));
Andrew Trickda01ba32012-05-15 18:59:41 +000048
Hal Finkeldbebb522014-01-25 19:24:54 +000049static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden,
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000050 cl::init(true), cl::desc("Enable use of TBAA during MI DAG construction"));
Hal Finkeldbebb522014-01-25 19:24:54 +000051
Dan Gohman619ef482009-01-15 19:20:50 +000052ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Alexey Samsonov8968e6d2014-08-20 19:36:05 +000053 const MachineLoopInfo *mli,
Eric Christopher2c635492015-01-27 07:54:39 +000054 bool IsPostRAFlag, bool RemoveKillFlags,
Andrew Trick46cc9a42012-02-22 06:08:11 +000055 LiveIntervals *lis)
Eric Christopher2c635492015-01-27 07:54:39 +000056 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()), LIS(lis),
57 IsPostRA(IsPostRAFlag), RemoveKillFlags(RemoveKillFlags),
58 CanHandleTerminators(false), FirstDbgValue(nullptr) {
Andrew Trick46cc9a42012-02-22 06:08:11 +000059 assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals");
Devang Patele5feef02011-06-02 20:07:12 +000060 DbgValues.clear();
Andrew Trickdb42c6f2012-02-22 06:08:13 +000061 assert(!(IsPostRA && MRI.getNumVirtRegs()) &&
Andrew Trickda84e642012-02-21 04:51:23 +000062 "Virtual registers must be removed prior to PostRA scheduling");
Andrew Trick9b635132012-09-18 18:20:00 +000063
Eric Christopher2c635492015-01-27 07:54:39 +000064 const TargetSubtargetInfo &ST = mf.getSubtarget();
Pete Cooper11759452014-09-02 17:43:54 +000065 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000066}
Dan Gohman60cb69e2008-11-19 23:18:57 +000067
Dan Gohman1ee0d412009-01-30 02:49:14 +000068/// getUnderlyingObjectFromInt - This is the function that does the work of
69/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
70static const Value *getUnderlyingObjectFromInt(const Value *V) {
71 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000072 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000073 // If we find a ptrtoint, we can transfer control back to the
74 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000075 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000076 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000077 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000078 // likely that the other operand will lead us to the base
79 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000080 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000081 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000082 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000083 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000084 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000085 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
86 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000087 return V;
88 V = U->getOperand(0);
89 } else {
90 return V;
91 }
Duncan Sands19d0b472010-02-16 11:11:14 +000092 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +000093 } while (1);
94}
95
Hal Finkel66859ae2012-12-10 18:49:16 +000096/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +000097/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +000098static void getUnderlyingObjects(const Value *V,
99 SmallVectorImpl<Value *> &Objects) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000100 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +0000101 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000102 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000103 V = Working.pop_back_val();
104
105 SmallVector<Value *, 4> Objs;
106 GetUnderlyingObjects(const_cast<Value *>(V), Objs);
107
Craig Toppere1c1d362013-07-03 05:11:49 +0000108 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000109 I != IE; ++I) {
110 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000111 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000112 continue;
113 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
114 const Value *O =
115 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
116 if (O->getType()->isPointerTy()) {
117 Working.push_back(O);
118 continue;
119 }
120 }
121 Objects.push_back(const_cast<Value *>(V));
122 }
123 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000124}
125
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000126typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
127typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
Benjamin Kramerfd510922013-06-29 18:41:17 +0000128UnderlyingObjectsVector;
129
Hal Finkel66859ae2012-12-10 18:49:16 +0000130/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000131/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000132/// object, return the Value for that object.
133static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000134 const MachineFrameInfo *MFI,
135 UnderlyingObjectsVector &Objects) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000136 if (!MI->hasOneMemOperand() ||
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000137 (!(*MI->memoperands_begin())->getValue() &&
138 !(*MI->memoperands_begin())->getPseudoValue()) ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000139 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000140 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000141
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000142 if (const PseudoSourceValue *PSV =
143 (*MI->memoperands_begin())->getPseudoValue()) {
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000144 // For now, ignore PseudoSourceValues which may alias LLVM IR values
145 // because the code that uses this function has no way to cope with
146 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000147 if (!PSV->isAliased(MFI)) {
148 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000149 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000150 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000151 return;
152 }
153
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000154 const Value *V = (*MI->memoperands_begin())->getValue();
155 if (!V)
156 return;
157
Hal Finkel66859ae2012-12-10 18:49:16 +0000158 SmallVector<Value *, 4> Objs;
159 getUnderlyingObjects(V, Objs);
Andrew Trick24b1c482011-05-05 19:24:06 +0000160
Craig Toppere1c1d362013-07-03 05:11:49 +0000161 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
162 I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000163 V = *I;
164
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000165 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000166 Objects.clear();
167 return;
168 }
169
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000170 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000171 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000172}
173
Andrew Trick7405c6d2012-04-20 20:05:21 +0000174void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
175 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000176}
177
Andrew Trick52226d42012-03-07 23:00:49 +0000178void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000179 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000180 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000181}
182
Andrew Trick60cf03e2012-03-07 05:21:52 +0000183/// Initialize the DAG and common scheduler state for the current scheduling
184/// region. This does not actually create the DAG, only clears it. The
185/// scheduling driver may call BuildSchedGraph multiple times per scheduling
186/// region.
187void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
188 MachineBasicBlock::iterator begin,
189 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000190 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000191 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000192 RegionBegin = begin;
193 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000194 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000195}
196
197/// Close the current scheduling region. Don't clear any state in case the
198/// driver wants to refer to the previous scheduling region.
199void ScheduleDAGInstrs::exitRegion() {
200 // Nothing to do.
201}
202
Andrew Trick52226d42012-03-07 23:00:49 +0000203/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000204/// list of instructions being scheduled to scheduling barrier by adding
205/// the exit SU to the register defs and use list. This is because we want to
206/// make sure instructions which define registers that are either used by
207/// the terminator or are live-out are properly scheduled. This is
208/// especially important when the definition latency of the return value(s)
209/// are too high to be hidden by the branch or when the liveout registers
210/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000211void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000212 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000213 ExitSU.setInstr(ExitMI);
214 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000215 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000216 if (ExitMI && AllDepKnown) {
217 // If it's a call or a barrier, add dependencies on the defs and uses of
218 // instruction.
219 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
220 const MachineOperand &MO = ExitMI->getOperand(i);
221 if (!MO.isReg() || MO.isDef()) continue;
222 unsigned Reg = MO.getReg();
223 if (Reg == 0) continue;
224
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000225 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000226 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Tricke6913c72012-03-16 05:04:25 +0000227 else {
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000228 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trickd5953622012-12-01 01:22:44 +0000229 if (MO.readsReg()) // ignore undef operands
230 addVRegUseDeps(&ExitSU, i);
Andrew Tricke6913c72012-03-16 05:04:25 +0000231 }
Evan Cheng15459b62010-10-23 02:10:46 +0000232 }
233 } else {
234 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000235 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000236 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000237 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
238 SE = BB->succ_end(); SI != SE; ++SI)
239 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trick24b1c482011-05-05 19:24:06 +0000240 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengcbdf7e82010-10-27 23:17:17 +0000241 unsigned Reg = *I;
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000242 if (!Uses.contains(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000243 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000244 }
Evan Cheng15459b62010-10-23 02:10:46 +0000245 }
246}
247
Andrew Trickd675a4c2012-02-23 01:52:38 +0000248/// MO is an operand of SU's instruction that defines a physical register. Add
249/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000250void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
251 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000252 assert(MO.isDef() && "expect physreg def");
253
254 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000255 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000256
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000257 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
258 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000259 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000260 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000261 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
262 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000263 if (UseSU == SU)
264 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000265
Andrew Trick07dced62012-10-08 18:54:00 +0000266 // Adjust the dependence latency using operand def/use information,
267 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000268 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000269 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000270 SDep Dep;
271 if (UseOp < 0)
272 Dep = SDep(SU, SDep::Artificial);
273 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000274 // Set the hasPhysRegDefs only for physreg defs that have a use within
275 // the scheduling region.
276 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000277 Dep = SDep(SU, SDep::Data, *Alias);
278 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000279 }
280 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000281 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
282 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000283
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000284 ST.adjustSchedDependency(SU, UseSU, Dep);
285 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000286 }
287 }
288}
289
Andrew Trickdbee9d82012-01-14 02:17:15 +0000290/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
291/// this SUnit to following instructions in the same scheduling region that
292/// depend the physical register referenced at OperIdx.
293void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000294 MachineInstr *MI = SU->getInstr();
295 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000296
297 // Optionally add output and anti dependencies. For anti
298 // dependencies we use a latency of 0 because for a multi-issue
299 // target we want to allow the defining instruction to issue
300 // in the same cycle as the using instruction.
301 // TODO: Using a latency of 1 here for output dependencies assumes
302 // there's no cost for reusing registers.
303 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000304 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
305 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000306 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000307 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000308 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
309 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000310 if (DefSU == &ExitSU)
311 continue;
312 if (DefSU != SU &&
313 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000314 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000315 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000316 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000317 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000318 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000319 Dep.setLatency(
320 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000321 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000322 }
323 }
324 }
325 }
326
Andrew Trickd675a4c2012-02-23 01:52:38 +0000327 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000328 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000329 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
330 // retrieve the existing SUnits list for this register's uses.
331 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000332 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000333 if (RemoveKillFlags)
334 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000335 }
336 else {
Andrew Trickae535612012-08-23 00:39:43 +0000337 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000338 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000339
Andrew Trickd675a4c2012-02-23 01:52:38 +0000340 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000341 if (Uses.contains(Reg))
342 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000343
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000344 if (!MO.isDead()) {
345 Defs.eraseAll(Reg);
346 } else if (SU->isCall) {
347 // Calls will not be reordered because of chain dependencies (see
348 // below). Since call operands are dead, calls may continue to be added
349 // to the DefList making dependence checking quadratic in the size of
350 // the block. Instead, we leave only one call at the back of the
351 // DefList.
352 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
353 Reg2SUnitsMap::iterator B = P.first;
354 Reg2SUnitsMap::iterator I = P.second;
355 for (bool isBegin = I == B; !isBegin; /* empty */) {
356 isBegin = (--I) == B;
357 if (!I->SU->isCall)
358 break;
359 I = Defs.erase(I);
360 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000361 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000362
Andrew Trickd675a4c2012-02-23 01:52:38 +0000363 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000364 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000365 }
366}
367
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000368/// addVRegDefDeps - Add register output and data dependencies from this SUnit
369/// to instructions that occur later in the same scheduling region if they read
370/// from or write to the virtual register defined at OperIdx.
371///
372/// TODO: Hoist loop induction variable increments. This has to be
373/// reevaluated. Generally, IV scheduling should be done before coalescing.
374void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
375 const MachineInstr *MI = SU->getInstr();
376 unsigned Reg = MI->getOperand(OperIdx).getReg();
377
Andrew Trick94053432012-07-28 01:48:15 +0000378 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000379 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000380 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000381 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000382 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000383
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000384 // Add output dependence to the next nearest def of this vreg.
385 //
386 // Unless this definition is dead, the output dependence should be
387 // transitively redundant with antidependencies from this definition's
388 // uses. We're conservative for now until we have a way to guarantee the uses
389 // are not eliminated sometime during scheduling. The output dependence edge
390 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000391 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000392 if (DefI == VRegDefs.end())
393 VRegDefs.insert(VReg2SUnit(Reg, SU));
394 else {
395 SUnit *DefSU = DefI->SU;
396 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000397 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000398 Dep.setLatency(
399 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000400 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000401 }
402 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000403 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000404}
405
Andrew Trick46cc9a42012-02-22 06:08:11 +0000406/// addVRegUseDeps - Add a register data dependency if the instruction that
407/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
408/// register antidependency from this SUnit to instructions that occur later in
409/// the same scheduling region if they write the virtual register.
410///
411/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000412void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000413 MachineInstr *MI = SU->getInstr();
414 unsigned Reg = MI->getOperand(OperIdx).getReg();
415
Andrew Trick8dd26f02013-08-23 17:48:39 +0000416 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000417 VReg2UseMap::iterator UI = VRegUses.find(Reg);
418 for (; UI != VRegUses.end(); ++UI) {
419 if (UI->SU == SU)
420 break;
421 }
422 if (UI == VRegUses.end())
423 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000424
Andrew Trick46cc9a42012-02-22 06:08:11 +0000425 // Lookup this operand's reaching definition.
426 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000427 LiveQueryResult LRQ
428 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000429 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000430
Andrew Trickda6a15d2012-02-23 03:16:24 +0000431 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000432 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000433 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000434 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000435 if (Def) {
436 SUnit *DefSU = getSUnit(Def);
437 if (DefSU) {
438 // The reaching Def lives within this scheduling region.
439 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000440 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000441 // Adjust the dependence latency using operand def/use information, then
442 // allow the target to perform its own adjustments.
443 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000444 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000445
Eric Christopher2c635492015-01-27 07:54:39 +0000446 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trick09650df2012-10-08 18:53:57 +0000447 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000448 SU->addPred(dep);
449 }
450 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000451
452 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000453 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000454 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000455 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000456}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000457
Andrew Trickda01ba32012-05-15 18:59:41 +0000458/// Return true if MI is an instruction we are unable to reason about
459/// (like a call or something with unmodeled side effects).
460static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
461 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesencea3e772012-08-29 21:19:21 +0000462 (MI->hasOrderedMemoryRef() &&
Andrew Trickda01ba32012-05-15 18:59:41 +0000463 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
464 return true;
465 return false;
466}
467
468// This MI might have either incomplete info, or known to be unsafe
469// to deal with (i.e. volatile object).
470static inline bool isUnsafeMemoryObject(MachineInstr *MI,
471 const MachineFrameInfo *MFI) {
472 if (!MI || MI->memoperands_empty())
473 return true;
474 // We purposefully do no check for hasOneMemOperand() here
475 // in hope to trigger an assert downstream in order to
476 // finish implementation.
477 if ((*MI->memoperands_begin())->isVolatile() ||
478 MI->hasUnmodeledSideEffects())
479 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000480
481 if ((*MI->memoperands_begin())->getPseudoValue()) {
482 // Similarly to getUnderlyingObjectForInstr:
483 // For now, ignore PseudoSourceValues which may alias LLVM IR values
484 // because the code that uses this function has no way to cope with
485 // such aliases.
486 return true;
487 }
488
Andrew Trickda01ba32012-05-15 18:59:41 +0000489 const Value *V = (*MI->memoperands_begin())->getValue();
490 if (!V)
491 return true;
492
Hal Finkel66859ae2012-12-10 18:49:16 +0000493 SmallVector<Value *, 4> Objs;
494 getUnderlyingObjects(V, Objs);
Craig Toppere1c1d362013-07-03 05:11:49 +0000495 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
496 IE = Objs.end(); I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000497 // Does this pointer refer to a distinct and identifiable object?
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000498 if (!isIdentifiedObject(*I))
Andrew Trickda01ba32012-05-15 18:59:41 +0000499 return true;
500 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000501
502 return false;
503}
504
505/// This returns true if the two MIs need a chain edge betwee them.
506/// If these are not even memory operations, we still may need
507/// chain deps between them. The question really is - could
508/// these two MIs be reordered during scheduling from memory dependency
509/// point of view.
510static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
511 MachineInstr *MIa,
512 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000513 const MachineFunction *MF = MIa->getParent()->getParent();
514 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
515
Andrew Trickda01ba32012-05-15 18:59:41 +0000516 // Cover a trivial case - no edge is need to itself.
517 if (MIa == MIb)
518 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000519
520 // Let the target decide if memory accesses cannot possibly overlap.
521 if ((MIa->mayLoad() || MIa->mayStore()) &&
522 (MIb->mayLoad() || MIb->mayStore()))
523 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
524 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000525
Hal Finkel2150e3a2014-01-08 21:52:02 +0000526 // FIXME: Need to handle multiple memory operands to support all targets.
527 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
528 return true;
529
Andrew Trickda01ba32012-05-15 18:59:41 +0000530 if (isUnsafeMemoryObject(MIa, MFI) || isUnsafeMemoryObject(MIb, MFI))
531 return true;
532
533 // If we are dealing with two "normal" loads, we do not need an edge
534 // between them - they could be reordered.
535 if (!MIa->mayStore() && !MIb->mayStore())
536 return false;
537
538 // To this point analysis is generic. From here on we do need AA.
539 if (!AA)
540 return true;
541
542 MachineMemOperand *MMOa = *MIa->memoperands_begin();
543 MachineMemOperand *MMOb = *MIb->memoperands_begin();
544
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000545 if (!MMOa->getValue() || !MMOb->getValue())
546 return true;
547
Andrew Trickda01ba32012-05-15 18:59:41 +0000548 // The following interface to AA is fashioned after DAGCombiner::isAlias
549 // and operates with MachineMemOperand offset with some important
550 // assumptions:
551 // - LLVM fundamentally assumes flat address spaces.
552 // - MachineOperand offset can *only* result from legalization and
553 // cannot affect queries other than the trivial case of overlap
554 // checking.
555 // - These offsets never wrap and never step outside
556 // of allocated objects.
557 // - There should never be any negative offsets here.
558 //
559 // FIXME: Modify API to hide this math from "user"
560 // FIXME: Even before we go to AA we can reason locally about some
561 // memory objects. It can save compile time, and possibly catch some
562 // corner cases not currently covered.
563
564 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
565 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
566
567 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
568 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
569 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
570
571 AliasAnalysis::AliasResult AAResult = AA->alias(
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000572 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
Hal Finkelcc39b672014-07-24 12:16:19 +0000573 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000574 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
Hal Finkelcc39b672014-07-24 12:16:19 +0000575 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000576
577 return (AAResult != AliasAnalysis::NoAlias);
578}
579
580/// This recursive function iterates over chain deps of SUb looking for
581/// "latest" node that needs a chain edge to SUa.
582static unsigned
583iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
584 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
Craig Topper71b7b682014-08-21 05:55:13 +0000585 SmallPtrSetImpl<const SUnit*> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000586 if (!SUa || !SUb || SUb == ExitSU)
587 return *Depth;
588
589 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000590 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000591 return *Depth;
592 // If there is _some_ dependency already in place, do not
593 // descend any further.
594 // TODO: Need to make sure that if that dependency got eliminated or ignored
595 // for any reason in the future, we would not violate DAG topology.
596 // Currently it does not happen, but makes an implicit assumption about
597 // future implementation.
598 //
599 // Independently, if we encounter node that is some sort of global
600 // object (like a call) we already have full set of dependencies to it
601 // and we can stop descending.
602 if (SUa->isSucc(SUb) ||
603 isGlobalMemoryObject(AA, SUb->getInstr()))
604 return *Depth;
605
606 // If we do need an edge, or we have exceeded depth budget,
607 // add that edge to the predecessors chain of SUb,
608 // and stop descending.
609 if (*Depth > 200 ||
610 MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000611 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000612 return *Depth;
613 }
614 // Track current depth.
615 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000616 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000617 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
618 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000619 if (I->isNormalMemoryOrBarrier())
Andrew Trickda01ba32012-05-15 18:59:41 +0000620 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited);
621 return *Depth;
622}
623
624/// This function assumes that "downward" from SU there exist
625/// tail/leaf of already constructed DAG. It iterates downward and
626/// checks whether SU can be aliasing any node dominated
627/// by it.
628static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Andrew Trick344fb642012-06-13 02:39:03 +0000629 SUnit *SU, SUnit *ExitSU, std::set<SUnit *> &CheckList,
630 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000631 if (!SU)
632 return;
633
634 SmallPtrSet<const SUnit*, 16> Visited;
635 unsigned Depth = 0;
636
637 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
638 I != IE; ++I) {
639 if (SU == *I)
640 continue;
Andrew Trick344fb642012-06-13 02:39:03 +0000641 if (MIsNeedChainEdge(AA, MFI, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000642 SDep Dep(SU, SDep::MayAliasMem);
643 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
644 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000645 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000646
647 // Iterate recursively over all previously added memory chain
648 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000649 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
650 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000651 if (J->isNormalMemoryOrBarrier())
Andrew Trickda01ba32012-05-15 18:59:41 +0000652 iterateChainSucc (AA, MFI, SU, J->getSUnit(),
653 ExitSU, &Depth, Visited);
654 }
655}
656
657/// Check whether two objects need a chain edge, if so, add it
658/// otherwise remember the rejected SU.
659static inline
660void addChainDependency (AliasAnalysis *AA, const MachineFrameInfo *MFI,
661 SUnit *SUa, SUnit *SUb,
662 std::set<SUnit *> &RejectList,
663 unsigned TrueMemOrderLatency = 0,
664 bool isNormalMemory = false) {
665 // If this is a false dependency,
666 // do not add the edge, but rememeber the rejected node.
Owen Andersonec4f8732014-09-12 21:17:55 +0000667 if (MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000668 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
669 Dep.setLatency(TrueMemOrderLatency);
670 SUb->addPred(Dep);
671 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000672 else {
673 // Duplicate entries should be ignored.
674 RejectList.insert(SUb);
675 DEBUG(dbgs() << "\tReject chain dep between SU("
676 << SUa->NodeNum << ") and SU("
677 << SUb->NodeNum << ")\n");
678 }
679}
680
Andrew Trick46cc9a42012-02-22 06:08:11 +0000681/// Create an SUnit for each real instruction, numbered in top-down toplological
682/// order. The instruction order A < B, implies that no edge exists from B to A.
683///
684/// Map each real instruction to its SUnit.
685///
Andrew Trick8823dec2012-03-14 04:00:41 +0000686/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
687/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
688/// instead of pointers.
689///
690/// MachineScheduler relies on initSUnits numbering the nodes by their order in
691/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000692void ScheduleDAGInstrs::initSUnits() {
693 // We'll be allocating one SUnit for each real instruction in the region,
694 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000695 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000696
Andrew Trick8c207e42012-03-09 04:29:02 +0000697 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000698 MachineInstr *MI = I;
699 if (MI->isDebugValue())
700 continue;
701
Andrew Trick52226d42012-03-07 23:00:49 +0000702 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000703 MISUnitMap[MI] = SU;
704
705 SU->isCall = MI->isCall();
706 SU->isCommutable = MI->isCommutable();
707
708 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000709 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000710
Andrew Trick1766f932014-04-18 17:35:08 +0000711 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
712 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000713 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000714 // entire pipeline. These are identified by BufferSize=0.
715 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000716 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000717 // require the same resources. This is used for in-order execution pipelines
718 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000719 if (SchedModel.hasInstrSchedModel()) {
720 const MCSchedClassDesc *SC = getSchedClass(SU);
721 for (TargetSchedModel::ProcResIter
722 PI = SchedModel.getWriteProcResBegin(SC),
723 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000724 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
725 case 0:
726 SU->hasReservedResource = true;
727 break;
728 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000729 SU->isUnbuffered = true;
730 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000731 default:
732 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000733 }
734 }
735 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000736 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000737}
738
Alp Tokerf907b892013-12-05 05:44:44 +0000739/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000740/// DAG builder is an efficient place to do it because it already visits
741/// operands.
742void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000743 RegPressureTracker *RPTracker,
744 PressureDiffs *PDiffs) {
Eric Christopher2c635492015-01-27 07:54:39 +0000745 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000746 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
747 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000748 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000749
Andrew Trick310190e2013-09-04 21:00:02 +0000750 MISUnitMap.clear();
751 ScheduleDAG::clearDAG();
752
Andrew Trick46cc9a42012-02-22 06:08:11 +0000753 // Create an SUnit for each real instruction.
754 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000755
Andrew Trick1a831342013-08-30 03:49:48 +0000756 if (PDiffs)
757 PDiffs->init(SUnits.size());
758
Dan Gohman3aab10b2008-12-04 01:35:46 +0000759 // We build scheduling units by walking a block's instruction list from bottom
760 // to top.
761
David Goodwind2f9c042009-11-09 19:22:17 +0000762 // Remember where a generic side-effecting instruction is as we procede.
Craig Topperc0196b12014-04-14 00:51:57 +0000763 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000764
David Goodwind2f9c042009-11-09 19:22:17 +0000765 // Memory references to specific known memory locations are tracked
766 // so that they can be given more precise dependencies. We track
767 // separately the known memory locations that may alias and those
768 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000769 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
770 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000771 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000772
Dale Johannesen49de0602010-03-10 22:13:47 +0000773 // Remove any stale debug info; sometimes BuildSchedGraph is called again
774 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000775 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000776 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000777
Andrew Trickd675a4c2012-02-23 01:52:38 +0000778 assert(Defs.empty() && Uses.empty() &&
779 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000780 Defs.setUniverse(TRI->getNumRegs());
781 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000782
Andrew Trickd458e2d2012-02-22 21:59:00 +0000783 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000784 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000785 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000786 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000787
Andrew Trickd675a4c2012-02-23 01:52:38 +0000788 // Model data dependencies between instructions being scheduled and the
789 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000790 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000791
Dan Gohmanb9543432009-02-10 23:27:53 +0000792 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000793 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000794 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000795 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000796 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000797 if (MI && DbgMI) {
798 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000799 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000800 }
801
Dale Johannesen49de0602010-03-10 22:13:47 +0000802 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000803 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000804 continue;
805 }
Andrew Trick1a831342013-08-30 03:49:48 +0000806 SUnit *SU = MISUnitMap[MI];
807 assert(SU && "No SUnit mapped to this MI");
808
Andrew Trick88639922012-04-24 17:56:43 +0000809 if (RPTracker) {
Craig Topperc0196b12014-04-14 00:51:57 +0000810 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr;
811 RPTracker->recede(/*LiveUses=*/nullptr, PDiff);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000812 assert(RPTracker->getPos() == std::prev(MII) &&
813 "RPTracker can't find MI");
Andrew Trick88639922012-04-24 17:56:43 +0000814 }
Devang Patele5feef02011-06-02 20:07:12 +0000815
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000816 assert(
817 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
818 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000819
Dan Gohman3aab10b2008-12-04 01:35:46 +0000820 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000821 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000822 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
823 const MachineOperand &MO = MI->getOperand(j);
824 if (!MO.isReg()) continue;
825 unsigned Reg = MO.getReg();
826 if (Reg == 0) continue;
827
Andrew Trickdbee9d82012-01-14 02:17:15 +0000828 if (TRI->isPhysicalRegister(Reg))
829 addPhysRegDeps(SU, j);
830 else {
831 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trickec256482012-12-18 20:53:01 +0000832 if (MO.isDef()) {
833 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000834 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000835 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000836 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000837 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000838 }
839 }
Andrew Trickec256482012-12-18 20:53:01 +0000840 // If we haven't seen any uses in this scheduling region, create a
841 // dependence edge to ExitSU to model the live-out latency. This is required
842 // for vreg defs with no in-region use, and prefetches with no vreg def.
843 //
844 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
845 // check currently relies on being called before adding chain deps.
846 if (SU->NumSuccs == 0 && SU->Latency > 1
847 && (HasVRegDef || MI->mayLoad())) {
848 SDep Dep(SU, SDep::Artificial);
849 Dep.setLatency(SU->Latency - 1);
850 ExitSU.addPred(Dep);
851 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000852
853 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000854 // Chain dependencies used to enforce memory order should have
855 // latency of 0 (except for true dependency of Store followed by
856 // aliased Load... we estimate that with a single cycle of latency
857 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000858 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
859 // after stack slots are lowered to actual addresses.
860 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
861 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000862 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000863 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000864 // Be conservative with these and add dependencies on all memory
865 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000866 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000867 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000868 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
869 I->second[i]->addPred(SDep(SU, SDep::Barrier));
870 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000871 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000872 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000873 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000874 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
875 SDep Dep(SU, SDep::Barrier);
876 Dep.setLatency(TrueMemOrderLatency);
877 I->second[i]->addPred(Dep);
878 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000879 }
David Goodwind2f9c042009-11-09 19:22:17 +0000880 // Add SU to the barrier chain.
881 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000882 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000883 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000884 // This is a barrier event that acts as a pivotal node in the DAG,
885 // so it is safe to clear list of exposed nodes.
Andrew Trick344fb642012-06-13 02:39:03 +0000886 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
887 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000888 RejectMemNodes.clear();
889 NonAliasMemDefs.clear();
890 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000891
892 // fall-through
893 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +0000894 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000895 if (AliasChain) {
896 unsigned ChainLatency = 0;
897 if (AliasChain->getInstr()->mayLoad())
898 ChainLatency = TrueMemOrderLatency;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000899 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000900 ChainLatency);
901 }
David Goodwind2f9c042009-11-09 19:22:17 +0000902 AliasChain = SU;
903 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000904 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000905 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000906 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +0000907 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
908 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
909 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes);
910 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000911 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000912 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
913 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000914 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000915 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000916 }
Andrew Trick344fb642012-06-13 02:39:03 +0000917 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
918 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000919 PendingLoads.clear();
920 AliasMemDefs.clear();
921 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000922 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +0000923 // Add dependence on barrier chain, if needed.
924 // There is no point to check aliasing on barrier event. Even if
925 // SU and barrier _could_ be reordered, they should not. In addition,
926 // we have lost all RejectMemNodes below barrier.
927 if (BarrierChain)
928 BarrierChain->addPred(SDep(SU, SDep::Barrier));
929
Benjamin Kramerfd510922013-06-29 18:41:17 +0000930 UnderlyingObjectsVector Objs;
Hal Finkel66859ae2012-12-10 18:49:16 +0000931 getUnderlyingObjectsForInstr(MI, MFI, Objs);
932
933 if (Objs.empty()) {
934 // Treat all other stores conservatively.
935 goto new_alias_chain;
936 }
937
938 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000939 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
940 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000941 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +0000942 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000943 if (ThisMayAlias)
944 MayAlias = true;
945
Dan Gohman3aab10b2008-12-04 01:35:46 +0000946 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000947 // Record the def in MemDefs, first adding a dep if there is
948 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000949 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000950 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000951 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000952 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000953 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000954 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
955 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
956 0, true);
957
958 // If we're not using AA, then we only need one store per object.
959 if (!AAForDep)
960 I->second.clear();
961 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000962 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000963 if (ThisMayAlias) {
964 if (!AAForDep)
965 AliasMemDefs[V].clear();
966 AliasMemDefs[V].push_back(SU);
967 } else {
968 if (!AAForDep)
969 NonAliasMemDefs[V].clear();
970 NonAliasMemDefs[V].push_back(SU);
971 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000972 }
973 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000974 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000975 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000976 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000977 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000978 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000979 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000980 addChainDependency(AAForDep, MFI, SU, J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000981 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000982 J->second.clear();
983 }
David Goodwin00822aa2009-11-02 17:06:28 +0000984 }
Hal Finkel66859ae2012-12-10 18:49:16 +0000985 if (MayAlias) {
986 // Add dependencies from all the PendingLoads, i.e. loads
987 // with no underlying object.
988 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000989 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +0000990 TrueMemOrderLatency);
991 // Add dependence on alias chain, if needed.
992 if (AliasChain)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000993 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +0000994 }
Jonas Paulssonafa68132015-02-10 13:03:32 +0000995 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
996 TrueMemOrderLatency);
Evan Cheng7f8e5632011-12-07 07:15:52 +0000997 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +0000998 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +0000999 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001000 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001001 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001002 UnderlyingObjectsVector Objs;
Hal Finkel66859ae2012-12-10 18:49:16 +00001003 getUnderlyingObjectsForInstr(MI, MFI, Objs);
1004
1005 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001006 // A load with no underlying object. Depend on all
1007 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001008 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001009 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001010 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
1011 addChainDependency(AAForDep, MFI, SU, I->second[i],
1012 RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001013
David Goodwind2f9c042009-11-09 19:22:17 +00001014 PendingLoads.push_back(SU);
1015 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001016 } else {
1017 MayAlias = false;
1018 }
1019
Benjamin Kramerfd510922013-06-29 18:41:17 +00001020 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001021 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001022 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001023 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001024
1025 if (ThisMayAlias)
1026 MayAlias = true;
1027
1028 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001029 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001030 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001031 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001032 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1033 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001034 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
1035 addChainDependency(AAForDep, MFI, SU, I->second[i],
1036 RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001037 if (ThisMayAlias)
1038 AliasMemUses[V].push_back(SU);
1039 else
1040 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001041 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001042 if (MayAlias)
Andrew Trick344fb642012-06-13 02:39:03 +00001043 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001044 // Add dependencies on alias and barrier chains, if needed.
1045 if (MayAlias && AliasChain)
Hal Finkelb350ffd2013-08-29 03:25:05 +00001046 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
David Goodwind2f9c042009-11-09 19:22:17 +00001047 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001048 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001049 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001050 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001051 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001052 if (DbgMI)
1053 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001054
Andrew Trickd675a4c2012-02-23 01:52:38 +00001055 Defs.clear();
1056 Uses.clear();
Andrew Trick59ac4fb2012-01-14 02:17:18 +00001057 VRegDefs.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001058 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001059}
1060
Andrew Trick6b104f82013-12-28 21:56:55 +00001061/// \brief Initialize register live-range state for updating kills.
1062void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1063 // Start with no live registers.
1064 LiveRegs.reset();
1065
1066 // Examine the live-in regs of all successors.
1067 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1068 SE = BB->succ_end(); SI != SE; ++SI) {
1069 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
1070 E = (*SI)->livein_end(); I != E; ++I) {
1071 unsigned Reg = *I;
1072 // Repeat, for reg and all subregs.
1073 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1074 SubRegs.isValid(); ++SubRegs)
1075 LiveRegs.set(*SubRegs);
1076 }
1077 }
1078}
1079
1080bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1081 // Setting kill flag...
1082 if (!MO.isKill()) {
1083 MO.setIsKill(true);
1084 return false;
1085 }
1086
1087 // If MO itself is live, clear the kill flag...
1088 if (LiveRegs.test(MO.getReg())) {
1089 MO.setIsKill(false);
1090 return false;
1091 }
1092
1093 // If any subreg of MO is live, then create an imp-def for that
1094 // subreg and keep MO marked as killed.
1095 MO.setIsKill(false);
1096 bool AllDead = true;
1097 const unsigned SuperReg = MO.getReg();
1098 MachineInstrBuilder MIB(MF, MI);
1099 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1100 if (LiveRegs.test(*SubRegs)) {
1101 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1102 AllDead = false;
1103 }
1104 }
1105
1106 if(AllDead)
1107 MO.setIsKill(true);
1108 return false;
1109}
1110
1111// FIXME: Reuse the LivePhysRegs utility for this.
1112void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1113 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1114
1115 LiveRegs.resize(TRI->getNumRegs());
1116 BitVector killedRegs(TRI->getNumRegs());
1117
1118 startBlockForKills(MBB);
1119
1120 // Examine block from end to start...
1121 unsigned Count = MBB->size();
1122 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1123 I != E; --Count) {
1124 MachineInstr *MI = --I;
1125 if (MI->isDebugValue())
1126 continue;
1127
1128 // Update liveness. Registers that are defed but not used in this
1129 // instruction are now dead. Mark register and all subregs as they
1130 // are completely defined.
1131 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1132 MachineOperand &MO = MI->getOperand(i);
1133 if (MO.isRegMask())
1134 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1135 if (!MO.isReg()) continue;
1136 unsigned Reg = MO.getReg();
1137 if (Reg == 0) continue;
1138 if (!MO.isDef()) continue;
1139 // Ignore two-addr defs.
1140 if (MI->isRegTiedToUseOperand(i)) continue;
1141
1142 // Repeat for reg and all subregs.
1143 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1144 SubRegs.isValid(); ++SubRegs)
1145 LiveRegs.reset(*SubRegs);
1146 }
1147
1148 // Examine all used registers and set/clear kill flag. When a
1149 // register is used multiple times we only set the kill flag on
1150 // the first use. Don't set kill flags on undef operands.
1151 killedRegs.reset();
1152 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1153 MachineOperand &MO = MI->getOperand(i);
1154 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1155 unsigned Reg = MO.getReg();
1156 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1157
1158 bool kill = false;
1159 if (!killedRegs.test(Reg)) {
1160 kill = true;
1161 // A register is not killed if any subregs are live...
1162 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1163 if (LiveRegs.test(*SubRegs)) {
1164 kill = false;
1165 break;
1166 }
1167 }
1168
1169 // If subreg is not live, then register is killed if it became
1170 // live in this instruction
1171 if (kill)
1172 kill = !LiveRegs.test(Reg);
1173 }
1174
1175 if (MO.isKill() != kill) {
1176 DEBUG(dbgs() << "Fixing " << MO << " in ");
1177 // Warning: toggleKillFlag may invalidate MO.
1178 toggleKillFlag(MI, MO);
1179 DEBUG(MI->dump());
1180 }
1181
1182 killedRegs.set(Reg);
1183 }
1184
1185 // Mark any used register (that is not using undef) and subregs as
1186 // now live...
1187 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1188 MachineOperand &MO = MI->getOperand(i);
1189 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1190 unsigned Reg = MO.getReg();
1191 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1192
1193 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1194 SubRegs.isValid(); ++SubRegs)
1195 LiveRegs.set(*SubRegs);
1196 }
1197 }
1198}
1199
Dan Gohman60cb69e2008-11-19 23:18:57 +00001200void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001201#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001202 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001203#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001204}
1205
1206std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001207 std::string s;
1208 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001209 if (SU == &EntrySU)
1210 oss << "<entry>";
1211 else if (SU == &ExitSU)
1212 oss << "<exit>";
1213 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001214 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001215 return oss.str();
1216}
1217
Andrew Trick1b2324d2012-03-07 00:18:22 +00001218/// Return the basic block label. It is not necessarilly unique because a block
1219/// contains multiple scheduling regions. But it is fine for visualization.
1220std::string ScheduleDAGInstrs::getDAGName() const {
1221 return "dag." + BB->getFullName();
1222}
Andrew Trick90f711d2012-10-15 18:02:27 +00001223
Andrew Trick48d392e2012-11-28 05:13:28 +00001224//===----------------------------------------------------------------------===//
1225// SchedDFSResult Implementation
1226//===----------------------------------------------------------------------===//
1227
1228namespace llvm {
1229/// \brief Internal state used to compute SchedDFSResult.
1230class SchedDFSImpl {
1231 SchedDFSResult &R;
1232
1233 /// Join DAG nodes into equivalence classes by their subtree.
1234 IntEqClasses SubtreeClasses;
1235 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1236 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1237
Andrew Trickffc80972013-01-25 06:52:27 +00001238 struct RootData {
1239 unsigned NodeID;
1240 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1241 unsigned SubInstrCount; // Instr count in this tree only, not children.
1242
1243 RootData(unsigned id): NodeID(id),
1244 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1245 SubInstrCount(0) {}
1246
1247 unsigned getSparseSetIndex() const { return NodeID; }
1248 };
1249
1250 SparseSet<RootData> RootSet;
1251
Andrew Trick48d392e2012-11-28 05:13:28 +00001252public:
Andrew Trickffc80972013-01-25 06:52:27 +00001253 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1254 RootSet.setUniverse(R.DFSNodeData.size());
1255 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001256
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001257 /// Return true if this node been visited by the DFS traversal.
1258 ///
1259 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1260 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001261 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001262 return R.DFSNodeData[SU->NodeNum].SubtreeID
1263 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001264 }
1265
1266 /// Initialize this node's instruction count. We don't need to flag the node
1267 /// visited until visitPostorder because the DAG cannot have cycles.
1268 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001269 R.DFSNodeData[SU->NodeNum].InstrCount =
1270 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001271 }
1272
1273 /// Called once for each node after all predecessors are visited. Revisit this
1274 /// node's predecessors and potentially join them now that we know the ILP of
1275 /// the other predecessors.
1276 void visitPostorderNode(const SUnit *SU) {
1277 // Mark this node as the root of a subtree. It may be joined with its
1278 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001279 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1280 RootData RData(SU->NodeNum);
1281 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001282
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001283 // If any predecessors are still in their own subtree, they either cannot be
1284 // joined or are large enough to remain separate. If this parent node's
1285 // total instruction count is not greater than a child subtree by at least
1286 // the subtree limit, then try to join it now since splitting subtrees is
1287 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001288 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001289 for (SUnit::const_pred_iterator
1290 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1291 if (PI->getKind() != SDep::Data)
1292 continue;
1293 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001294 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001295 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001296
1297 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001298 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1299 // If the predecessor's parent is invalid, this is a tree edge and the
1300 // current node is the parent.
1301 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1302 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1303 }
1304 else if (RootSet.count(PredNum)) {
1305 // The predecessor is not a root, but is still in the root set. This
1306 // must be the new parent that it was just joined to. Note that
1307 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1308 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001309 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1310 RootSet.erase(PredNum);
1311 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001312 }
Andrew Trickffc80972013-01-25 06:52:27 +00001313 RootSet[SU->NodeNum] = RData;
1314 }
1315
1316 /// Called once for each tree edge after calling visitPostOrderNode on the
1317 /// predecessor. Increment the parent node's instruction count and
1318 /// preemptively join this subtree to its parent's if it is small enough.
1319 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1320 R.DFSNodeData[Succ->NodeNum].InstrCount
1321 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1322 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001323 }
1324
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001325 /// Add a connection for cross edges.
1326 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001327 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1328 }
1329
1330 /// Set each node's subtree ID to the representative ID and record connections
1331 /// between trees.
1332 void finalize() {
1333 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001334 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1335 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1336 && "number of roots should match trees");
1337 for (SparseSet<RootData>::const_iterator
1338 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1339 unsigned TreeID = SubtreeClasses[RI->NodeID];
1340 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1341 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1342 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001343 // Note that SubInstrCount may be greater than InstrCount if we joined
1344 // subtrees across a cross edge. InstrCount will be attributed to the
1345 // original parent, while SubInstrCount will be attributed to the joined
1346 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001347 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001348 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1349 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1350 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001351 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1352 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001353 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001354 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001355 }
1356 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1357 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1358 I != E; ++I) {
1359 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1360 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1361 if (PredTree == SuccTree)
1362 continue;
1363 unsigned Depth = I->first->getDepth();
1364 addConnection(PredTree, SuccTree, Depth);
1365 addConnection(SuccTree, PredTree, Depth);
1366 }
1367 }
1368
1369protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001370 /// Join the predecessor subtree with the successor that is its DFS
1371 /// parent. Apply some heuristics before joining.
1372 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1373 bool CheckLimit = true) {
1374 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1375
1376 // Check if the predecessor is already joined.
1377 const SUnit *PredSU = PredDep.getSUnit();
1378 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001379 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001380 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001381
1382 // Four is the magic number of successors before a node is considered a
1383 // pinch point.
1384 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001385 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1386 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1387 if (SI->getKind() == SDep::Data) {
1388 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001389 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001390 }
1391 }
Andrew Trickffc80972013-01-25 06:52:27 +00001392 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001393 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001394 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001395 SubtreeClasses.join(Succ->NodeNum, PredNum);
1396 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001397 }
1398
Andrew Trick48d392e2012-11-28 05:13:28 +00001399 /// Called by finalize() to record a connection between trees.
1400 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1401 if (!Depth)
1402 return;
1403
Andrew Trickffc80972013-01-25 06:52:27 +00001404 do {
1405 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1406 R.SubtreeConnections[FromTree];
1407 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1408 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1409 if (I->TreeID == ToTree) {
1410 I->Level = std::max(I->Level, Depth);
1411 return;
1412 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001413 }
Andrew Trickffc80972013-01-25 06:52:27 +00001414 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1415 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1416 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001417 }
1418};
1419} // namespace llvm
1420
Andrew Trick90f711d2012-10-15 18:02:27 +00001421namespace {
1422/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1423class SchedDAGReverseDFS {
1424 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1425public:
1426 bool isComplete() const { return DFSStack.empty(); }
1427
1428 void follow(const SUnit *SU) {
1429 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1430 }
1431 void advance() { ++DFSStack.back().second; }
1432
Andrew Trick48d392e2012-11-28 05:13:28 +00001433 const SDep *backtrack() {
1434 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001435 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001436 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001437
1438 const SUnit *getCurr() const { return DFSStack.back().first; }
1439
1440 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1441
1442 SUnit::const_pred_iterator getPredEnd() const {
1443 return getCurr()->Preds.end();
1444 }
1445};
1446} // anonymous
1447
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001448static bool hasDataSucc(const SUnit *SU) {
1449 for (SUnit::const_succ_iterator
1450 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001451 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001452 return true;
1453 }
1454 return false;
1455}
1456
Andrew Trick90f711d2012-10-15 18:02:27 +00001457/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1458/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001459void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001460 if (!IsBottomUp)
1461 llvm_unreachable("Top-down ILP metric is unimplemnted");
1462
Andrew Trick48d392e2012-11-28 05:13:28 +00001463 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001464 for (ArrayRef<SUnit>::const_iterator
1465 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1466 const SUnit *SU = &*SI;
1467 if (Impl.isVisited(SU) || hasDataSucc(SU))
1468 continue;
1469
Andrew Trick48d392e2012-11-28 05:13:28 +00001470 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001471 Impl.visitPreorder(SU);
1472 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001473 for (;;) {
1474 // Traverse the leftmost path as far as possible.
1475 while (DFS.getPred() != DFS.getPredEnd()) {
1476 const SDep &PredDep = *DFS.getPred();
1477 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001478 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001479 if (PredDep.getKind() != SDep::Data
1480 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001481 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001482 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001483 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001484 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001485 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001486 continue;
1487 }
1488 Impl.visitPreorder(PredDep.getSUnit());
1489 DFS.follow(PredDep.getSUnit());
1490 }
1491 // Visit the top of the stack in postorder and backtrack.
1492 const SUnit *Child = DFS.getCurr();
1493 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001494 Impl.visitPostorderNode(Child);
1495 if (PredDep)
1496 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001497 if (DFS.isComplete())
1498 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001499 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001500 }
1501 Impl.finalize();
1502}
1503
1504/// The root of the given SubtreeID was just scheduled. For all subtrees
1505/// connected to this tree, record the depth of the connection so that the
1506/// nearest connected subtrees can be prioritized.
1507void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1508 for (SmallVectorImpl<Connection>::const_iterator
1509 I = SubtreeConnections[SubtreeID].begin(),
1510 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1511 SubtreeConnectLevels[I->TreeID] =
1512 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1513 DEBUG(dbgs() << " Tree: " << I->TreeID
1514 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001515 }
1516}
1517
Alp Tokerd8d510a2014-07-01 21:19:13 +00001518LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001519void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001520 OS << InstrCount << " / " << Length << " = ";
1521 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001522 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001523 else
1524 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001525}
1526
Alp Tokerd8d510a2014-07-01 21:19:13 +00001527LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001528void ILPValue::dump() const {
1529 dbgs() << *this << '\n';
1530}
1531
1532namespace llvm {
1533
Alp Tokerd8d510a2014-07-01 21:19:13 +00001534LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001535raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1536 Val.print(OS);
1537 return OS;
1538}
1539
1540} // namespace llvm