blob: c9c9a47a795aa9f5f8ec3035e97ae07e44f381a6 [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"
Matthias Braun97d0ffb2015-12-04 01:51:19 +000016#include "llvm/ADT/IntEqClasses.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#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"
Matthias Braund4f64092016-01-20 00:23:32 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000022#include "llvm/CodeGen/MachineFunctionPass.h"
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Andrew Trick6b104f82013-12-28 21:56:55 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman48b185d2009-09-25 20:36:54 +000025#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman3aab10b2008-12-04 01:35:46 +000027#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trick88517f62012-06-06 19:47:35 +000028#include "llvm/CodeGen/RegisterPressure.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000029#include "llvm/CodeGen/ScheduleDFS.h"
Jonas Paulssonac29f012016-02-03 17:52:29 +000030#include "llvm/IR/Function.h"
31#include "llvm/IR/Type.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/Operator.h"
Andrew Trickda01ba32012-05-15 18:59:41 +000033#include "llvm/Support/CommandLine.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000034#include "llvm/Support/Debug.h"
Andrew Trick90f711d2012-10-15 18:02:27 +000035#include "llvm/Support/Format.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000036#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Target/TargetInstrInfo.h"
38#include "llvm/Target/TargetMachine.h"
39#include "llvm/Target/TargetRegisterInfo.h"
40#include "llvm/Target/TargetSubtargetInfo.h"
Andrew Trickc01b0042013-08-23 17:48:43 +000041#include <queue>
42
Dan Gohman60cb69e2008-11-19 23:18:57 +000043using namespace llvm;
44
Chandler Carruth1b9dde02014-04-22 02:02:50 +000045#define DEBUG_TYPE "misched"
46
Andrew Trickda01ba32012-05-15 18:59:41 +000047static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
48 cl::ZeroOrMore, cl::init(false),
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000049 cl::desc("Enable use of AA during MI DAG construction"));
Andrew Trickda01ba32012-05-15 18:59:41 +000050
Hal Finkeldbebb522014-01-25 19:24:54 +000051static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden,
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000052 cl::init(true), cl::desc("Enable use of TBAA during MI DAG construction"));
Hal Finkeldbebb522014-01-25 19:24:54 +000053
Jonas Paulssonac29f012016-02-03 17:52:29 +000054// Note: the two options below might be used in tuning compile time vs
55// output quality. Setting HugeRegion so large that it will never be
56// reached means best-effort, but may be slow.
57
58// When Stores and Loads maps (or NonAliasStores and NonAliasLoads)
59// together hold this many SUs, a reduction of maps will be done.
60static cl::opt<unsigned> HugeRegion("dag-maps-huge-region", cl::Hidden,
61 cl::init(1000), cl::desc("The limit to use while constructing the DAG "
62 "prior to scheduling, at which point a trade-off "
63 "is made to avoid excessive compile time."));
64
65static cl::opt<unsigned> ReductionSize("dag-maps-reduction-size", cl::Hidden,
66 cl::desc("A huge scheduling region will have maps reduced by this many "
67 "nodes at a time. Defaults to HugeRegion / 2."));
68
69static void dumpSUList(ScheduleDAGInstrs::SUList &L) {
70#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
71 dbgs() << "{ ";
72 for (auto *su : L) {
73 dbgs() << "SU(" << su->NodeNum << ")";
74 if (su != L.back())
75 dbgs() << ", ";
76 }
77 dbgs() << "}\n";
78#endif
79}
80
Dan Gohman619ef482009-01-15 19:20:50 +000081ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Alexey Samsonov8968e6d2014-08-20 19:36:05 +000082 const MachineLoopInfo *mli,
Matthias Braun93563e72015-11-03 01:53:29 +000083 bool RemoveKillFlags)
Matthias Braunb17e8b12015-12-04 19:54:24 +000084 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()),
Matthias Braun93563e72015-11-03 01:53:29 +000085 RemoveKillFlags(RemoveKillFlags), CanHandleTerminators(false),
Jonas Paulssonac29f012016-02-03 17:52:29 +000086 TrackLaneMasks(false), AAForDep(nullptr), BarrierChain(nullptr),
87 UnknownValue(UndefValue::get(
88 Type::getVoidTy(mf.getFunction()->getContext()))),
89 FirstDbgValue(nullptr) {
Devang Patele5feef02011-06-02 20:07:12 +000090 DbgValues.clear();
Andrew Trick9b635132012-09-18 18:20:00 +000091
Eric Christopher2c635492015-01-27 07:54:39 +000092 const TargetSubtargetInfo &ST = mf.getSubtarget();
Pete Cooper11759452014-09-02 17:43:54 +000093 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000094}
Dan Gohman60cb69e2008-11-19 23:18:57 +000095
Dan Gohman1ee0d412009-01-30 02:49:14 +000096/// getUnderlyingObjectFromInt - This is the function that does the work of
97/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
98static const Value *getUnderlyingObjectFromInt(const Value *V) {
99 do {
Dan Gohman58b0e712009-07-17 20:58:59 +0000100 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000101 // If we find a ptrtoint, we can transfer control back to the
102 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +0000103 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +0000104 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +0000105 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +0000106 // likely that the other operand will lead us to the base
107 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +0000108 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +0000109 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +0000110 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +0000111 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +0000112 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +0000113 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
114 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +0000115 return V;
116 V = U->getOperand(0);
117 } else {
118 return V;
119 }
Duncan Sands19d0b472010-02-16 11:11:14 +0000120 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +0000121 } while (1);
122}
123
Hal Finkel66859ae2012-12-10 18:49:16 +0000124/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +0000125/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +0000126static void getUnderlyingObjects(const Value *V,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000127 SmallVectorImpl<Value *> &Objects,
128 const DataLayout &DL) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000129 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +0000130 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000131 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000132 V = Working.pop_back_val();
133
134 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000135 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
Hal Finkel66859ae2012-12-10 18:49:16 +0000136
Craig Toppere1c1d362013-07-03 05:11:49 +0000137 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000138 I != IE; ++I) {
139 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000140 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000141 continue;
142 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
143 const Value *O =
144 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
145 if (O->getType()->isPointerTy()) {
146 Working.push_back(O);
147 continue;
148 }
149 }
150 Objects.push_back(const_cast<Value *>(V));
151 }
152 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000153}
154
Hal Finkel66859ae2012-12-10 18:49:16 +0000155/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000156/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000157/// object, return the Value for that object.
158static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000159 const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000160 UnderlyingObjectsVector &Objects,
161 const DataLayout &DL) {
Geoff Berryc0739d82016-04-12 15:50:19 +0000162 for (auto *MMO : MI->memoperands()) {
163 if (MMO->isVolatile()) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000164 Objects.clear();
165 return;
166 }
167
Geoff Berryc0739d82016-04-12 15:50:19 +0000168 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) {
169 // Function that contain tail calls don't have unique PseudoSourceValue
170 // objects. Two PseudoSourceValues might refer to the same or overlapping
171 // locations. The client code calling this function assumes this is not the
172 // case. So return a conservative answer of no known object.
173 if (MFI->hasTailCall()) {
174 Objects.clear();
175 return;
176 }
177
178 // For now, ignore PseudoSourceValues which may alias LLVM IR values
179 // because the code that uses this function has no way to cope with
180 // such aliases.
181 if (PSV->isAliased(MFI)) {
182 Objects.clear();
183 return;
184 }
185
186 bool MayAlias = PSV->mayAlias(MFI);
187 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
188 } else if (const Value *V = MMO->getValue()) {
189 SmallVector<Value *, 4> Objs;
190 getUnderlyingObjects(V, Objs, DL);
191
192 for (Value *V : Objs) {
193 if (!isIdentifiedObject(V)) {
194 Objects.clear();
195 return;
196 }
197
198 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
199 }
200 } else {
201 Objects.clear();
202 return;
203 }
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000204 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000205}
206
Andrew Trick7405c6d2012-04-20 20:05:21 +0000207void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
208 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000209}
210
Andrew Trick52226d42012-03-07 23:00:49 +0000211void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000212 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000213 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000214}
215
Andrew Trick60cf03e2012-03-07 05:21:52 +0000216/// Initialize the DAG and common scheduler state for the current scheduling
217/// region. This does not actually create the DAG, only clears it. The
218/// scheduling driver may call BuildSchedGraph multiple times per scheduling
219/// region.
220void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
221 MachineBasicBlock::iterator begin,
222 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000223 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000224 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000225 RegionBegin = begin;
226 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000227 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000228}
229
230/// Close the current scheduling region. Don't clear any state in case the
231/// driver wants to refer to the previous scheduling region.
232void ScheduleDAGInstrs::exitRegion() {
233 // Nothing to do.
234}
235
Andrew Trick52226d42012-03-07 23:00:49 +0000236/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000237/// list of instructions being scheduled to scheduling barrier by adding
238/// the exit SU to the register defs and use list. This is because we want to
239/// make sure instructions which define registers that are either used by
240/// the terminator or are live-out are properly scheduled. This is
241/// especially important when the definition latency of the return value(s)
242/// are too high to be hidden by the branch or when the liveout registers
243/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000244void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000245 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000246 ExitSU.setInstr(ExitMI);
247 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000248 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000249 if (ExitMI && AllDepKnown) {
250 // If it's a call or a barrier, add dependencies on the defs and uses of
251 // instruction.
252 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
253 const MachineOperand &MO = ExitMI->getOperand(i);
254 if (!MO.isReg() || MO.isDef()) continue;
255 unsigned Reg = MO.getReg();
256 if (Reg == 0) continue;
257
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000258 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000259 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Matthias Braun93563e72015-11-03 01:53:29 +0000260 else if (MO.readsReg()) // ignore undef operands
261 addVRegUseDeps(&ExitSU, i);
Evan Cheng15459b62010-10-23 02:10:46 +0000262 }
263 } else {
264 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000265 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000266 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000267 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
268 SE = BB->succ_end(); SI != SE; ++SI)
Matthias Braund9da1622015-09-09 18:08:03 +0000269 for (const auto &LI : (*SI)->liveins()) {
270 if (!Uses.contains(LI.PhysReg))
271 Uses.insert(PhysRegSUOper(&ExitSU, -1, LI.PhysReg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000272 }
Evan Cheng15459b62010-10-23 02:10:46 +0000273 }
274}
275
Andrew Trickd675a4c2012-02-23 01:52:38 +0000276/// MO is an operand of SU's instruction that defines a physical register. Add
277/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000278void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
279 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000280 assert(MO.isDef() && "expect physreg def");
281
282 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000283 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000284
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000285 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
286 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000287 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000288 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000289 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
290 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000291 if (UseSU == SU)
292 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000293
Andrew Trick07dced62012-10-08 18:54:00 +0000294 // Adjust the dependence latency using operand def/use information,
295 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000296 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000297 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000298 SDep Dep;
299 if (UseOp < 0)
300 Dep = SDep(SU, SDep::Artificial);
301 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000302 // Set the hasPhysRegDefs only for physreg defs that have a use within
303 // the scheduling region.
304 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000305 Dep = SDep(SU, SDep::Data, *Alias);
306 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000307 }
308 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000309 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
310 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000311
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000312 ST.adjustSchedDependency(SU, UseSU, Dep);
313 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000314 }
315 }
316}
317
Andrew Trickdbee9d82012-01-14 02:17:15 +0000318/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
319/// this SUnit to following instructions in the same scheduling region that
320/// depend the physical register referenced at OperIdx.
321void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000322 MachineInstr *MI = SU->getInstr();
323 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000324
325 // Optionally add output and anti dependencies. For anti
326 // dependencies we use a latency of 0 because for a multi-issue
327 // target we want to allow the defining instruction to issue
328 // in the same cycle as the using instruction.
329 // TODO: Using a latency of 1 here for output dependencies assumes
330 // there's no cost for reusing registers.
331 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000332 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
333 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000334 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000335 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000336 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
337 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000338 if (DefSU == &ExitSU)
339 continue;
340 if (DefSU != SU &&
341 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000342 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000343 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000344 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000345 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000346 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000347 Dep.setLatency(
348 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000349 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000350 }
351 }
352 }
353 }
354
Andrew Trickd675a4c2012-02-23 01:52:38 +0000355 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000356 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000357 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
358 // retrieve the existing SUnits list for this register's uses.
359 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000360 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000361 if (RemoveKillFlags)
362 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000363 }
364 else {
Andrew Trickae535612012-08-23 00:39:43 +0000365 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000366 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000367
Andrew Trickd675a4c2012-02-23 01:52:38 +0000368 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000369 if (Uses.contains(Reg))
370 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000371
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000372 if (!MO.isDead()) {
373 Defs.eraseAll(Reg);
374 } else if (SU->isCall) {
375 // Calls will not be reordered because of chain dependencies (see
376 // below). Since call operands are dead, calls may continue to be added
377 // to the DefList making dependence checking quadratic in the size of
378 // the block. Instead, we leave only one call at the back of the
379 // DefList.
380 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
381 Reg2SUnitsMap::iterator B = P.first;
382 Reg2SUnitsMap::iterator I = P.second;
383 for (bool isBegin = I == B; !isBegin; /* empty */) {
384 isBegin = (--I) == B;
385 if (!I->SU->isCall)
386 break;
387 I = Defs.erase(I);
388 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000389 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000390
Andrew Trickd675a4c2012-02-23 01:52:38 +0000391 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000392 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000393 }
394}
395
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000396LaneBitmask ScheduleDAGInstrs::getLaneMaskForMO(const MachineOperand &MO) const
397{
398 unsigned Reg = MO.getReg();
399 // No point in tracking lanemasks if we don't have interesting subregisters.
400 const TargetRegisterClass &RC = *MRI.getRegClass(Reg);
401 if (!RC.HasDisjunctSubRegs)
402 return ~0u;
403
404 unsigned SubReg = MO.getSubReg();
405 if (SubReg == 0)
406 return RC.getLaneMask();
407 return TRI->getSubRegIndexLaneMask(SubReg);
408}
409
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000410/// addVRegDefDeps - Add register output and data dependencies from this SUnit
411/// to instructions that occur later in the same scheduling region if they read
412/// from or write to the virtual register defined at OperIdx.
413///
414/// TODO: Hoist loop induction variable increments. This has to be
415/// reevaluated. Generally, IV scheduling should be done before coalescing.
416void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000417 MachineInstr *MI = SU->getInstr();
418 MachineOperand &MO = MI->getOperand(OperIdx);
419 unsigned Reg = MO.getReg();
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000420
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000421 LaneBitmask DefLaneMask;
422 LaneBitmask KillLaneMask;
423 if (TrackLaneMasks) {
424 bool IsKill = MO.getSubReg() == 0 || MO.isUndef();
425 DefLaneMask = getLaneMaskForMO(MO);
426 // If we have a <read-undef> flag, none of the lane values comes from an
427 // earlier instruction.
428 KillLaneMask = IsKill ? ~0u : DefLaneMask;
429
430 // Clear undef flag, we'll re-add it later once we know which subregister
431 // Def is first.
432 MO.setIsUndef(false);
433 } else {
434 DefLaneMask = ~0u;
435 KillLaneMask = ~0u;
436 }
437
438 if (MO.isDead()) {
439 assert(CurrentVRegUses.find(Reg) == CurrentVRegUses.end() &&
440 "Dead defs should have no uses");
441 } else {
442 // Add data dependence to all uses we found so far.
443 const TargetSubtargetInfo &ST = MF.getSubtarget();
444 for (VReg2SUnitOperIdxMultiMap::iterator I = CurrentVRegUses.find(Reg),
445 E = CurrentVRegUses.end(); I != E; /*empty*/) {
446 LaneBitmask LaneMask = I->LaneMask;
447 // Ignore uses of other lanes.
448 if ((LaneMask & KillLaneMask) == 0) {
449 ++I;
450 continue;
451 }
452
453 if ((LaneMask & DefLaneMask) != 0) {
454 SUnit *UseSU = I->SU;
455 MachineInstr *Use = UseSU->getInstr();
456 SDep Dep(SU, SDep::Data, Reg);
457 Dep.setLatency(SchedModel.computeOperandLatency(MI, OperIdx, Use,
458 I->OperandIndex));
459 ST.adjustSchedDependency(SU, UseSU, Dep);
460 UseSU->addPred(Dep);
461 }
462
463 LaneMask &= ~KillLaneMask;
464 // If we found a Def for all lanes of this use, remove it from the list.
465 if (LaneMask != 0) {
466 I->LaneMask = LaneMask;
467 ++I;
468 } else
469 I = CurrentVRegUses.erase(I);
470 }
471 }
472
473 // Shortcut: Singly defined vregs do not have output/anti dependencies.
Andrew Trick79795892012-07-30 23:48:17 +0000474 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000475 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000476
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000477 // Add output dependence to the next nearest defs of this vreg.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000478 //
479 // Unless this definition is dead, the output dependence should be
480 // transitively redundant with antidependencies from this definition's
481 // uses. We're conservative for now until we have a way to guarantee the uses
482 // are not eliminated sometime during scheduling. The output dependence edge
483 // is also useful if output latency exceeds def-use latency.
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000484 LaneBitmask LaneMask = DefLaneMask;
485 for (VReg2SUnit &V2SU : make_range(CurrentVRegDefs.find(Reg),
486 CurrentVRegDefs.end())) {
487 // Ignore defs for other lanes.
488 if ((V2SU.LaneMask & LaneMask) == 0)
489 continue;
490 // Add an output dependence.
491 SUnit *DefSU = V2SU.SU;
492 // Ignore additional defs of the same lanes in one instruction. This can
493 // happen because lanemasks are shared for targets with too many
494 // subregisters. We also use some representration tricks/hacks where we
495 // add super-register defs/uses, to imply that although we only access parts
496 // of the reg we care about the full one.
497 if (DefSU == SU)
498 continue;
499 SDep Dep(SU, SDep::Output, Reg);
500 Dep.setLatency(
501 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
502 DefSU->addPred(Dep);
503
504 // Update current definition. This can get tricky if the def was about a
505 // bigger lanemask before. We then have to shrink it and create a new
506 // VReg2SUnit for the non-overlapping part.
507 LaneBitmask OverlapMask = V2SU.LaneMask & LaneMask;
508 LaneBitmask NonOverlapMask = V2SU.LaneMask & ~LaneMask;
509 if (NonOverlapMask != 0)
510 CurrentVRegDefs.insert(VReg2SUnit(Reg, NonOverlapMask, V2SU.SU));
511 V2SU.SU = SU;
512 V2SU.LaneMask = OverlapMask;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000513 }
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000514 // If there was no CurrentVRegDefs entry for some lanes yet, create one.
515 if (LaneMask != 0)
516 CurrentVRegDefs.insert(VReg2SUnit(Reg, LaneMask, SU));
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000517}
518
Andrew Trick46cc9a42012-02-22 06:08:11 +0000519/// addVRegUseDeps - Add a register data dependency if the instruction that
520/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
521/// register antidependency from this SUnit to instructions that occur later in
522/// the same scheduling region if they write the virtual register.
523///
524/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000525void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000526 const MachineInstr *MI = SU->getInstr();
527 const MachineOperand &MO = MI->getOperand(OperIdx);
528 unsigned Reg = MO.getReg();
Andrew Trick46cc9a42012-02-22 06:08:11 +0000529
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000530 // Remember the use. Data dependencies will be added when we find the def.
531 LaneBitmask LaneMask = TrackLaneMasks ? getLaneMaskForMO(MO) : ~0u;
532 CurrentVRegUses.insert(VReg2SUnitOperIdx(Reg, LaneMask, OperIdx, SU));
533
534 // Add antidependences to the following defs of the vreg.
535 for (VReg2SUnit &V2SU : make_range(CurrentVRegDefs.find(Reg),
536 CurrentVRegDefs.end())) {
537 // Ignore defs for unrelated lanes.
538 LaneBitmask PrevDefLaneMask = V2SU.LaneMask;
539 if ((PrevDefLaneMask & LaneMask) == 0)
540 continue;
541 if (V2SU.SU == SU)
542 continue;
543
544 V2SU.SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000545 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000546}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000547
Andrew Trickda01ba32012-05-15 18:59:41 +0000548/// Return true if MI is an instruction we are unable to reason about
549/// (like a call or something with unmodeled side effects).
550static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
Rafael Espindola84921b92015-10-24 23:11:13 +0000551 return MI->isCall() || MI->hasUnmodeledSideEffects() ||
Chad Rosierb46d0f92016-01-26 19:33:57 +0000552 (MI->hasOrderedMemoryRef() && !MI->isInvariantLoad(AA));
Andrew Trickda01ba32012-05-15 18:59:41 +0000553}
554
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000555/// This returns true if the two MIs need a chain edge between them.
Jonas Paulssonac29f012016-02-03 17:52:29 +0000556/// This is called on normal stores and loads.
Andrew Trickda01ba32012-05-15 18:59:41 +0000557static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000558 const DataLayout &DL, MachineInstr *MIa,
Andrew Trickda01ba32012-05-15 18:59:41 +0000559 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000560 const MachineFunction *MF = MIa->getParent()->getParent();
561 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
562
Jonas Paulssonac29f012016-02-03 17:52:29 +0000563 assert ((MIa->mayStore() || MIb->mayStore()) &&
564 "Dependency checked between two loads");
565
Jonas Paulsson8c738632016-01-29 17:22:43 +0000566 // Let the target decide if memory accesses cannot possibly overlap.
Jonas Paulssonac29f012016-02-03 17:52:29 +0000567 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
568 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000569
Andrew Trickda01ba32012-05-15 18:59:41 +0000570 // To this point analysis is generic. From here on we do need AA.
571 if (!AA)
572 return true;
573
Jonas Paulsson98963fe2016-02-15 16:43:15 +0000574 // FIXME: Need to handle multiple memory operands to support all targets.
575 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
576 return true;
577
Andrew Trickda01ba32012-05-15 18:59:41 +0000578 MachineMemOperand *MMOa = *MIa->memoperands_begin();
579 MachineMemOperand *MMOb = *MIb->memoperands_begin();
580
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000581 if (!MMOa->getValue() || !MMOb->getValue())
582 return true;
583
Andrew Trickda01ba32012-05-15 18:59:41 +0000584 // The following interface to AA is fashioned after DAGCombiner::isAlias
585 // and operates with MachineMemOperand offset with some important
586 // assumptions:
587 // - LLVM fundamentally assumes flat address spaces.
588 // - MachineOperand offset can *only* result from legalization and
589 // cannot affect queries other than the trivial case of overlap
590 // checking.
591 // - These offsets never wrap and never step outside
592 // of allocated objects.
593 // - There should never be any negative offsets here.
594 //
595 // FIXME: Modify API to hide this math from "user"
596 // FIXME: Even before we go to AA we can reason locally about some
597 // memory objects. It can save compile time, and possibly catch some
598 // corner cases not currently covered.
599
600 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
601 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
602
603 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
604 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
605 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
606
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000607 AliasResult AAResult =
Chandler Carruthac80dc72015-06-17 07:18:54 +0000608 AA->alias(MemoryLocation(MMOa->getValue(), Overlapa,
609 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
610 MemoryLocation(MMOb->getValue(), Overlapb,
611 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000612
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000613 return (AAResult != NoAlias);
Andrew Trickda01ba32012-05-15 18:59:41 +0000614}
615
Jonas Paulssonac29f012016-02-03 17:52:29 +0000616/// Check whether two objects need a chain edge and add it if needed.
617void ScheduleDAGInstrs::addChainDependency (SUnit *SUa, SUnit *SUb,
618 unsigned Latency) {
619 if (MIsNeedChainEdge(AAForDep, MFI, MF.getDataLayout(), SUa->getInstr(),
620 SUb->getInstr())) {
621 SDep Dep(SUa, SDep::MayAliasMem);
622 Dep.setLatency(Latency);
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000623 SUb->addPred(Dep);
624 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000625}
626
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000627/// Create an SUnit for each real instruction, numbered in top-down topological
Andrew Trick46cc9a42012-02-22 06:08:11 +0000628/// order. The instruction order A < B, implies that no edge exists from B to A.
629///
630/// Map each real instruction to its SUnit.
631///
Andrew Trick8823dec2012-03-14 04:00:41 +0000632/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
633/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
634/// instead of pointers.
635///
636/// MachineScheduler relies on initSUnits numbering the nodes by their order in
637/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000638void ScheduleDAGInstrs::initSUnits() {
639 // We'll be allocating one SUnit for each real instruction in the region,
640 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000641 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000642
Andrew Trick8c207e42012-03-09 04:29:02 +0000643 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000644 MachineInstr *MI = I;
645 if (MI->isDebugValue())
646 continue;
647
Andrew Trick52226d42012-03-07 23:00:49 +0000648 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000649 MISUnitMap[MI] = SU;
650
651 SU->isCall = MI->isCall();
652 SU->isCommutable = MI->isCommutable();
653
654 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000655 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000656
Andrew Trick1766f932014-04-18 17:35:08 +0000657 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
658 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000659 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000660 // entire pipeline. These are identified by BufferSize=0.
661 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000662 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000663 // require the same resources. This is used for in-order execution pipelines
664 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000665 if (SchedModel.hasInstrSchedModel()) {
666 const MCSchedClassDesc *SC = getSchedClass(SU);
667 for (TargetSchedModel::ProcResIter
668 PI = SchedModel.getWriteProcResBegin(SC),
669 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000670 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
671 case 0:
672 SU->hasReservedResource = true;
673 break;
674 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000675 SU->isUnbuffered = true;
676 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000677 default:
678 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000679 }
680 }
681 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000682 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000683}
684
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000685void ScheduleDAGInstrs::collectVRegUses(SUnit *SU) {
686 const MachineInstr *MI = SU->getInstr();
687 for (const MachineOperand &MO : MI->operands()) {
688 if (!MO.isReg())
689 continue;
690 if (!MO.readsReg())
691 continue;
692 if (TrackLaneMasks && !MO.isUse())
693 continue;
694
695 unsigned Reg = MO.getReg();
696 if (!TargetRegisterInfo::isVirtualRegister(Reg))
697 continue;
698
Matthias Braund4f64092016-01-20 00:23:32 +0000699 // Ignore re-defs.
700 if (TrackLaneMasks) {
701 bool FoundDef = false;
702 for (const MachineOperand &MO2 : MI->operands()) {
703 if (MO2.isReg() && MO2.isDef() && MO2.getReg() == Reg && !MO2.isDead()) {
704 FoundDef = true;
705 break;
706 }
707 }
708 if (FoundDef)
709 continue;
710 }
711
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000712 // Record this local VReg use.
713 VReg2SUnitMultiMap::iterator UI = VRegUses.find(Reg);
714 for (; UI != VRegUses.end(); ++UI) {
715 if (UI->SU == SU)
716 break;
717 }
718 if (UI == VRegUses.end())
719 VRegUses.insert(VReg2SUnit(Reg, 0, SU));
720 }
721}
722
Jonas Paulssonac29f012016-02-03 17:52:29 +0000723class ScheduleDAGInstrs::Value2SUsMap : public MapVector<ValueType, SUList> {
724
725 /// Current total number of SUs in map.
726 unsigned NumNodes;
727
728 /// 1 for loads, 0 for stores. (see comment in SUList)
729 unsigned TrueMemOrderLatency;
730public:
731
732 Value2SUsMap(unsigned lat = 0) : NumNodes(0), TrueMemOrderLatency(lat) {}
733
734 /// To keep NumNodes up to date, insert() is used instead of
735 /// this operator w/ push_back().
736 ValueType &operator[](const SUList &Key) {
737 llvm_unreachable("Don't use. Use insert() instead."); };
738
739 /// Add SU to the SUList of V. If Map grows huge, reduce its size
740 /// by calling reduce().
741 void inline insert(SUnit *SU, ValueType V) {
742 MapVector::operator[](V).push_back(SU);
743 NumNodes++;
744 }
745
746 /// Clears the list of SUs mapped to V.
747 void inline clearList(ValueType V) {
748 iterator Itr = find(V);
749 if (Itr != end()) {
750 assert (NumNodes >= Itr->second.size());
751 NumNodes -= Itr->second.size();
752
753 Itr->second.clear();
754 }
755 }
756
757 /// Clears map from all contents.
758 void clear() {
759 MapVector<ValueType, SUList>::clear();
760 NumNodes = 0;
761 }
762
763 unsigned inline size() const { return NumNodes; }
764
765 /// Count the number of SUs in this map after a reduction.
766 void reComputeSize(void) {
767 NumNodes = 0;
768 for (auto &I : *this)
769 NumNodes += I.second.size();
770 }
771
772 unsigned inline getTrueMemOrderLatency() const {
773 return TrueMemOrderLatency;
774 }
775
776 void dump();
777};
778
779void ScheduleDAGInstrs::addChainDependencies(SUnit *SU,
780 Value2SUsMap &Val2SUsMap) {
781 for (auto &I : Val2SUsMap)
782 addChainDependencies(SU, I.second,
783 Val2SUsMap.getTrueMemOrderLatency());
784}
785
786void ScheduleDAGInstrs::addChainDependencies(SUnit *SU,
787 Value2SUsMap &Val2SUsMap,
788 ValueType V) {
789 Value2SUsMap::iterator Itr = Val2SUsMap.find(V);
790 if (Itr != Val2SUsMap.end())
791 addChainDependencies(SU, Itr->second,
792 Val2SUsMap.getTrueMemOrderLatency());
793}
794
795void ScheduleDAGInstrs::addBarrierChain(Value2SUsMap &map) {
796 assert (BarrierChain != nullptr);
797
798 for (auto &I : map) {
799 SUList &sus = I.second;
800 for (auto *SU : sus)
801 SU->addPredBarrier(BarrierChain);
802 }
803 map.clear();
804}
805
806void ScheduleDAGInstrs::insertBarrierChain(Value2SUsMap &map) {
807 assert (BarrierChain != nullptr);
808
809 // Go through all lists of SUs.
810 for (Value2SUsMap::iterator I = map.begin(), EE = map.end(); I != EE;) {
811 Value2SUsMap::iterator CurrItr = I++;
812 SUList &sus = CurrItr->second;
813 SUList::iterator SUItr = sus.begin(), SUEE = sus.end();
814 for (; SUItr != SUEE; ++SUItr) {
815 // Stop on BarrierChain or any instruction above it.
816 if ((*SUItr)->NodeNum <= BarrierChain->NodeNum)
817 break;
818
819 (*SUItr)->addPredBarrier(BarrierChain);
820 }
821
822 // Remove also the BarrierChain from list if present.
823 if (*SUItr == BarrierChain)
824 SUItr++;
825
826 // Remove all SUs that are now successors of BarrierChain.
827 if (SUItr != sus.begin())
828 sus.erase(sus.begin(), SUItr);
829 }
830
831 // Remove all entries with empty su lists.
832 map.remove_if([&](std::pair<ValueType, SUList> &mapEntry) {
833 return (mapEntry.second.empty()); });
834
835 // Recompute the size of the map (NumNodes).
836 map.reComputeSize();
837}
838
Alp Tokerf907b892013-12-05 05:44:44 +0000839/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000840/// DAG builder is an efficient place to do it because it already visits
841/// operands.
842void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000843 RegPressureTracker *RPTracker,
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000844 PressureDiffs *PDiffs,
Matthias Braund4f64092016-01-20 00:23:32 +0000845 LiveIntervals *LIS,
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000846 bool TrackLaneMasks) {
Eric Christopher2c635492015-01-27 07:54:39 +0000847 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000848 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
849 : ST.useAA();
Jonas Paulssonac29f012016-02-03 17:52:29 +0000850 AAForDep = UseAA ? AA : nullptr;
851
852 BarrierChain = nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000853
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000854 this->TrackLaneMasks = TrackLaneMasks;
Andrew Trick310190e2013-09-04 21:00:02 +0000855 MISUnitMap.clear();
856 ScheduleDAG::clearDAG();
857
Andrew Trick46cc9a42012-02-22 06:08:11 +0000858 // Create an SUnit for each real instruction.
859 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000860
Andrew Trick1a831342013-08-30 03:49:48 +0000861 if (PDiffs)
862 PDiffs->init(SUnits.size());
863
Jonas Paulssonac29f012016-02-03 17:52:29 +0000864 // We build scheduling units by walking a block's instruction list
865 // from bottom to top.
Dan Gohman3aab10b2008-12-04 01:35:46 +0000866
Jonas Paulssonac29f012016-02-03 17:52:29 +0000867 // Each MIs' memory operand(s) is analyzed to a list of underlying
Jonas Paulsson22936852016-02-04 13:08:48 +0000868 // objects. The SU is then inserted in the SUList(s) mapped from the
869 // Value(s). Each Value thus gets mapped to lists of SUs depending
870 // on it, stores and loads kept separately. Two SUs are trivially
871 // non-aliasing if they both depend on only identified Values and do
872 // not share any common Value.
Jonas Paulssonac29f012016-02-03 17:52:29 +0000873 Value2SUsMap Stores, Loads(1 /*TrueMemOrderLatency*/);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000874
Jonas Paulssonac29f012016-02-03 17:52:29 +0000875 // Certain memory accesses are known to not alias any SU in Stores
876 // or Loads, and have therefore their own 'NonAlias'
877 // domain. E.g. spill / reload instructions never alias LLVM I/R
Jonas Paulsson22936852016-02-04 13:08:48 +0000878 // Values. It would be nice to assume that this type of memory
879 // accesses always have a proper memory operand modelling, and are
880 // therefore never unanalyzable, but this is conservatively not
881 // done.
Jonas Paulssonac29f012016-02-03 17:52:29 +0000882 Value2SUsMap NonAliasStores, NonAliasLoads(1 /*TrueMemOrderLatency*/);
883
884 // Always reduce a huge region with half of the elements, except
885 // when user sets this number explicitly.
886 if (ReductionSize.getNumOccurrences() == 0)
887 ReductionSize = (HugeRegion / 2);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000888
Dale Johannesen49de0602010-03-10 22:13:47 +0000889 // Remove any stale debug info; sometimes BuildSchedGraph is called again
890 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000891 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000892 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000893
Andrew Trickd675a4c2012-02-23 01:52:38 +0000894 assert(Defs.empty() && Uses.empty() &&
895 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000896 Defs.setUniverse(TRI->getNumRegs());
897 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000898
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000899 assert(CurrentVRegDefs.empty() && "nobody else should use CurrentVRegDefs");
900 assert(CurrentVRegUses.empty() && "nobody else should use CurrentVRegUses");
901 unsigned NumVirtRegs = MRI.getNumVirtRegs();
902 CurrentVRegDefs.setUniverse(NumVirtRegs);
903 CurrentVRegUses.setUniverse(NumVirtRegs);
904
Andrew Trick8dd26f02013-08-23 17:48:39 +0000905 VRegUses.clear();
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000906 VRegUses.setUniverse(NumVirtRegs);
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000907
Andrew Trickd675a4c2012-02-23 01:52:38 +0000908 // Model data dependencies between instructions being scheduled and the
909 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000910 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000911
Dan Gohmanb9543432009-02-10 23:27:53 +0000912 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000913 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000914 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000915 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000916 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000917 if (MI && DbgMI) {
918 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000919 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000920 }
921
Dale Johannesen49de0602010-03-10 22:13:47 +0000922 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000923 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000924 continue;
925 }
Andrew Trick1a831342013-08-30 03:49:48 +0000926 SUnit *SU = MISUnitMap[MI];
927 assert(SU && "No SUnit mapped to this MI");
928
Andrew Trick88639922012-04-24 17:56:43 +0000929 if (RPTracker) {
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000930 collectVRegUses(SU);
Matthias Braunb505c762016-01-12 22:57:35 +0000931
932 RegisterOperands RegOpers;
Matthias Braun5d458612016-01-20 00:23:26 +0000933 RegOpers.collect(*MI, *TRI, MRI, TrackLaneMasks, false);
Matthias Braund4f64092016-01-20 00:23:32 +0000934 if (TrackLaneMasks) {
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000935 SlotIndex SlotIdx = LIS->getInstructionIndex(*MI);
Matthias Braund4f64092016-01-20 00:23:32 +0000936 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx);
937 }
Matthias Braunb505c762016-01-12 22:57:35 +0000938 if (PDiffs != nullptr)
939 PDiffs->addInstruction(SU->NodeNum, RegOpers, MRI);
940
941 RPTracker->recedeSkipDebugValues();
942 assert(&*RPTracker->getPos() == MI && "RPTracker in sync");
943 RPTracker->recede(RegOpers);
Andrew Trick88639922012-04-24 17:56:43 +0000944 }
Devang Patele5feef02011-06-02 20:07:12 +0000945
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000946 assert(
947 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
948 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000949
Dan Gohman3aab10b2008-12-04 01:35:46 +0000950 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000951 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000952 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
953 const MachineOperand &MO = MI->getOperand(j);
954 if (!MO.isReg()) continue;
955 unsigned Reg = MO.getReg();
956 if (Reg == 0) continue;
957
Andrew Trickdbee9d82012-01-14 02:17:15 +0000958 if (TRI->isPhysicalRegister(Reg))
959 addPhysRegDeps(SU, j);
960 else {
Andrew Trickec256482012-12-18 20:53:01 +0000961 if (MO.isDef()) {
962 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000963 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000964 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000965 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000966 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000967 }
968 }
Andrew Trickec256482012-12-18 20:53:01 +0000969 // If we haven't seen any uses in this scheduling region, create a
970 // dependence edge to ExitSU to model the live-out latency. This is required
971 // for vreg defs with no in-region use, and prefetches with no vreg def.
972 //
973 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
974 // check currently relies on being called before adding chain deps.
975 if (SU->NumSuccs == 0 && SU->Latency > 1
976 && (HasVRegDef || MI->mayLoad())) {
977 SDep Dep(SU, SDep::Artificial);
978 Dep.setLatency(SU->Latency - 1);
979 ExitSU.addPred(Dep);
980 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000981
Jonas Paulssonac29f012016-02-03 17:52:29 +0000982 // Add memory dependencies (Note: isStoreToStackSlot and
983 // isLoadFromStackSLot are not usable after stack slots are lowered to
984 // actual addresses).
985
986 // This is a barrier event that acts as a pivotal node in the DAG.
Andrew Trickda01ba32012-05-15 18:59:41 +0000987 if (isGlobalMemoryObject(AA, MI)) {
Jonas Paulssonac29f012016-02-03 17:52:29 +0000988
989 // Become the barrier chain.
David Goodwind2f9c042009-11-09 19:22:17 +0000990 if (BarrierChain)
Jonas Paulssonac29f012016-02-03 17:52:29 +0000991 BarrierChain->addPredBarrier(SU);
David Goodwind2f9c042009-11-09 19:22:17 +0000992 BarrierChain = SU;
993
Jonas Paulssonac29f012016-02-03 17:52:29 +0000994 DEBUG(dbgs() << "Global memory object and new barrier chain: SU("
995 << BarrierChain->NodeNum << ").\n";);
Tom Stellard3e01d472014-12-08 23:36:48 +0000996
Jonas Paulssonac29f012016-02-03 17:52:29 +0000997 // Add dependencies against everything below it and clear maps.
998 addBarrierChain(Stores);
999 addBarrierChain(Loads);
1000 addBarrierChain(NonAliasStores);
1001 addBarrierChain(NonAliasLoads);
Hal Finkel66859ae2012-12-10 18:49:16 +00001002
Jonas Paulssonac29f012016-02-03 17:52:29 +00001003 continue;
1004 }
1005
1006 // If it's not a store or a variant load, we're done.
1007 if (!MI->mayStore() && !(MI->mayLoad() && !MI->isInvariantLoad(AA)))
1008 continue;
1009
1010 // Always add dependecy edge to BarrierChain if present.
1011 if (BarrierChain)
1012 BarrierChain->addPredBarrier(SU);
1013
1014 // Find the underlying objects for MI. The Objs vector is either
1015 // empty, or filled with the Values of memory locations which this
1016 // SU depends on. An empty vector means the memory location is
Jonas Paulsson98963fe2016-02-15 16:43:15 +00001017 // unknown, and may alias anything.
Jonas Paulssonac29f012016-02-03 17:52:29 +00001018 UnderlyingObjectsVector Objs;
1019 getUnderlyingObjectsForInstr(MI, MFI, Objs, MF.getDataLayout());
1020
1021 if (MI->mayStore()) {
Hal Finkel66859ae2012-12-10 18:49:16 +00001022 if (Objs.empty()) {
Jonas Paulssonac29f012016-02-03 17:52:29 +00001023 // An unknown store depends on all stores and loads.
1024 addChainDependencies(SU, Stores);
1025 addChainDependencies(SU, NonAliasStores);
1026 addChainDependencies(SU, Loads);
1027 addChainDependencies(SU, NonAliasLoads);
1028
1029 // Map this store to 'UnknownValue'.
1030 Stores.insert(SU, UnknownValue);
Chandler Carruthb4728562016-03-31 21:55:58 +00001031 } else {
1032 // Add precise dependencies against all previously seen memory
1033 // accesses mapped to the same Value(s).
1034 for (auto &underlObj : Objs) {
1035 ValueType V = underlObj.getPointer();
1036 bool ThisMayAlias = underlObj.getInt();
1037
1038 Value2SUsMap &stores_ = (ThisMayAlias ? Stores : NonAliasStores);
1039
1040 // Add dependencies to previous stores and loads mapped to V.
1041 addChainDependencies(SU, stores_, V);
1042 addChainDependencies(SU, (ThisMayAlias ? Loads : NonAliasLoads), V);
Geoff Berryc0739d82016-04-12 15:50:19 +00001043 }
1044 // Update the store map after all chains have been added to avoid adding
1045 // self-loop edge if multiple underlying objects are present.
1046 for (auto &underlObj : Objs) {
1047 ValueType V = underlObj.getPointer();
1048 bool ThisMayAlias = underlObj.getInt();
1049
1050 Value2SUsMap &stores_ = (ThisMayAlias ? Stores : NonAliasStores);
Chandler Carruthb4728562016-03-31 21:55:58 +00001051
1052 // Map this store to V.
1053 stores_.insert(SU, V);
1054 }
1055 // The store may have dependencies to unanalyzable loads and
1056 // stores.
1057 addChainDependencies(SU, Loads, UnknownValue);
1058 addChainDependencies(SU, Stores, UnknownValue);
Hal Finkel66859ae2012-12-10 18:49:16 +00001059 }
Chandler Carruthb4728562016-03-31 21:55:58 +00001060 } else { // SU is a load.
Jonas Paulssonac29f012016-02-03 17:52:29 +00001061 if (Objs.empty()) {
1062 // An unknown load depends on all stores.
1063 addChainDependencies(SU, Stores);
1064 addChainDependencies(SU, NonAliasStores);
1065
1066 Loads.insert(SU, UnknownValue);
Chandler Carruthb4728562016-03-31 21:55:58 +00001067 } else {
1068 for (auto &underlObj : Objs) {
1069 ValueType V = underlObj.getPointer();
1070 bool ThisMayAlias = underlObj.getInt();
1071
1072 // Add precise dependencies against all previously seen stores
1073 // mapping to the same Value(s).
1074 addChainDependencies(SU, (ThisMayAlias ? Stores : NonAliasStores), V);
1075
1076 // Map this load to V.
1077 (ThisMayAlias ? Loads : NonAliasLoads).insert(SU, V);
1078 }
1079 // The load may have dependencies to unanalyzable stores.
1080 addChainDependencies(SU, Stores, UnknownValue);
Hal Finkel66859ae2012-12-10 18:49:16 +00001081 }
Jonas Paulssonac29f012016-02-03 17:52:29 +00001082 }
1083
1084 // Reduce maps if they grow huge.
1085 if (Stores.size() + Loads.size() >= HugeRegion) {
1086 DEBUG(dbgs() << "Reducing Stores and Loads maps.\n";);
1087 reduceHugeMemNodeMaps(Stores, Loads, ReductionSize);
1088 }
1089 if (NonAliasStores.size() + NonAliasLoads.size() >= HugeRegion) {
1090 DEBUG(dbgs() << "Reducing NonAliasStores and NonAliasLoads maps.\n";);
1091 reduceHugeMemNodeMaps(NonAliasStores, NonAliasLoads, ReductionSize);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001092 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001093 }
Jonas Paulssonac29f012016-02-03 17:52:29 +00001094
Andrew Trickb767d1e2012-12-01 01:22:49 +00001095 if (DbgMI)
1096 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001097
Andrew Trickd675a4c2012-02-23 01:52:38 +00001098 Defs.clear();
1099 Uses.clear();
Matthias Braun97d0ffb2015-12-04 01:51:19 +00001100 CurrentVRegDefs.clear();
1101 CurrentVRegUses.clear();
Jonas Paulssonac29f012016-02-03 17:52:29 +00001102}
1103
1104raw_ostream &llvm::operator<<(raw_ostream &OS, const PseudoSourceValue* PSV) {
1105 PSV->printCustom(OS);
1106 return OS;
1107}
1108
1109void ScheduleDAGInstrs::Value2SUsMap::dump() {
1110 for (auto &Itr : *this) {
1111 if (Itr.first.is<const Value*>()) {
1112 const Value *V = Itr.first.get<const Value*>();
1113 if (isa<UndefValue>(V))
1114 dbgs() << "Unknown";
1115 else
1116 V->printAsOperand(dbgs());
1117 }
1118 else if (Itr.first.is<const PseudoSourceValue*>())
1119 dbgs() << Itr.first.get<const PseudoSourceValue*>();
1120 else
1121 llvm_unreachable("Unknown Value type.");
1122
1123 dbgs() << " : ";
1124 dumpSUList(Itr.second);
1125 }
1126}
1127
1128/// Reduce maps in FIFO order, by N SUs. This is better than turning
1129/// every Nth memory SU into BarrierChain in buildSchedGraph(), since
1130/// it avoids unnecessary edges between seen SUs above the new
1131/// BarrierChain, and those below it.
1132void ScheduleDAGInstrs::reduceHugeMemNodeMaps(Value2SUsMap &stores,
1133 Value2SUsMap &loads, unsigned N) {
1134 DEBUG(dbgs() << "Before reduction:\nStoring SUnits:\n";
1135 stores.dump();
1136 dbgs() << "Loading SUnits:\n";
1137 loads.dump());
1138
1139 // Insert all SU's NodeNums into a vector and sort it.
1140 std::vector<unsigned> NodeNums;
1141 NodeNums.reserve(stores.size() + loads.size());
1142 for (auto &I : stores)
1143 for (auto *SU : I.second)
1144 NodeNums.push_back(SU->NodeNum);
1145 for (auto &I : loads)
1146 for (auto *SU : I.second)
1147 NodeNums.push_back(SU->NodeNum);
1148 std::sort(NodeNums.begin(), NodeNums.end());
1149
1150 // The N last elements in NodeNums will be removed, and the SU with
1151 // the lowest NodeNum of them will become the new BarrierChain to
1152 // let the not yet seen SUs have a dependency to the removed SUs.
1153 assert (N <= NodeNums.size());
1154 SUnit *newBarrierChain = &SUnits[*(NodeNums.end() - N)];
1155 if (BarrierChain) {
1156 // The aliasing and non-aliasing maps reduce independently of each
1157 // other, but share a common BarrierChain. Check if the
1158 // newBarrierChain is above the former one. If it is not, it may
1159 // introduce a loop to use newBarrierChain, so keep the old one.
1160 if (newBarrierChain->NodeNum < BarrierChain->NodeNum) {
1161 BarrierChain->addPredBarrier(newBarrierChain);
1162 BarrierChain = newBarrierChain;
1163 DEBUG(dbgs() << "Inserting new barrier chain: SU("
1164 << BarrierChain->NodeNum << ").\n";);
1165 }
1166 else
1167 DEBUG(dbgs() << "Keeping old barrier chain: SU("
1168 << BarrierChain->NodeNum << ").\n";);
1169 }
1170 else
1171 BarrierChain = newBarrierChain;
1172
1173 insertBarrierChain(stores);
1174 insertBarrierChain(loads);
1175
1176 DEBUG(dbgs() << "After reduction:\nStoring SUnits:\n";
1177 stores.dump();
1178 dbgs() << "Loading SUnits:\n";
1179 loads.dump());
Dan Gohman60cb69e2008-11-19 23:18:57 +00001180}
1181
Andrew Trick6b104f82013-12-28 21:56:55 +00001182/// \brief Initialize register live-range state for updating kills.
1183void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1184 // Start with no live registers.
1185 LiveRegs.reset();
1186
1187 // Examine the live-in regs of all successors.
1188 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1189 SE = BB->succ_end(); SI != SE; ++SI) {
Matthias Braund9da1622015-09-09 18:08:03 +00001190 for (const auto &LI : (*SI)->liveins()) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001191 // Repeat, for reg and all subregs.
Matthias Braund9da1622015-09-09 18:08:03 +00001192 for (MCSubRegIterator SubRegs(LI.PhysReg, TRI, /*IncludeSelf=*/true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001193 SubRegs.isValid(); ++SubRegs)
1194 LiveRegs.set(*SubRegs);
1195 }
1196 }
1197}
1198
Pete Cooper300069a2015-05-04 16:52:06 +00001199/// \brief If we change a kill flag on the bundle instruction implicit register
1200/// operands, then we also need to propagate that to any instructions inside
1201/// the bundle which had the same kill state.
1202static void toggleBundleKillFlag(MachineInstr *MI, unsigned Reg,
1203 bool NewKillState) {
1204 if (MI->getOpcode() != TargetOpcode::BUNDLE)
1205 return;
1206
1207 // Walk backwards from the last instruction in the bundle to the first.
1208 // Once we set a kill flag on an instruction, we bail out, as otherwise we
1209 // might set it on too many operands. We will clear as many flags as we
1210 // can though.
Duncan P. N. Exon Smithc5b668d2016-02-22 20:49:58 +00001211 MachineBasicBlock::instr_iterator Begin = MI->getIterator();
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001212 MachineBasicBlock::instr_iterator End = getBundleEnd(*MI);
Pete Cooper300069a2015-05-04 16:52:06 +00001213 while (Begin != End) {
Matthias Braune41e1462015-05-29 02:56:46 +00001214 for (MachineOperand &MO : (--End)->operands()) {
1215 if (!MO.isReg() || MO.isDef() || Reg != MO.getReg())
Pete Cooper300069a2015-05-04 16:52:06 +00001216 continue;
1217
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001218 // DEBUG_VALUE nodes do not contribute to code generation and should
1219 // always be ignored. Failure to do so may result in trying to modify
1220 // KILL flags on DEBUG_VALUE nodes, which is distressing.
Matthias Braune41e1462015-05-29 02:56:46 +00001221 if (MO.isDebug())
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001222 continue;
1223
Pete Cooper300069a2015-05-04 16:52:06 +00001224 // If the register has the internal flag then it could be killing an
1225 // internal def of the register. In this case, just skip. We only want
1226 // to toggle the flag on operands visible outside the bundle.
Matthias Braune41e1462015-05-29 02:56:46 +00001227 if (MO.isInternalRead())
Pete Cooper300069a2015-05-04 16:52:06 +00001228 continue;
1229
Matthias Braune41e1462015-05-29 02:56:46 +00001230 if (MO.isKill() == NewKillState)
Pete Cooper300069a2015-05-04 16:52:06 +00001231 continue;
Matthias Braune41e1462015-05-29 02:56:46 +00001232 MO.setIsKill(NewKillState);
Pete Cooper300069a2015-05-04 16:52:06 +00001233 if (NewKillState)
1234 return;
1235 }
1236 }
1237}
1238
Andrew Trick6b104f82013-12-28 21:56:55 +00001239bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1240 // Setting kill flag...
1241 if (!MO.isKill()) {
1242 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001243 toggleBundleKillFlag(MI, MO.getReg(), true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001244 return false;
1245 }
1246
1247 // If MO itself is live, clear the kill flag...
1248 if (LiveRegs.test(MO.getReg())) {
1249 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001250 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001251 return false;
1252 }
1253
1254 // If any subreg of MO is live, then create an imp-def for that
1255 // subreg and keep MO marked as killed.
1256 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001257 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001258 bool AllDead = true;
1259 const unsigned SuperReg = MO.getReg();
1260 MachineInstrBuilder MIB(MF, MI);
1261 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1262 if (LiveRegs.test(*SubRegs)) {
1263 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1264 AllDead = false;
1265 }
1266 }
1267
Pete Cooper300069a2015-05-04 16:52:06 +00001268 if(AllDead) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001269 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001270 toggleBundleKillFlag(MI, MO.getReg(), true);
1271 }
Andrew Trick6b104f82013-12-28 21:56:55 +00001272 return false;
1273}
1274
1275// FIXME: Reuse the LivePhysRegs utility for this.
1276void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1277 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1278
1279 LiveRegs.resize(TRI->getNumRegs());
1280 BitVector killedRegs(TRI->getNumRegs());
1281
1282 startBlockForKills(MBB);
1283
1284 // Examine block from end to start...
1285 unsigned Count = MBB->size();
1286 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1287 I != E; --Count) {
1288 MachineInstr *MI = --I;
1289 if (MI->isDebugValue())
1290 continue;
1291
1292 // Update liveness. Registers that are defed but not used in this
1293 // instruction are now dead. Mark register and all subregs as they
1294 // are completely defined.
1295 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1296 MachineOperand &MO = MI->getOperand(i);
1297 if (MO.isRegMask())
1298 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1299 if (!MO.isReg()) continue;
1300 unsigned Reg = MO.getReg();
1301 if (Reg == 0) continue;
1302 if (!MO.isDef()) continue;
1303 // Ignore two-addr defs.
1304 if (MI->isRegTiedToUseOperand(i)) continue;
1305
1306 // Repeat for reg and all subregs.
1307 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1308 SubRegs.isValid(); ++SubRegs)
1309 LiveRegs.reset(*SubRegs);
1310 }
1311
1312 // Examine all used registers and set/clear kill flag. When a
1313 // register is used multiple times we only set the kill flag on
1314 // the first use. Don't set kill flags on undef operands.
1315 killedRegs.reset();
1316 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1317 MachineOperand &MO = MI->getOperand(i);
1318 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1319 unsigned Reg = MO.getReg();
1320 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1321
1322 bool kill = false;
1323 if (!killedRegs.test(Reg)) {
1324 kill = true;
1325 // A register is not killed if any subregs are live...
1326 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1327 if (LiveRegs.test(*SubRegs)) {
1328 kill = false;
1329 break;
1330 }
1331 }
1332
1333 // If subreg is not live, then register is killed if it became
1334 // live in this instruction
1335 if (kill)
1336 kill = !LiveRegs.test(Reg);
1337 }
1338
1339 if (MO.isKill() != kill) {
1340 DEBUG(dbgs() << "Fixing " << MO << " in ");
1341 // Warning: toggleKillFlag may invalidate MO.
1342 toggleKillFlag(MI, MO);
1343 DEBUG(MI->dump());
Pete Cooper300069a2015-05-04 16:52:06 +00001344 DEBUG(if (MI->getOpcode() == TargetOpcode::BUNDLE) {
Duncan P. N. Exon Smithc5b668d2016-02-22 20:49:58 +00001345 MachineBasicBlock::instr_iterator Begin = MI->getIterator();
Duncan P. N. Exon Smithf9ab4162016-02-27 17:05:33 +00001346 MachineBasicBlock::instr_iterator End = getBundleEnd(*MI);
Pete Cooper300069a2015-05-04 16:52:06 +00001347 while (++Begin != End)
1348 DEBUG(Begin->dump());
1349 });
Andrew Trick6b104f82013-12-28 21:56:55 +00001350 }
1351
1352 killedRegs.set(Reg);
1353 }
1354
1355 // Mark any used register (that is not using undef) and subregs as
1356 // now live...
1357 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1358 MachineOperand &MO = MI->getOperand(i);
1359 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1360 unsigned Reg = MO.getReg();
1361 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1362
1363 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1364 SubRegs.isValid(); ++SubRegs)
1365 LiveRegs.set(*SubRegs);
1366 }
1367 }
1368}
1369
Dan Gohman60cb69e2008-11-19 23:18:57 +00001370void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001371#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001372 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001373#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001374}
1375
1376std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001377 std::string s;
1378 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001379 if (SU == &EntrySU)
1380 oss << "<entry>";
1381 else if (SU == &ExitSU)
1382 oss << "<exit>";
1383 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001384 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001385 return oss.str();
1386}
1387
Andrew Trick1b2324d2012-03-07 00:18:22 +00001388/// Return the basic block label. It is not necessarilly unique because a block
1389/// contains multiple scheduling regions. But it is fine for visualization.
1390std::string ScheduleDAGInstrs::getDAGName() const {
1391 return "dag." + BB->getFullName();
1392}
Andrew Trick90f711d2012-10-15 18:02:27 +00001393
Andrew Trick48d392e2012-11-28 05:13:28 +00001394//===----------------------------------------------------------------------===//
1395// SchedDFSResult Implementation
1396//===----------------------------------------------------------------------===//
1397
1398namespace llvm {
1399/// \brief Internal state used to compute SchedDFSResult.
1400class SchedDFSImpl {
1401 SchedDFSResult &R;
1402
1403 /// Join DAG nodes into equivalence classes by their subtree.
1404 IntEqClasses SubtreeClasses;
1405 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1406 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1407
Andrew Trickffc80972013-01-25 06:52:27 +00001408 struct RootData {
1409 unsigned NodeID;
1410 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1411 unsigned SubInstrCount; // Instr count in this tree only, not children.
1412
1413 RootData(unsigned id): NodeID(id),
1414 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1415 SubInstrCount(0) {}
1416
1417 unsigned getSparseSetIndex() const { return NodeID; }
1418 };
1419
1420 SparseSet<RootData> RootSet;
1421
Andrew Trick48d392e2012-11-28 05:13:28 +00001422public:
Andrew Trickffc80972013-01-25 06:52:27 +00001423 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1424 RootSet.setUniverse(R.DFSNodeData.size());
1425 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001426
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001427 /// Return true if this node been visited by the DFS traversal.
1428 ///
1429 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1430 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001431 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001432 return R.DFSNodeData[SU->NodeNum].SubtreeID
1433 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001434 }
1435
1436 /// Initialize this node's instruction count. We don't need to flag the node
1437 /// visited until visitPostorder because the DAG cannot have cycles.
1438 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001439 R.DFSNodeData[SU->NodeNum].InstrCount =
1440 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001441 }
1442
1443 /// Called once for each node after all predecessors are visited. Revisit this
1444 /// node's predecessors and potentially join them now that we know the ILP of
1445 /// the other predecessors.
1446 void visitPostorderNode(const SUnit *SU) {
1447 // Mark this node as the root of a subtree. It may be joined with its
1448 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001449 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1450 RootData RData(SU->NodeNum);
1451 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001452
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001453 // If any predecessors are still in their own subtree, they either cannot be
1454 // joined or are large enough to remain separate. If this parent node's
1455 // total instruction count is not greater than a child subtree by at least
1456 // the subtree limit, then try to join it now since splitting subtrees is
1457 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001458 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001459 for (SUnit::const_pred_iterator
1460 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1461 if (PI->getKind() != SDep::Data)
1462 continue;
1463 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001464 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001465 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001466
1467 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001468 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1469 // If the predecessor's parent is invalid, this is a tree edge and the
1470 // current node is the parent.
1471 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1472 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1473 }
1474 else if (RootSet.count(PredNum)) {
1475 // The predecessor is not a root, but is still in the root set. This
1476 // must be the new parent that it was just joined to. Note that
1477 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1478 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001479 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1480 RootSet.erase(PredNum);
1481 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001482 }
Andrew Trickffc80972013-01-25 06:52:27 +00001483 RootSet[SU->NodeNum] = RData;
1484 }
1485
1486 /// Called once for each tree edge after calling visitPostOrderNode on the
1487 /// predecessor. Increment the parent node's instruction count and
1488 /// preemptively join this subtree to its parent's if it is small enough.
1489 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1490 R.DFSNodeData[Succ->NodeNum].InstrCount
1491 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1492 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001493 }
1494
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001495 /// Add a connection for cross edges.
1496 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001497 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1498 }
1499
1500 /// Set each node's subtree ID to the representative ID and record connections
1501 /// between trees.
1502 void finalize() {
1503 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001504 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1505 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1506 && "number of roots should match trees");
1507 for (SparseSet<RootData>::const_iterator
1508 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1509 unsigned TreeID = SubtreeClasses[RI->NodeID];
1510 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1511 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1512 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001513 // Note that SubInstrCount may be greater than InstrCount if we joined
1514 // subtrees across a cross edge. InstrCount will be attributed to the
1515 // original parent, while SubInstrCount will be attributed to the joined
1516 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001517 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001518 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1519 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1520 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001521 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1522 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001523 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001524 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001525 }
1526 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1527 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1528 I != E; ++I) {
1529 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1530 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1531 if (PredTree == SuccTree)
1532 continue;
1533 unsigned Depth = I->first->getDepth();
1534 addConnection(PredTree, SuccTree, Depth);
1535 addConnection(SuccTree, PredTree, Depth);
1536 }
1537 }
1538
1539protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001540 /// Join the predecessor subtree with the successor that is its DFS
1541 /// parent. Apply some heuristics before joining.
1542 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1543 bool CheckLimit = true) {
1544 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1545
1546 // Check if the predecessor is already joined.
1547 const SUnit *PredSU = PredDep.getSUnit();
1548 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001549 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001550 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001551
1552 // Four is the magic number of successors before a node is considered a
1553 // pinch point.
1554 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001555 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1556 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1557 if (SI->getKind() == SDep::Data) {
1558 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001559 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001560 }
1561 }
Andrew Trickffc80972013-01-25 06:52:27 +00001562 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001563 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001564 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001565 SubtreeClasses.join(Succ->NodeNum, PredNum);
1566 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001567 }
1568
Andrew Trick48d392e2012-11-28 05:13:28 +00001569 /// Called by finalize() to record a connection between trees.
1570 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1571 if (!Depth)
1572 return;
1573
Andrew Trickffc80972013-01-25 06:52:27 +00001574 do {
1575 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1576 R.SubtreeConnections[FromTree];
1577 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1578 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1579 if (I->TreeID == ToTree) {
1580 I->Level = std::max(I->Level, Depth);
1581 return;
1582 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001583 }
Andrew Trickffc80972013-01-25 06:52:27 +00001584 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1585 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1586 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001587 }
1588};
1589} // namespace llvm
1590
Andrew Trick90f711d2012-10-15 18:02:27 +00001591namespace {
1592/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1593class SchedDAGReverseDFS {
1594 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1595public:
1596 bool isComplete() const { return DFSStack.empty(); }
1597
1598 void follow(const SUnit *SU) {
1599 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1600 }
1601 void advance() { ++DFSStack.back().second; }
1602
Andrew Trick48d392e2012-11-28 05:13:28 +00001603 const SDep *backtrack() {
1604 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001605 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001606 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001607
1608 const SUnit *getCurr() const { return DFSStack.back().first; }
1609
1610 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1611
1612 SUnit::const_pred_iterator getPredEnd() const {
1613 return getCurr()->Preds.end();
1614 }
1615};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001616} // anonymous
Andrew Trick90f711d2012-10-15 18:02:27 +00001617
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001618static bool hasDataSucc(const SUnit *SU) {
1619 for (SUnit::const_succ_iterator
1620 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001621 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001622 return true;
1623 }
1624 return false;
1625}
1626
Andrew Trick90f711d2012-10-15 18:02:27 +00001627/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1628/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001629void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001630 if (!IsBottomUp)
1631 llvm_unreachable("Top-down ILP metric is unimplemnted");
1632
Andrew Trick48d392e2012-11-28 05:13:28 +00001633 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001634 for (ArrayRef<SUnit>::const_iterator
1635 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1636 const SUnit *SU = &*SI;
1637 if (Impl.isVisited(SU) || hasDataSucc(SU))
1638 continue;
1639
Andrew Trick48d392e2012-11-28 05:13:28 +00001640 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001641 Impl.visitPreorder(SU);
1642 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001643 for (;;) {
1644 // Traverse the leftmost path as far as possible.
1645 while (DFS.getPred() != DFS.getPredEnd()) {
1646 const SDep &PredDep = *DFS.getPred();
1647 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001648 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001649 if (PredDep.getKind() != SDep::Data
1650 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001651 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001652 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001653 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001654 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001655 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001656 continue;
1657 }
1658 Impl.visitPreorder(PredDep.getSUnit());
1659 DFS.follow(PredDep.getSUnit());
1660 }
1661 // Visit the top of the stack in postorder and backtrack.
1662 const SUnit *Child = DFS.getCurr();
1663 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001664 Impl.visitPostorderNode(Child);
1665 if (PredDep)
1666 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001667 if (DFS.isComplete())
1668 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001669 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001670 }
1671 Impl.finalize();
1672}
1673
1674/// The root of the given SubtreeID was just scheduled. For all subtrees
1675/// connected to this tree, record the depth of the connection so that the
1676/// nearest connected subtrees can be prioritized.
1677void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1678 for (SmallVectorImpl<Connection>::const_iterator
1679 I = SubtreeConnections[SubtreeID].begin(),
1680 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1681 SubtreeConnectLevels[I->TreeID] =
1682 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1683 DEBUG(dbgs() << " Tree: " << I->TreeID
1684 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001685 }
1686}
1687
Alp Tokerd8d510a2014-07-01 21:19:13 +00001688LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001689void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001690 OS << InstrCount << " / " << Length << " = ";
1691 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001692 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001693 else
1694 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001695}
1696
Alp Tokerd8d510a2014-07-01 21:19:13 +00001697LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001698void ILPValue::dump() const {
1699 dbgs() << *this << '\n';
1700}
1701
1702namespace llvm {
1703
Alp Tokerd8d510a2014-07-01 21:19:13 +00001704LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001705raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1706 Val.print(OS);
1707 return OS;
1708}
1709
1710} // namespace llvm