blob: 409e7041907f41c9d1d9c513bd7bd95c53f6c8dc [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,
Andrew Trick46cc9a42012-02-22 06:08:11 +000054 bool IsPostRAFlag,
Andrew Trick6b104f82013-12-28 21:56:55 +000055 bool RemoveKillFlags,
Andrew Trick46cc9a42012-02-22 06:08:11 +000056 LiveIntervals *lis)
Alexey Samsonovea0aee62014-08-20 20:57:26 +000057 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()), LIS(lis),
Andrew Trick6b104f82013-12-28 21:56:55 +000058 IsPostRA(IsPostRAFlag), RemoveKillFlags(RemoveKillFlags),
Craig Topperc0196b12014-04-14 00:51:57 +000059 CanHandleTerminators(false), FirstDbgValue(nullptr) {
Andrew Trick46cc9a42012-02-22 06:08:11 +000060 assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals");
Devang Patele5feef02011-06-02 20:07:12 +000061 DbgValues.clear();
Andrew Trickdb42c6f2012-02-22 06:08:13 +000062 assert(!(IsPostRA && MRI.getNumVirtRegs()) &&
Andrew Trickda84e642012-02-21 04:51:23 +000063 "Virtual registers must be removed prior to PostRA scheduling");
Andrew Trick9b635132012-09-18 18:20:00 +000064
65 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
Pete Cooper11759452014-09-02 17:43:54 +000066 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000067}
Dan Gohman60cb69e2008-11-19 23:18:57 +000068
Dan Gohman1ee0d412009-01-30 02:49:14 +000069/// getUnderlyingObjectFromInt - This is the function that does the work of
70/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
71static const Value *getUnderlyingObjectFromInt(const Value *V) {
72 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000073 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000074 // If we find a ptrtoint, we can transfer control back to the
75 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000076 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000077 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000078 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000079 // likely that the other operand will lead us to the base
80 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000081 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000082 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000083 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000084 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000085 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000086 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
87 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000088 return V;
89 V = U->getOperand(0);
90 } else {
91 return V;
92 }
Duncan Sands19d0b472010-02-16 11:11:14 +000093 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +000094 } while (1);
95}
96
Hal Finkel66859ae2012-12-10 18:49:16 +000097/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +000098/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +000099static void getUnderlyingObjects(const Value *V,
100 SmallVectorImpl<Value *> &Objects) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000101 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +0000102 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000103 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000104 V = Working.pop_back_val();
105
106 SmallVector<Value *, 4> Objs;
107 GetUnderlyingObjects(const_cast<Value *>(V), Objs);
108
Craig Toppere1c1d362013-07-03 05:11:49 +0000109 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000110 I != IE; ++I) {
111 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000112 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000113 continue;
114 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
115 const Value *O =
116 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
117 if (O->getType()->isPointerTy()) {
118 Working.push_back(O);
119 continue;
120 }
121 }
122 Objects.push_back(const_cast<Value *>(V));
123 }
124 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000125}
126
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000127typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
128typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
Benjamin Kramerfd510922013-06-29 18:41:17 +0000129UnderlyingObjectsVector;
130
Hal Finkel66859ae2012-12-10 18:49:16 +0000131/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000132/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000133/// object, return the Value for that object.
134static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000135 const MachineFrameInfo *MFI,
136 UnderlyingObjectsVector &Objects) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000137 if (!MI->hasOneMemOperand() ||
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000138 (!(*MI->memoperands_begin())->getValue() &&
139 !(*MI->memoperands_begin())->getPseudoValue()) ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000140 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000141 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000142
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000143 if (const PseudoSourceValue *PSV =
144 (*MI->memoperands_begin())->getPseudoValue()) {
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000145 // For now, ignore PseudoSourceValues which may alias LLVM IR values
146 // because the code that uses this function has no way to cope with
147 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000148 if (!PSV->isAliased(MFI)) {
149 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000150 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000151 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000152 return;
153 }
154
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000155 const Value *V = (*MI->memoperands_begin())->getValue();
156 if (!V)
157 return;
158
Hal Finkel66859ae2012-12-10 18:49:16 +0000159 SmallVector<Value *, 4> Objs;
160 getUnderlyingObjects(V, Objs);
Andrew Trick24b1c482011-05-05 19:24:06 +0000161
Craig Toppere1c1d362013-07-03 05:11:49 +0000162 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
163 I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000164 V = *I;
165
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000166 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000167 Objects.clear();
168 return;
169 }
170
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000171 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000172 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000173}
174
Andrew Trick7405c6d2012-04-20 20:05:21 +0000175void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
176 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000177}
178
Andrew Trick52226d42012-03-07 23:00:49 +0000179void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000180 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000181 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000182}
183
Andrew Trick60cf03e2012-03-07 05:21:52 +0000184/// Initialize the DAG and common scheduler state for the current scheduling
185/// region. This does not actually create the DAG, only clears it. The
186/// scheduling driver may call BuildSchedGraph multiple times per scheduling
187/// region.
188void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
189 MachineBasicBlock::iterator begin,
190 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000191 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000192 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000193 RegionBegin = begin;
194 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000195 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000196}
197
198/// Close the current scheduling region. Don't clear any state in case the
199/// driver wants to refer to the previous scheduling region.
200void ScheduleDAGInstrs::exitRegion() {
201 // Nothing to do.
202}
203
Andrew Trick52226d42012-03-07 23:00:49 +0000204/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000205/// list of instructions being scheduled to scheduling barrier by adding
206/// the exit SU to the register defs and use list. This is because we want to
207/// make sure instructions which define registers that are either used by
208/// the terminator or are live-out are properly scheduled. This is
209/// especially important when the definition latency of the return value(s)
210/// are too high to be hidden by the branch or when the liveout registers
211/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000212void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000213 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000214 ExitSU.setInstr(ExitMI);
215 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000216 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000217 if (ExitMI && AllDepKnown) {
218 // If it's a call or a barrier, add dependencies on the defs and uses of
219 // instruction.
220 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
221 const MachineOperand &MO = ExitMI->getOperand(i);
222 if (!MO.isReg() || MO.isDef()) continue;
223 unsigned Reg = MO.getReg();
224 if (Reg == 0) continue;
225
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000226 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000227 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Tricke6913c72012-03-16 05:04:25 +0000228 else {
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000229 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trickd5953622012-12-01 01:22:44 +0000230 if (MO.readsReg()) // ignore undef operands
231 addVRegUseDeps(&ExitSU, i);
Andrew Tricke6913c72012-03-16 05:04:25 +0000232 }
Evan Cheng15459b62010-10-23 02:10:46 +0000233 }
234 } else {
235 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000236 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000237 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000238 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
239 SE = BB->succ_end(); SI != SE; ++SI)
240 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trick24b1c482011-05-05 19:24:06 +0000241 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengcbdf7e82010-10-27 23:17:17 +0000242 unsigned Reg = *I;
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000243 if (!Uses.contains(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000244 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000245 }
Evan Cheng15459b62010-10-23 02:10:46 +0000246 }
247}
248
Andrew Trickd675a4c2012-02-23 01:52:38 +0000249/// MO is an operand of SU's instruction that defines a physical register. Add
250/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000251void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
252 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000253 assert(MO.isDef() && "expect physreg def");
254
255 // Ask the target if address-backscheduling is desirable, and if so how much.
256 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000257
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000258 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
259 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000260 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000261 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000262 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
263 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000264 if (UseSU == SU)
265 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000266
Andrew Trick07dced62012-10-08 18:54:00 +0000267 // Adjust the dependence latency using operand def/use information,
268 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000269 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000270 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000271 SDep Dep;
272 if (UseOp < 0)
273 Dep = SDep(SU, SDep::Artificial);
274 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000275 // Set the hasPhysRegDefs only for physreg defs that have a use within
276 // the scheduling region.
277 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000278 Dep = SDep(SU, SDep::Data, *Alias);
279 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000280 }
281 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000282 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
283 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000284
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000285 ST.adjustSchedDependency(SU, UseSU, Dep);
286 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000287 }
288 }
289}
290
Andrew Trickdbee9d82012-01-14 02:17:15 +0000291/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
292/// this SUnit to following instructions in the same scheduling region that
293/// depend the physical register referenced at OperIdx.
294void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000295 MachineInstr *MI = SU->getInstr();
296 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000297
298 // Optionally add output and anti dependencies. For anti
299 // dependencies we use a latency of 0 because for a multi-issue
300 // target we want to allow the defining instruction to issue
301 // in the same cycle as the using instruction.
302 // TODO: Using a latency of 1 here for output dependencies assumes
303 // there's no cost for reusing registers.
304 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000305 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
306 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000307 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000308 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000309 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
310 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000311 if (DefSU == &ExitSU)
312 continue;
313 if (DefSU != SU &&
314 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000315 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000316 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000317 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000318 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000319 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000320 Dep.setLatency(
321 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000322 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000323 }
324 }
325 }
326 }
327
Andrew Trickd675a4c2012-02-23 01:52:38 +0000328 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000329 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000330 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
331 // retrieve the existing SUnits list for this register's uses.
332 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000333 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000334 if (RemoveKillFlags)
335 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000336 }
337 else {
Andrew Trickae535612012-08-23 00:39:43 +0000338 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000339 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000340
Andrew Trickd675a4c2012-02-23 01:52:38 +0000341 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000342 if (Uses.contains(Reg))
343 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000344
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000345 if (!MO.isDead()) {
346 Defs.eraseAll(Reg);
347 } else if (SU->isCall) {
348 // Calls will not be reordered because of chain dependencies (see
349 // below). Since call operands are dead, calls may continue to be added
350 // to the DefList making dependence checking quadratic in the size of
351 // the block. Instead, we leave only one call at the back of the
352 // DefList.
353 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
354 Reg2SUnitsMap::iterator B = P.first;
355 Reg2SUnitsMap::iterator I = P.second;
356 for (bool isBegin = I == B; !isBegin; /* empty */) {
357 isBegin = (--I) == B;
358 if (!I->SU->isCall)
359 break;
360 I = Defs.erase(I);
361 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000362 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000363
Andrew Trickd675a4c2012-02-23 01:52:38 +0000364 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000365 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000366 }
367}
368
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000369/// addVRegDefDeps - Add register output and data dependencies from this SUnit
370/// to instructions that occur later in the same scheduling region if they read
371/// from or write to the virtual register defined at OperIdx.
372///
373/// TODO: Hoist loop induction variable increments. This has to be
374/// reevaluated. Generally, IV scheduling should be done before coalescing.
375void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
376 const MachineInstr *MI = SU->getInstr();
377 unsigned Reg = MI->getOperand(OperIdx).getReg();
378
Andrew Trick94053432012-07-28 01:48:15 +0000379 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000380 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000381 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000382 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000383 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000384
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000385 // Add output dependence to the next nearest def of this vreg.
386 //
387 // Unless this definition is dead, the output dependence should be
388 // transitively redundant with antidependencies from this definition's
389 // uses. We're conservative for now until we have a way to guarantee the uses
390 // are not eliminated sometime during scheduling. The output dependence edge
391 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000392 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000393 if (DefI == VRegDefs.end())
394 VRegDefs.insert(VReg2SUnit(Reg, SU));
395 else {
396 SUnit *DefSU = DefI->SU;
397 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000398 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000399 Dep.setLatency(
400 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000401 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000402 }
403 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000404 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000405}
406
Andrew Trick46cc9a42012-02-22 06:08:11 +0000407/// addVRegUseDeps - Add a register data dependency if the instruction that
408/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
409/// register antidependency from this SUnit to instructions that occur later in
410/// the same scheduling region if they write the virtual register.
411///
412/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000413void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000414 MachineInstr *MI = SU->getInstr();
415 unsigned Reg = MI->getOperand(OperIdx).getReg();
416
Andrew Trick8dd26f02013-08-23 17:48:39 +0000417 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000418 VReg2UseMap::iterator UI = VRegUses.find(Reg);
419 for (; UI != VRegUses.end(); ++UI) {
420 if (UI->SU == SU)
421 break;
422 }
423 if (UI == VRegUses.end())
424 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000425
Andrew Trick46cc9a42012-02-22 06:08:11 +0000426 // Lookup this operand's reaching definition.
427 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000428 LiveQueryResult LRQ
429 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000430 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000431
Andrew Trickda6a15d2012-02-23 03:16:24 +0000432 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000433 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000434 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000435 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000436 if (Def) {
437 SUnit *DefSU = getSUnit(Def);
438 if (DefSU) {
439 // The reaching Def lives within this scheduling region.
440 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000441 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000442 // Adjust the dependence latency using operand def/use information, then
443 // allow the target to perform its own adjustments.
444 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000445 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000446
Andrew Trick09650df2012-10-08 18:53:57 +0000447 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
448 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000449 SU->addPred(dep);
450 }
451 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000452
453 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000454 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000455 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000456 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000457}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000458
Andrew Trickda01ba32012-05-15 18:59:41 +0000459/// Return true if MI is an instruction we are unable to reason about
460/// (like a call or something with unmodeled side effects).
461static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
462 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesencea3e772012-08-29 21:19:21 +0000463 (MI->hasOrderedMemoryRef() &&
Andrew Trickda01ba32012-05-15 18:59:41 +0000464 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
465 return true;
466 return false;
467}
468
469// This MI might have either incomplete info, or known to be unsafe
470// to deal with (i.e. volatile object).
471static inline bool isUnsafeMemoryObject(MachineInstr *MI,
472 const MachineFrameInfo *MFI) {
473 if (!MI || MI->memoperands_empty())
474 return true;
475 // We purposefully do no check for hasOneMemOperand() here
476 // in hope to trigger an assert downstream in order to
477 // finish implementation.
478 if ((*MI->memoperands_begin())->isVolatile() ||
479 MI->hasUnmodeledSideEffects())
480 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000481
482 if ((*MI->memoperands_begin())->getPseudoValue()) {
483 // Similarly to getUnderlyingObjectForInstr:
484 // For now, ignore PseudoSourceValues which may alias LLVM IR values
485 // because the code that uses this function has no way to cope with
486 // such aliases.
487 return true;
488 }
489
Andrew Trickda01ba32012-05-15 18:59:41 +0000490 const Value *V = (*MI->memoperands_begin())->getValue();
491 if (!V)
492 return true;
493
Hal Finkel66859ae2012-12-10 18:49:16 +0000494 SmallVector<Value *, 4> Objs;
495 getUnderlyingObjects(V, Objs);
Craig Toppere1c1d362013-07-03 05:11:49 +0000496 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
497 IE = Objs.end(); I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000498 // Does this pointer refer to a distinct and identifiable object?
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000499 if (!isIdentifiedObject(*I))
Andrew Trickda01ba32012-05-15 18:59:41 +0000500 return true;
501 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000502
503 return false;
504}
505
506/// This returns true if the two MIs need a chain edge betwee them.
507/// If these are not even memory operations, we still may need
508/// chain deps between them. The question really is - could
509/// these two MIs be reordered during scheduling from memory dependency
510/// point of view.
511static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
512 MachineInstr *MIa,
513 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000514 const MachineFunction *MF = MIa->getParent()->getParent();
515 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
516
Andrew Trickda01ba32012-05-15 18:59:41 +0000517 // Cover a trivial case - no edge is need to itself.
518 if (MIa == MIb)
519 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000520
521 // Let the target decide if memory accesses cannot possibly overlap.
522 if ((MIa->mayLoad() || MIa->mayStore()) &&
523 (MIb->mayLoad() || MIb->mayStore()))
524 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
525 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000526
Hal Finkel2150e3a2014-01-08 21:52:02 +0000527 // FIXME: Need to handle multiple memory operands to support all targets.
528 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
529 return true;
530
Andrew Trickda01ba32012-05-15 18:59:41 +0000531 if (isUnsafeMemoryObject(MIa, MFI) || isUnsafeMemoryObject(MIb, MFI))
532 return true;
533
534 // If we are dealing with two "normal" loads, we do not need an edge
535 // between them - they could be reordered.
536 if (!MIa->mayStore() && !MIb->mayStore())
537 return false;
538
539 // To this point analysis is generic. From here on we do need AA.
540 if (!AA)
541 return true;
542
543 MachineMemOperand *MMOa = *MIa->memoperands_begin();
544 MachineMemOperand *MMOb = *MIb->memoperands_begin();
545
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000546 if (!MMOa->getValue() || !MMOb->getValue())
547 return true;
548
Andrew Trickda01ba32012-05-15 18:59:41 +0000549 // The following interface to AA is fashioned after DAGCombiner::isAlias
550 // and operates with MachineMemOperand offset with some important
551 // assumptions:
552 // - LLVM fundamentally assumes flat address spaces.
553 // - MachineOperand offset can *only* result from legalization and
554 // cannot affect queries other than the trivial case of overlap
555 // checking.
556 // - These offsets never wrap and never step outside
557 // of allocated objects.
558 // - There should never be any negative offsets here.
559 //
560 // FIXME: Modify API to hide this math from "user"
561 // FIXME: Even before we go to AA we can reason locally about some
562 // memory objects. It can save compile time, and possibly catch some
563 // corner cases not currently covered.
564
565 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
566 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
567
568 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
569 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
570 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
571
572 AliasAnalysis::AliasResult AAResult = AA->alias(
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000573 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
Hal Finkelcc39b672014-07-24 12:16:19 +0000574 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000575 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
Hal Finkelcc39b672014-07-24 12:16:19 +0000576 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000577
578 return (AAResult != AliasAnalysis::NoAlias);
579}
580
581/// This recursive function iterates over chain deps of SUb looking for
582/// "latest" node that needs a chain edge to SUa.
583static unsigned
584iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
585 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
Craig Topper71b7b682014-08-21 05:55:13 +0000586 SmallPtrSetImpl<const SUnit*> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000587 if (!SUa || !SUb || SUb == ExitSU)
588 return *Depth;
589
590 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000591 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000592 return *Depth;
593 // If there is _some_ dependency already in place, do not
594 // descend any further.
595 // TODO: Need to make sure that if that dependency got eliminated or ignored
596 // for any reason in the future, we would not violate DAG topology.
597 // Currently it does not happen, but makes an implicit assumption about
598 // future implementation.
599 //
600 // Independently, if we encounter node that is some sort of global
601 // object (like a call) we already have full set of dependencies to it
602 // and we can stop descending.
603 if (SUa->isSucc(SUb) ||
604 isGlobalMemoryObject(AA, SUb->getInstr()))
605 return *Depth;
606
607 // If we do need an edge, or we have exceeded depth budget,
608 // add that edge to the predecessors chain of SUb,
609 // and stop descending.
610 if (*Depth > 200 ||
611 MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000612 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000613 return *Depth;
614 }
615 // Track current depth.
616 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000617 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000618 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
619 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000620 if (I->isNormalMemoryOrBarrier())
Andrew Trickda01ba32012-05-15 18:59:41 +0000621 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited);
622 return *Depth;
623}
624
625/// This function assumes that "downward" from SU there exist
626/// tail/leaf of already constructed DAG. It iterates downward and
627/// checks whether SU can be aliasing any node dominated
628/// by it.
629static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Andrew Trick344fb642012-06-13 02:39:03 +0000630 SUnit *SU, SUnit *ExitSU, std::set<SUnit *> &CheckList,
631 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000632 if (!SU)
633 return;
634
635 SmallPtrSet<const SUnit*, 16> Visited;
636 unsigned Depth = 0;
637
638 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
639 I != IE; ++I) {
640 if (SU == *I)
641 continue;
Andrew Trick344fb642012-06-13 02:39:03 +0000642 if (MIsNeedChainEdge(AA, MFI, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000643 SDep Dep(SU, SDep::MayAliasMem);
644 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
645 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000646 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000647
648 // Iterate recursively over all previously added memory chain
649 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000650 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
651 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000652 if (J->isNormalMemoryOrBarrier())
Andrew Trickda01ba32012-05-15 18:59:41 +0000653 iterateChainSucc (AA, MFI, SU, J->getSUnit(),
654 ExitSU, &Depth, Visited);
655 }
656}
657
658/// Check whether two objects need a chain edge, if so, add it
659/// otherwise remember the rejected SU.
660static inline
661void addChainDependency (AliasAnalysis *AA, const MachineFrameInfo *MFI,
662 SUnit *SUa, SUnit *SUb,
663 std::set<SUnit *> &RejectList,
664 unsigned TrueMemOrderLatency = 0,
665 bool isNormalMemory = false) {
666 // If this is a false dependency,
667 // do not add the edge, but rememeber the rejected node.
Owen Andersonec4f8732014-09-12 21:17:55 +0000668 if (MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000669 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
670 Dep.setLatency(TrueMemOrderLatency);
671 SUb->addPred(Dep);
672 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000673 else {
674 // Duplicate entries should be ignored.
675 RejectList.insert(SUb);
676 DEBUG(dbgs() << "\tReject chain dep between SU("
677 << SUa->NodeNum << ") and SU("
678 << SUb->NodeNum << ")\n");
679 }
680}
681
Andrew Trick46cc9a42012-02-22 06:08:11 +0000682/// Create an SUnit for each real instruction, numbered in top-down toplological
683/// order. The instruction order A < B, implies that no edge exists from B to A.
684///
685/// Map each real instruction to its SUnit.
686///
Andrew Trick8823dec2012-03-14 04:00:41 +0000687/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
688/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
689/// instead of pointers.
690///
691/// MachineScheduler relies on initSUnits numbering the nodes by their order in
692/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000693void ScheduleDAGInstrs::initSUnits() {
694 // We'll be allocating one SUnit for each real instruction in the region,
695 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000696 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000697
Andrew Trick8c207e42012-03-09 04:29:02 +0000698 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000699 MachineInstr *MI = I;
700 if (MI->isDebugValue())
701 continue;
702
Andrew Trick52226d42012-03-07 23:00:49 +0000703 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000704 MISUnitMap[MI] = SU;
705
706 SU->isCall = MI->isCall();
707 SU->isCommutable = MI->isCommutable();
708
709 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000710 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000711
Andrew Trick1766f932014-04-18 17:35:08 +0000712 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
713 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000714 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000715 // entire pipeline. These are identified by BufferSize=0.
716 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000717 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000718 // require the same resources. This is used for in-order execution pipelines
719 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000720 if (SchedModel.hasInstrSchedModel()) {
721 const MCSchedClassDesc *SC = getSchedClass(SU);
722 for (TargetSchedModel::ProcResIter
723 PI = SchedModel.getWriteProcResBegin(SC),
724 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000725 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
726 case 0:
727 SU->hasReservedResource = true;
728 break;
729 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000730 SU->isUnbuffered = true;
731 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000732 default:
733 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000734 }
735 }
736 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000737 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000738}
739
Alp Tokerf907b892013-12-05 05:44:44 +0000740/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000741/// DAG builder is an efficient place to do it because it already visits
742/// operands.
743void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000744 RegPressureTracker *RPTracker,
745 PressureDiffs *PDiffs) {
Hal Finkelb350ffd2013-08-29 03:25:05 +0000746 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
747 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
748 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000749 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000750
Andrew Trick310190e2013-09-04 21:00:02 +0000751 MISUnitMap.clear();
752 ScheduleDAG::clearDAG();
753
Andrew Trick46cc9a42012-02-22 06:08:11 +0000754 // Create an SUnit for each real instruction.
755 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000756
Andrew Trick1a831342013-08-30 03:49:48 +0000757 if (PDiffs)
758 PDiffs->init(SUnits.size());
759
Dan Gohman3aab10b2008-12-04 01:35:46 +0000760 // We build scheduling units by walking a block's instruction list from bottom
761 // to top.
762
David Goodwind2f9c042009-11-09 19:22:17 +0000763 // Remember where a generic side-effecting instruction is as we procede.
Craig Topperc0196b12014-04-14 00:51:57 +0000764 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000765
David Goodwind2f9c042009-11-09 19:22:17 +0000766 // Memory references to specific known memory locations are tracked
767 // so that they can be given more precise dependencies. We track
768 // separately the known memory locations that may alias and those
769 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000770 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
771 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000772 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000773
Dale Johannesen49de0602010-03-10 22:13:47 +0000774 // Remove any stale debug info; sometimes BuildSchedGraph is called again
775 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000776 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000777 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000778
Andrew Trickd675a4c2012-02-23 01:52:38 +0000779 assert(Defs.empty() && Uses.empty() &&
780 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000781 Defs.setUniverse(TRI->getNumRegs());
782 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000783
Andrew Trickd458e2d2012-02-22 21:59:00 +0000784 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000785 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000786 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000787 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000788
Andrew Trickd675a4c2012-02-23 01:52:38 +0000789 // Model data dependencies between instructions being scheduled and the
790 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000791 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000792
Dan Gohmanb9543432009-02-10 23:27:53 +0000793 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000794 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000795 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000796 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000797 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000798 if (MI && DbgMI) {
799 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000800 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000801 }
802
Dale Johannesen49de0602010-03-10 22:13:47 +0000803 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000804 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000805 continue;
806 }
Andrew Trick1a831342013-08-30 03:49:48 +0000807 SUnit *SU = MISUnitMap[MI];
808 assert(SU && "No SUnit mapped to this MI");
809
Andrew Trick88639922012-04-24 17:56:43 +0000810 if (RPTracker) {
Craig Topperc0196b12014-04-14 00:51:57 +0000811 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr;
812 RPTracker->recede(/*LiveUses=*/nullptr, PDiff);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000813 assert(RPTracker->getPos() == std::prev(MII) &&
814 "RPTracker can't find MI");
Andrew Trick88639922012-04-24 17:56:43 +0000815 }
Devang Patele5feef02011-06-02 20:07:12 +0000816
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000817 assert(
818 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
819 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000820
Dan Gohman3aab10b2008-12-04 01:35:46 +0000821 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000822 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000823 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
824 const MachineOperand &MO = MI->getOperand(j);
825 if (!MO.isReg()) continue;
826 unsigned Reg = MO.getReg();
827 if (Reg == 0) continue;
828
Andrew Trickdbee9d82012-01-14 02:17:15 +0000829 if (TRI->isPhysicalRegister(Reg))
830 addPhysRegDeps(SU, j);
831 else {
832 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trickec256482012-12-18 20:53:01 +0000833 if (MO.isDef()) {
834 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000835 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000836 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000837 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000838 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000839 }
840 }
Andrew Trickec256482012-12-18 20:53:01 +0000841 // If we haven't seen any uses in this scheduling region, create a
842 // dependence edge to ExitSU to model the live-out latency. This is required
843 // for vreg defs with no in-region use, and prefetches with no vreg def.
844 //
845 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
846 // check currently relies on being called before adding chain deps.
847 if (SU->NumSuccs == 0 && SU->Latency > 1
848 && (HasVRegDef || MI->mayLoad())) {
849 SDep Dep(SU, SDep::Artificial);
850 Dep.setLatency(SU->Latency - 1);
851 ExitSU.addPred(Dep);
852 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000853
854 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000855 // Chain dependencies used to enforce memory order should have
856 // latency of 0 (except for true dependency of Store followed by
857 // aliased Load... we estimate that with a single cycle of latency
858 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000859 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
860 // after stack slots are lowered to actual addresses.
861 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
862 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000863 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000864 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000865 // Be conservative with these and add dependencies on all memory
866 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000867 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000868 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000869 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
870 I->second[i]->addPred(SDep(SU, SDep::Barrier));
871 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000872 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000873 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000874 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000875 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
876 SDep Dep(SU, SDep::Barrier);
877 Dep.setLatency(TrueMemOrderLatency);
878 I->second[i]->addPred(Dep);
879 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000880 }
David Goodwind2f9c042009-11-09 19:22:17 +0000881 // Add SU to the barrier chain.
882 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000883 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000884 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000885 // This is a barrier event that acts as a pivotal node in the DAG,
886 // so it is safe to clear list of exposed nodes.
Andrew Trick344fb642012-06-13 02:39:03 +0000887 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
888 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000889 RejectMemNodes.clear();
890 NonAliasMemDefs.clear();
891 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000892
893 // fall-through
894 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +0000895 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000896 if (AliasChain) {
897 unsigned ChainLatency = 0;
898 if (AliasChain->getInstr()->mayLoad())
899 ChainLatency = TrueMemOrderLatency;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000900 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000901 ChainLatency);
902 }
David Goodwind2f9c042009-11-09 19:22:17 +0000903 AliasChain = SU;
904 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000905 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000906 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000907 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +0000908 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
909 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
910 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes);
911 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000912 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000913 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
914 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000915 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000916 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000917 }
Andrew Trick344fb642012-06-13 02:39:03 +0000918 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
919 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000920 PendingLoads.clear();
921 AliasMemDefs.clear();
922 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000923 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +0000924 // Add dependence on barrier chain, if needed.
925 // There is no point to check aliasing on barrier event. Even if
926 // SU and barrier _could_ be reordered, they should not. In addition,
927 // we have lost all RejectMemNodes below barrier.
928 if (BarrierChain)
929 BarrierChain->addPred(SDep(SU, SDep::Barrier));
930
Benjamin Kramerfd510922013-06-29 18:41:17 +0000931 UnderlyingObjectsVector Objs;
Hal Finkel66859ae2012-12-10 18:49:16 +0000932 getUnderlyingObjectsForInstr(MI, MFI, Objs);
933
934 if (Objs.empty()) {
935 // Treat all other stores conservatively.
936 goto new_alias_chain;
937 }
938
939 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000940 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
941 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000942 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +0000943 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000944 if (ThisMayAlias)
945 MayAlias = true;
946
Dan Gohman3aab10b2008-12-04 01:35:46 +0000947 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000948 // Record the def in MemDefs, first adding a dep if there is
949 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000950 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000951 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000952 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000953 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000954 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000955 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
956 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
957 0, true);
958
959 // If we're not using AA, then we only need one store per object.
960 if (!AAForDep)
961 I->second.clear();
962 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000963 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000964 if (ThisMayAlias) {
965 if (!AAForDep)
966 AliasMemDefs[V].clear();
967 AliasMemDefs[V].push_back(SU);
968 } else {
969 if (!AAForDep)
970 NonAliasMemDefs[V].clear();
971 NonAliasMemDefs[V].push_back(SU);
972 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000973 }
974 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000975 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000976 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000977 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000978 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000979 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000980 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000981 addChainDependency(AAForDep, MFI, SU, J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000982 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000983 J->second.clear();
984 }
David Goodwin00822aa2009-11-02 17:06:28 +0000985 }
Hal Finkel66859ae2012-12-10 18:49:16 +0000986 if (MayAlias) {
987 // Add dependencies from all the PendingLoads, i.e. loads
988 // with no underlying object.
989 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000990 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +0000991 TrueMemOrderLatency);
992 // Add dependence on alias chain, if needed.
993 if (AliasChain)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000994 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +0000995 // But we also should check dependent instructions for the
996 // SU in question.
997 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
998 TrueMemOrderLatency);
999 }
Evan Cheng7f8e5632011-12-07 07:15:52 +00001000 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +00001001 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +00001002 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001003 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001004 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001005 UnderlyingObjectsVector Objs;
Hal Finkel66859ae2012-12-10 18:49:16 +00001006 getUnderlyingObjectsForInstr(MI, MFI, Objs);
1007
1008 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001009 // A load with no underlying object. Depend on all
1010 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001011 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001012 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001013 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
1014 addChainDependency(AAForDep, MFI, SU, I->second[i],
1015 RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001016
David Goodwind2f9c042009-11-09 19:22:17 +00001017 PendingLoads.push_back(SU);
1018 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001019 } else {
1020 MayAlias = false;
1021 }
1022
Benjamin Kramerfd510922013-06-29 18:41:17 +00001023 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001024 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001025 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001026 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001027
1028 if (ThisMayAlias)
1029 MayAlias = true;
1030
1031 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001032 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001033 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001034 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001035 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1036 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001037 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
1038 addChainDependency(AAForDep, MFI, SU, I->second[i],
1039 RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001040 if (ThisMayAlias)
1041 AliasMemUses[V].push_back(SU);
1042 else
1043 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001044 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001045 if (MayAlias)
Andrew Trick344fb642012-06-13 02:39:03 +00001046 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001047 // Add dependencies on alias and barrier chains, if needed.
1048 if (MayAlias && AliasChain)
Hal Finkelb350ffd2013-08-29 03:25:05 +00001049 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
David Goodwind2f9c042009-11-09 19:22:17 +00001050 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001051 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001052 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001053 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001054 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001055 if (DbgMI)
1056 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001057
Andrew Trickd675a4c2012-02-23 01:52:38 +00001058 Defs.clear();
1059 Uses.clear();
Andrew Trick59ac4fb2012-01-14 02:17:18 +00001060 VRegDefs.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001061 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001062}
1063
Andrew Trick6b104f82013-12-28 21:56:55 +00001064/// \brief Initialize register live-range state for updating kills.
1065void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1066 // Start with no live registers.
1067 LiveRegs.reset();
1068
1069 // Examine the live-in regs of all successors.
1070 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1071 SE = BB->succ_end(); SI != SE; ++SI) {
1072 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
1073 E = (*SI)->livein_end(); I != E; ++I) {
1074 unsigned Reg = *I;
1075 // Repeat, for reg and all subregs.
1076 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1077 SubRegs.isValid(); ++SubRegs)
1078 LiveRegs.set(*SubRegs);
1079 }
1080 }
1081}
1082
1083bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1084 // Setting kill flag...
1085 if (!MO.isKill()) {
1086 MO.setIsKill(true);
1087 return false;
1088 }
1089
1090 // If MO itself is live, clear the kill flag...
1091 if (LiveRegs.test(MO.getReg())) {
1092 MO.setIsKill(false);
1093 return false;
1094 }
1095
1096 // If any subreg of MO is live, then create an imp-def for that
1097 // subreg and keep MO marked as killed.
1098 MO.setIsKill(false);
1099 bool AllDead = true;
1100 const unsigned SuperReg = MO.getReg();
1101 MachineInstrBuilder MIB(MF, MI);
1102 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1103 if (LiveRegs.test(*SubRegs)) {
1104 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1105 AllDead = false;
1106 }
1107 }
1108
1109 if(AllDead)
1110 MO.setIsKill(true);
1111 return false;
1112}
1113
1114// FIXME: Reuse the LivePhysRegs utility for this.
1115void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1116 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1117
1118 LiveRegs.resize(TRI->getNumRegs());
1119 BitVector killedRegs(TRI->getNumRegs());
1120
1121 startBlockForKills(MBB);
1122
1123 // Examine block from end to start...
1124 unsigned Count = MBB->size();
1125 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1126 I != E; --Count) {
1127 MachineInstr *MI = --I;
1128 if (MI->isDebugValue())
1129 continue;
1130
1131 // Update liveness. Registers that are defed but not used in this
1132 // instruction are now dead. Mark register and all subregs as they
1133 // are completely defined.
1134 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1135 MachineOperand &MO = MI->getOperand(i);
1136 if (MO.isRegMask())
1137 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1138 if (!MO.isReg()) continue;
1139 unsigned Reg = MO.getReg();
1140 if (Reg == 0) continue;
1141 if (!MO.isDef()) continue;
1142 // Ignore two-addr defs.
1143 if (MI->isRegTiedToUseOperand(i)) continue;
1144
1145 // Repeat for reg and all subregs.
1146 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1147 SubRegs.isValid(); ++SubRegs)
1148 LiveRegs.reset(*SubRegs);
1149 }
1150
1151 // Examine all used registers and set/clear kill flag. When a
1152 // register is used multiple times we only set the kill flag on
1153 // the first use. Don't set kill flags on undef operands.
1154 killedRegs.reset();
1155 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1156 MachineOperand &MO = MI->getOperand(i);
1157 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1158 unsigned Reg = MO.getReg();
1159 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1160
1161 bool kill = false;
1162 if (!killedRegs.test(Reg)) {
1163 kill = true;
1164 // A register is not killed if any subregs are live...
1165 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1166 if (LiveRegs.test(*SubRegs)) {
1167 kill = false;
1168 break;
1169 }
1170 }
1171
1172 // If subreg is not live, then register is killed if it became
1173 // live in this instruction
1174 if (kill)
1175 kill = !LiveRegs.test(Reg);
1176 }
1177
1178 if (MO.isKill() != kill) {
1179 DEBUG(dbgs() << "Fixing " << MO << " in ");
1180 // Warning: toggleKillFlag may invalidate MO.
1181 toggleKillFlag(MI, MO);
1182 DEBUG(MI->dump());
1183 }
1184
1185 killedRegs.set(Reg);
1186 }
1187
1188 // Mark any used register (that is not using undef) and subregs as
1189 // now live...
1190 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1191 MachineOperand &MO = MI->getOperand(i);
1192 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1193 unsigned Reg = MO.getReg();
1194 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1195
1196 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1197 SubRegs.isValid(); ++SubRegs)
1198 LiveRegs.set(*SubRegs);
1199 }
1200 }
1201}
1202
Dan Gohman60cb69e2008-11-19 23:18:57 +00001203void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001204#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001205 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001206#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001207}
1208
1209std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001210 std::string s;
1211 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001212 if (SU == &EntrySU)
1213 oss << "<entry>";
1214 else if (SU == &ExitSU)
1215 oss << "<exit>";
1216 else
Andrew Trickb36388a2013-01-25 07:45:25 +00001217 SU->getInstr()->print(oss, &TM, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001218 return oss.str();
1219}
1220
Andrew Trick1b2324d2012-03-07 00:18:22 +00001221/// Return the basic block label. It is not necessarilly unique because a block
1222/// contains multiple scheduling regions. But it is fine for visualization.
1223std::string ScheduleDAGInstrs::getDAGName() const {
1224 return "dag." + BB->getFullName();
1225}
Andrew Trick90f711d2012-10-15 18:02:27 +00001226
Andrew Trick48d392e2012-11-28 05:13:28 +00001227//===----------------------------------------------------------------------===//
1228// SchedDFSResult Implementation
1229//===----------------------------------------------------------------------===//
1230
1231namespace llvm {
1232/// \brief Internal state used to compute SchedDFSResult.
1233class SchedDFSImpl {
1234 SchedDFSResult &R;
1235
1236 /// Join DAG nodes into equivalence classes by their subtree.
1237 IntEqClasses SubtreeClasses;
1238 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1239 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1240
Andrew Trickffc80972013-01-25 06:52:27 +00001241 struct RootData {
1242 unsigned NodeID;
1243 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1244 unsigned SubInstrCount; // Instr count in this tree only, not children.
1245
1246 RootData(unsigned id): NodeID(id),
1247 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1248 SubInstrCount(0) {}
1249
1250 unsigned getSparseSetIndex() const { return NodeID; }
1251 };
1252
1253 SparseSet<RootData> RootSet;
1254
Andrew Trick48d392e2012-11-28 05:13:28 +00001255public:
Andrew Trickffc80972013-01-25 06:52:27 +00001256 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1257 RootSet.setUniverse(R.DFSNodeData.size());
1258 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001259
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001260 /// Return true if this node been visited by the DFS traversal.
1261 ///
1262 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1263 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001264 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001265 return R.DFSNodeData[SU->NodeNum].SubtreeID
1266 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001267 }
1268
1269 /// Initialize this node's instruction count. We don't need to flag the node
1270 /// visited until visitPostorder because the DAG cannot have cycles.
1271 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001272 R.DFSNodeData[SU->NodeNum].InstrCount =
1273 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001274 }
1275
1276 /// Called once for each node after all predecessors are visited. Revisit this
1277 /// node's predecessors and potentially join them now that we know the ILP of
1278 /// the other predecessors.
1279 void visitPostorderNode(const SUnit *SU) {
1280 // Mark this node as the root of a subtree. It may be joined with its
1281 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001282 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1283 RootData RData(SU->NodeNum);
1284 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001285
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001286 // If any predecessors are still in their own subtree, they either cannot be
1287 // joined or are large enough to remain separate. If this parent node's
1288 // total instruction count is not greater than a child subtree by at least
1289 // the subtree limit, then try to join it now since splitting subtrees is
1290 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001291 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001292 for (SUnit::const_pred_iterator
1293 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1294 if (PI->getKind() != SDep::Data)
1295 continue;
1296 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001297 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001298 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001299
1300 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001301 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1302 // If the predecessor's parent is invalid, this is a tree edge and the
1303 // current node is the parent.
1304 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1305 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1306 }
1307 else if (RootSet.count(PredNum)) {
1308 // The predecessor is not a root, but is still in the root set. This
1309 // must be the new parent that it was just joined to. Note that
1310 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1311 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001312 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1313 RootSet.erase(PredNum);
1314 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001315 }
Andrew Trickffc80972013-01-25 06:52:27 +00001316 RootSet[SU->NodeNum] = RData;
1317 }
1318
1319 /// Called once for each tree edge after calling visitPostOrderNode on the
1320 /// predecessor. Increment the parent node's instruction count and
1321 /// preemptively join this subtree to its parent's if it is small enough.
1322 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1323 R.DFSNodeData[Succ->NodeNum].InstrCount
1324 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1325 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001326 }
1327
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001328 /// Add a connection for cross edges.
1329 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001330 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1331 }
1332
1333 /// Set each node's subtree ID to the representative ID and record connections
1334 /// between trees.
1335 void finalize() {
1336 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001337 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1338 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1339 && "number of roots should match trees");
1340 for (SparseSet<RootData>::const_iterator
1341 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1342 unsigned TreeID = SubtreeClasses[RI->NodeID];
1343 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1344 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1345 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001346 // Note that SubInstrCount may be greater than InstrCount if we joined
1347 // subtrees across a cross edge. InstrCount will be attributed to the
1348 // original parent, while SubInstrCount will be attributed to the joined
1349 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001350 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001351 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1352 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1353 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001354 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1355 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001356 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001357 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001358 }
1359 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1360 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1361 I != E; ++I) {
1362 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1363 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1364 if (PredTree == SuccTree)
1365 continue;
1366 unsigned Depth = I->first->getDepth();
1367 addConnection(PredTree, SuccTree, Depth);
1368 addConnection(SuccTree, PredTree, Depth);
1369 }
1370 }
1371
1372protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001373 /// Join the predecessor subtree with the successor that is its DFS
1374 /// parent. Apply some heuristics before joining.
1375 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1376 bool CheckLimit = true) {
1377 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1378
1379 // Check if the predecessor is already joined.
1380 const SUnit *PredSU = PredDep.getSUnit();
1381 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001382 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001383 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001384
1385 // Four is the magic number of successors before a node is considered a
1386 // pinch point.
1387 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001388 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1389 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1390 if (SI->getKind() == SDep::Data) {
1391 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001392 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001393 }
1394 }
Andrew Trickffc80972013-01-25 06:52:27 +00001395 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001396 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001397 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001398 SubtreeClasses.join(Succ->NodeNum, PredNum);
1399 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001400 }
1401
Andrew Trick48d392e2012-11-28 05:13:28 +00001402 /// Called by finalize() to record a connection between trees.
1403 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1404 if (!Depth)
1405 return;
1406
Andrew Trickffc80972013-01-25 06:52:27 +00001407 do {
1408 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1409 R.SubtreeConnections[FromTree];
1410 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1411 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1412 if (I->TreeID == ToTree) {
1413 I->Level = std::max(I->Level, Depth);
1414 return;
1415 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001416 }
Andrew Trickffc80972013-01-25 06:52:27 +00001417 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1418 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1419 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001420 }
1421};
1422} // namespace llvm
1423
Andrew Trick90f711d2012-10-15 18:02:27 +00001424namespace {
1425/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1426class SchedDAGReverseDFS {
1427 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1428public:
1429 bool isComplete() const { return DFSStack.empty(); }
1430
1431 void follow(const SUnit *SU) {
1432 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1433 }
1434 void advance() { ++DFSStack.back().second; }
1435
Andrew Trick48d392e2012-11-28 05:13:28 +00001436 const SDep *backtrack() {
1437 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001438 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001439 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001440
1441 const SUnit *getCurr() const { return DFSStack.back().first; }
1442
1443 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1444
1445 SUnit::const_pred_iterator getPredEnd() const {
1446 return getCurr()->Preds.end();
1447 }
1448};
1449} // anonymous
1450
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001451static bool hasDataSucc(const SUnit *SU) {
1452 for (SUnit::const_succ_iterator
1453 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001454 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001455 return true;
1456 }
1457 return false;
1458}
1459
Andrew Trick90f711d2012-10-15 18:02:27 +00001460/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1461/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001462void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001463 if (!IsBottomUp)
1464 llvm_unreachable("Top-down ILP metric is unimplemnted");
1465
Andrew Trick48d392e2012-11-28 05:13:28 +00001466 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001467 for (ArrayRef<SUnit>::const_iterator
1468 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1469 const SUnit *SU = &*SI;
1470 if (Impl.isVisited(SU) || hasDataSucc(SU))
1471 continue;
1472
Andrew Trick48d392e2012-11-28 05:13:28 +00001473 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001474 Impl.visitPreorder(SU);
1475 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001476 for (;;) {
1477 // Traverse the leftmost path as far as possible.
1478 while (DFS.getPred() != DFS.getPredEnd()) {
1479 const SDep &PredDep = *DFS.getPred();
1480 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001481 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001482 if (PredDep.getKind() != SDep::Data
1483 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001484 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001485 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001486 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001487 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001488 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001489 continue;
1490 }
1491 Impl.visitPreorder(PredDep.getSUnit());
1492 DFS.follow(PredDep.getSUnit());
1493 }
1494 // Visit the top of the stack in postorder and backtrack.
1495 const SUnit *Child = DFS.getCurr();
1496 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001497 Impl.visitPostorderNode(Child);
1498 if (PredDep)
1499 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001500 if (DFS.isComplete())
1501 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001502 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001503 }
1504 Impl.finalize();
1505}
1506
1507/// The root of the given SubtreeID was just scheduled. For all subtrees
1508/// connected to this tree, record the depth of the connection so that the
1509/// nearest connected subtrees can be prioritized.
1510void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1511 for (SmallVectorImpl<Connection>::const_iterator
1512 I = SubtreeConnections[SubtreeID].begin(),
1513 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1514 SubtreeConnectLevels[I->TreeID] =
1515 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1516 DEBUG(dbgs() << " Tree: " << I->TreeID
1517 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001518 }
1519}
1520
Alp Tokerd8d510a2014-07-01 21:19:13 +00001521LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001522void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001523 OS << InstrCount << " / " << Length << " = ";
1524 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001525 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001526 else
1527 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001528}
1529
Alp Tokerd8d510a2014-07-01 21:19:13 +00001530LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001531void ILPValue::dump() const {
1532 dbgs() << *this << '\n';
1533}
1534
1535namespace llvm {
1536
Alp Tokerd8d510a2014-07-01 21:19:13 +00001537LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001538raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1539 Val.print(OS);
1540 return OS;
1541}
1542
1543} // namespace llvm