blob: 12b2beb357b4cd7550ef081cd08bcaac4f21b0b1 [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"
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"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Operator.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,
Matthias Braun93563e72015-11-03 01:53:29 +000054 LiveIntervals *LIS,
55 bool RemoveKillFlags)
56 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()), LIS(LIS),
57 RemoveKillFlags(RemoveKillFlags), CanHandleTerminators(false),
58 FirstDbgValue(nullptr) {
Devang Patele5feef02011-06-02 20:07:12 +000059 DbgValues.clear();
Andrew Trick9b635132012-09-18 18:20:00 +000060
Eric Christopher2c635492015-01-27 07:54:39 +000061 const TargetSubtargetInfo &ST = mf.getSubtarget();
Pete Cooper11759452014-09-02 17:43:54 +000062 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000063}
Dan Gohman60cb69e2008-11-19 23:18:57 +000064
Dan Gohman1ee0d412009-01-30 02:49:14 +000065/// getUnderlyingObjectFromInt - This is the function that does the work of
66/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
67static const Value *getUnderlyingObjectFromInt(const Value *V) {
68 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000069 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000070 // If we find a ptrtoint, we can transfer control back to the
71 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000072 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000073 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000074 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000075 // likely that the other operand will lead us to the base
76 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000077 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000078 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000079 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000080 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000081 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000082 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
83 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000084 return V;
85 V = U->getOperand(0);
86 } else {
87 return V;
88 }
Duncan Sands19d0b472010-02-16 11:11:14 +000089 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +000090 } while (1);
91}
92
Hal Finkel66859ae2012-12-10 18:49:16 +000093/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +000094/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +000095static void getUnderlyingObjects(const Value *V,
Mehdi Aminia28d91d2015-03-10 02:37:25 +000096 SmallVectorImpl<Value *> &Objects,
97 const DataLayout &DL) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +000098 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +000099 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000100 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000101 V = Working.pop_back_val();
102
103 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000104 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
Hal Finkel66859ae2012-12-10 18:49:16 +0000105
Craig Toppere1c1d362013-07-03 05:11:49 +0000106 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000107 I != IE; ++I) {
108 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000109 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000110 continue;
111 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
112 const Value *O =
113 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
114 if (O->getType()->isPointerTy()) {
115 Working.push_back(O);
116 continue;
117 }
118 }
119 Objects.push_back(const_cast<Value *>(V));
120 }
121 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000122}
123
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000124typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
125typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
Benjamin Kramerfd510922013-06-29 18:41:17 +0000126UnderlyingObjectsVector;
127
Hal Finkel66859ae2012-12-10 18:49:16 +0000128/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000129/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000130/// object, return the Value for that object.
131static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000132 const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000133 UnderlyingObjectsVector &Objects,
134 const DataLayout &DL) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000135 if (!MI->hasOneMemOperand() ||
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000136 (!(*MI->memoperands_begin())->getValue() &&
137 !(*MI->memoperands_begin())->getPseudoValue()) ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000138 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000139 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000140
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000141 if (const PseudoSourceValue *PSV =
142 (*MI->memoperands_begin())->getPseudoValue()) {
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000143 // Function that contain tail calls don't have unique PseudoSourceValue
144 // objects. Two PseudoSourceValues might refer to the same or overlapping
145 // locations. The client code calling this function assumes this is not the
146 // case. So return a conservative answer of no known object.
147 if (MFI->hasTailCall())
148 return;
149
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000150 // For now, ignore PseudoSourceValues which may alias LLVM IR values
151 // because the code that uses this function has no way to cope with
152 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000153 if (!PSV->isAliased(MFI)) {
154 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000155 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000156 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000157 return;
158 }
159
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000160 const Value *V = (*MI->memoperands_begin())->getValue();
161 if (!V)
162 return;
163
Hal Finkel66859ae2012-12-10 18:49:16 +0000164 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000165 getUnderlyingObjects(V, Objs, DL);
Andrew Trick24b1c482011-05-05 19:24:06 +0000166
Sanjay Patel490aca92015-05-21 16:00:50 +0000167 for (Value *V : Objs) {
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000168 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000169 Objects.clear();
170 return;
171 }
172
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000173 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000174 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000175}
176
Andrew Trick7405c6d2012-04-20 20:05:21 +0000177void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
178 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000179}
180
Andrew Trick52226d42012-03-07 23:00:49 +0000181void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000182 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000183 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000184}
185
Andrew Trick60cf03e2012-03-07 05:21:52 +0000186/// Initialize the DAG and common scheduler state for the current scheduling
187/// region. This does not actually create the DAG, only clears it. The
188/// scheduling driver may call BuildSchedGraph multiple times per scheduling
189/// region.
190void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
191 MachineBasicBlock::iterator begin,
192 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000193 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000194 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000195 RegionBegin = begin;
196 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000197 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000198}
199
200/// Close the current scheduling region. Don't clear any state in case the
201/// driver wants to refer to the previous scheduling region.
202void ScheduleDAGInstrs::exitRegion() {
203 // Nothing to do.
204}
205
Andrew Trick52226d42012-03-07 23:00:49 +0000206/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000207/// list of instructions being scheduled to scheduling barrier by adding
208/// the exit SU to the register defs and use list. This is because we want to
209/// make sure instructions which define registers that are either used by
210/// the terminator or are live-out are properly scheduled. This is
211/// especially important when the definition latency of the return value(s)
212/// are too high to be hidden by the branch or when the liveout registers
213/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000214void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000215 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000216 ExitSU.setInstr(ExitMI);
217 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000218 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000219 if (ExitMI && AllDepKnown) {
220 // If it's a call or a barrier, add dependencies on the defs and uses of
221 // instruction.
222 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
223 const MachineOperand &MO = ExitMI->getOperand(i);
224 if (!MO.isReg() || MO.isDef()) continue;
225 unsigned Reg = MO.getReg();
226 if (Reg == 0) continue;
227
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000228 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000229 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Matthias Braun93563e72015-11-03 01:53:29 +0000230 else if (MO.readsReg()) // ignore undef operands
231 addVRegUseDeps(&ExitSU, i);
Evan Cheng15459b62010-10-23 02:10:46 +0000232 }
233 } else {
234 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000235 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000236 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000237 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
238 SE = BB->succ_end(); SI != SE; ++SI)
Matthias Braund9da1622015-09-09 18:08:03 +0000239 for (const auto &LI : (*SI)->liveins()) {
240 if (!Uses.contains(LI.PhysReg))
241 Uses.insert(PhysRegSUOper(&ExitSU, -1, LI.PhysReg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000242 }
Evan Cheng15459b62010-10-23 02:10:46 +0000243 }
244}
245
Andrew Trickd675a4c2012-02-23 01:52:38 +0000246/// MO is an operand of SU's instruction that defines a physical register. Add
247/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000248void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
249 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000250 assert(MO.isDef() && "expect physreg def");
251
252 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000253 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000254
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000255 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
256 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000257 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000258 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000259 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
260 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000261 if (UseSU == SU)
262 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000263
Andrew Trick07dced62012-10-08 18:54:00 +0000264 // Adjust the dependence latency using operand def/use information,
265 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000266 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000267 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000268 SDep Dep;
269 if (UseOp < 0)
270 Dep = SDep(SU, SDep::Artificial);
271 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000272 // Set the hasPhysRegDefs only for physreg defs that have a use within
273 // the scheduling region.
274 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000275 Dep = SDep(SU, SDep::Data, *Alias);
276 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000277 }
278 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000279 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
280 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000281
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000282 ST.adjustSchedDependency(SU, UseSU, Dep);
283 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000284 }
285 }
286}
287
Andrew Trickdbee9d82012-01-14 02:17:15 +0000288/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
289/// this SUnit to following instructions in the same scheduling region that
290/// depend the physical register referenced at OperIdx.
291void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000292 MachineInstr *MI = SU->getInstr();
293 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000294
295 // Optionally add output and anti dependencies. For anti
296 // dependencies we use a latency of 0 because for a multi-issue
297 // target we want to allow the defining instruction to issue
298 // in the same cycle as the using instruction.
299 // TODO: Using a latency of 1 here for output dependencies assumes
300 // there's no cost for reusing registers.
301 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000302 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
303 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000304 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000305 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000306 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
307 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000308 if (DefSU == &ExitSU)
309 continue;
310 if (DefSU != SU &&
311 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000312 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000313 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000314 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000315 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000316 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000317 Dep.setLatency(
318 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000319 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000320 }
321 }
322 }
323 }
324
Andrew Trickd675a4c2012-02-23 01:52:38 +0000325 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000326 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000327 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
328 // retrieve the existing SUnits list for this register's uses.
329 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000330 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000331 if (RemoveKillFlags)
332 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000333 }
334 else {
Andrew Trickae535612012-08-23 00:39:43 +0000335 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000336 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000337
Andrew Trickd675a4c2012-02-23 01:52:38 +0000338 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000339 if (Uses.contains(Reg))
340 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000341
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000342 if (!MO.isDead()) {
343 Defs.eraseAll(Reg);
344 } else if (SU->isCall) {
345 // Calls will not be reordered because of chain dependencies (see
346 // below). Since call operands are dead, calls may continue to be added
347 // to the DefList making dependence checking quadratic in the size of
348 // the block. Instead, we leave only one call at the back of the
349 // DefList.
350 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
351 Reg2SUnitsMap::iterator B = P.first;
352 Reg2SUnitsMap::iterator I = P.second;
353 for (bool isBegin = I == B; !isBegin; /* empty */) {
354 isBegin = (--I) == B;
355 if (!I->SU->isCall)
356 break;
357 I = Defs.erase(I);
358 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000359 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000360
Andrew Trickd675a4c2012-02-23 01:52:38 +0000361 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000362 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000363 }
364}
365
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000366/// addVRegDefDeps - Add register output and data dependencies from this SUnit
367/// to instructions that occur later in the same scheduling region if they read
368/// from or write to the virtual register defined at OperIdx.
369///
370/// TODO: Hoist loop induction variable increments. This has to be
371/// reevaluated. Generally, IV scheduling should be done before coalescing.
372void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
373 const MachineInstr *MI = SU->getInstr();
374 unsigned Reg = MI->getOperand(OperIdx).getReg();
375
Andrew Trick94053432012-07-28 01:48:15 +0000376 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000377 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000378 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000379 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000380 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000381
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000382 // Add output dependence to the next nearest def of this vreg.
383 //
384 // Unless this definition is dead, the output dependence should be
385 // transitively redundant with antidependencies from this definition's
386 // uses. We're conservative for now until we have a way to guarantee the uses
387 // are not eliminated sometime during scheduling. The output dependence edge
388 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000389 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000390 if (DefI == VRegDefs.end())
391 VRegDefs.insert(VReg2SUnit(Reg, SU));
392 else {
393 SUnit *DefSU = DefI->SU;
394 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000395 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000396 Dep.setLatency(
397 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000398 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000399 }
400 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000401 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000402}
403
Andrew Trick46cc9a42012-02-22 06:08:11 +0000404/// addVRegUseDeps - Add a register data dependency if the instruction that
405/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
406/// register antidependency from this SUnit to instructions that occur later in
407/// the same scheduling region if they write the virtual register.
408///
409/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000410void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000411 MachineInstr *MI = SU->getInstr();
412 unsigned Reg = MI->getOperand(OperIdx).getReg();
413
Andrew Trick8dd26f02013-08-23 17:48:39 +0000414 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000415 VReg2UseMap::iterator UI = VRegUses.find(Reg);
416 for (; UI != VRegUses.end(); ++UI) {
417 if (UI->SU == SU)
418 break;
419 }
420 if (UI == VRegUses.end())
421 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000422
Andrew Trick46cc9a42012-02-22 06:08:11 +0000423 // Lookup this operand's reaching definition.
424 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000425 LiveQueryResult LRQ
426 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000427 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000428
Andrew Trickda6a15d2012-02-23 03:16:24 +0000429 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000430 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000431 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000432 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000433 if (Def) {
434 SUnit *DefSU = getSUnit(Def);
435 if (DefSU) {
436 // The reaching Def lives within this scheduling region.
437 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000438 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000439 // Adjust the dependence latency using operand def/use information, then
440 // allow the target to perform its own adjustments.
441 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000442 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000443
Eric Christopher2c635492015-01-27 07:54:39 +0000444 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trick09650df2012-10-08 18:53:57 +0000445 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000446 SU->addPred(dep);
447 }
448 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000449
450 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000451 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000452 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000453 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000454}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000455
Andrew Trickda01ba32012-05-15 18:59:41 +0000456/// Return true if MI is an instruction we are unable to reason about
457/// (like a call or something with unmodeled side effects).
458static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
Rafael Espindola84921b92015-10-24 23:11:13 +0000459 return MI->isCall() || MI->hasUnmodeledSideEffects() ||
460 (MI->hasOrderedMemoryRef() &&
461 (!MI->mayLoad() || !MI->isInvariantLoad(AA)));
Andrew Trickda01ba32012-05-15 18:59:41 +0000462}
463
464// This MI might have either incomplete info, or known to be unsafe
465// to deal with (i.e. volatile object).
466static inline bool isUnsafeMemoryObject(MachineInstr *MI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000467 const MachineFrameInfo *MFI,
468 const DataLayout &DL) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000469 if (!MI || MI->memoperands_empty())
470 return true;
471 // We purposefully do no check for hasOneMemOperand() here
472 // in hope to trigger an assert downstream in order to
473 // finish implementation.
474 if ((*MI->memoperands_begin())->isVolatile() ||
475 MI->hasUnmodeledSideEffects())
476 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000477
478 if ((*MI->memoperands_begin())->getPseudoValue()) {
479 // Similarly to getUnderlyingObjectForInstr:
480 // For now, ignore PseudoSourceValues which may alias LLVM IR values
481 // because the code that uses this function has no way to cope with
482 // such aliases.
483 return true;
484 }
485
Andrew Trickda01ba32012-05-15 18:59:41 +0000486 const Value *V = (*MI->memoperands_begin())->getValue();
487 if (!V)
488 return true;
489
Hal Finkel66859ae2012-12-10 18:49:16 +0000490 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000491 getUnderlyingObjects(V, Objs, DL);
Sanjay Patelf8c028c2015-05-21 17:04:17 +0000492 for (Value *V : Objs) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000493 // Does this pointer refer to a distinct and identifiable object?
Sanjay Patelf8c028c2015-05-21 17:04:17 +0000494 if (!isIdentifiedObject(V))
Andrew Trickda01ba32012-05-15 18:59:41 +0000495 return true;
496 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000497
498 return false;
499}
500
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000501/// This returns true if the two MIs need a chain edge between them.
Andrew Trickda01ba32012-05-15 18:59:41 +0000502/// If these are not even memory operations, we still may need
503/// chain deps between them. The question really is - could
504/// these two MIs be reordered during scheduling from memory dependency
505/// point of view.
506static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000507 const DataLayout &DL, MachineInstr *MIa,
Andrew Trickda01ba32012-05-15 18:59:41 +0000508 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000509 const MachineFunction *MF = MIa->getParent()->getParent();
510 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
511
Andrew Trickda01ba32012-05-15 18:59:41 +0000512 // Cover a trivial case - no edge is need to itself.
513 if (MIa == MIb)
514 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000515
516 // Let the target decide if memory accesses cannot possibly overlap.
517 if ((MIa->mayLoad() || MIa->mayStore()) &&
518 (MIb->mayLoad() || MIb->mayStore()))
519 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
520 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000521
Hal Finkel2150e3a2014-01-08 21:52:02 +0000522 // FIXME: Need to handle multiple memory operands to support all targets.
523 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
524 return true;
525
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000526 if (isUnsafeMemoryObject(MIa, MFI, DL) || isUnsafeMemoryObject(MIb, MFI, DL))
Andrew Trickda01ba32012-05-15 18:59:41 +0000527 return true;
528
529 // If we are dealing with two "normal" loads, we do not need an edge
530 // between them - they could be reordered.
531 if (!MIa->mayStore() && !MIb->mayStore())
532 return false;
533
534 // To this point analysis is generic. From here on we do need AA.
535 if (!AA)
536 return true;
537
538 MachineMemOperand *MMOa = *MIa->memoperands_begin();
539 MachineMemOperand *MMOb = *MIb->memoperands_begin();
540
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000541 if (!MMOa->getValue() || !MMOb->getValue())
542 return true;
543
Andrew Trickda01ba32012-05-15 18:59:41 +0000544 // The following interface to AA is fashioned after DAGCombiner::isAlias
545 // and operates with MachineMemOperand offset with some important
546 // assumptions:
547 // - LLVM fundamentally assumes flat address spaces.
548 // - MachineOperand offset can *only* result from legalization and
549 // cannot affect queries other than the trivial case of overlap
550 // checking.
551 // - These offsets never wrap and never step outside
552 // of allocated objects.
553 // - There should never be any negative offsets here.
554 //
555 // FIXME: Modify API to hide this math from "user"
556 // FIXME: Even before we go to AA we can reason locally about some
557 // memory objects. It can save compile time, and possibly catch some
558 // corner cases not currently covered.
559
560 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
561 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
562
563 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
564 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
565 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
566
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000567 AliasResult AAResult =
Chandler Carruthac80dc72015-06-17 07:18:54 +0000568 AA->alias(MemoryLocation(MMOa->getValue(), Overlapa,
569 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
570 MemoryLocation(MMOb->getValue(), Overlapb,
571 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000572
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000573 return (AAResult != NoAlias);
Andrew Trickda01ba32012-05-15 18:59:41 +0000574}
575
576/// This recursive function iterates over chain deps of SUb looking for
577/// "latest" node that needs a chain edge to SUa.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000578static unsigned iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
579 const DataLayout &DL, SUnit *SUa, SUnit *SUb,
580 SUnit *ExitSU, unsigned *Depth,
581 SmallPtrSetImpl<const SUnit *> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000582 if (!SUa || !SUb || SUb == ExitSU)
583 return *Depth;
584
585 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000586 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000587 return *Depth;
588 // If there is _some_ dependency already in place, do not
589 // descend any further.
590 // TODO: Need to make sure that if that dependency got eliminated or ignored
591 // for any reason in the future, we would not violate DAG topology.
592 // Currently it does not happen, but makes an implicit assumption about
593 // future implementation.
594 //
595 // Independently, if we encounter node that is some sort of global
596 // object (like a call) we already have full set of dependencies to it
597 // and we can stop descending.
598 if (SUa->isSucc(SUb) ||
599 isGlobalMemoryObject(AA, SUb->getInstr()))
600 return *Depth;
601
602 // If we do need an edge, or we have exceeded depth budget,
603 // add that edge to the predecessors chain of SUb,
604 // and stop descending.
605 if (*Depth > 200 ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000606 MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000607 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000608 return *Depth;
609 }
610 // Track current depth.
611 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000612 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000613 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
614 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000615 if (I->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000616 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000617 return *Depth;
618}
619
620/// This function assumes that "downward" from SU there exist
621/// tail/leaf of already constructed DAG. It iterates downward and
622/// checks whether SU can be aliasing any node dominated
623/// by it.
624static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000625 const DataLayout &DL, SUnit *SU, SUnit *ExitSU,
626 std::set<SUnit *> &CheckList,
Andrew Trick344fb642012-06-13 02:39:03 +0000627 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000628 if (!SU)
629 return;
630
631 SmallPtrSet<const SUnit*, 16> Visited;
632 unsigned Depth = 0;
633
634 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
635 I != IE; ++I) {
636 if (SU == *I)
637 continue;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000638 if (MIsNeedChainEdge(AA, MFI, DL, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000639 SDep Dep(SU, SDep::MayAliasMem);
640 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
641 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000642 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000643
644 // Iterate recursively over all previously added memory chain
645 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000646 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
647 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000648 if (J->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000649 iterateChainSucc(AA, MFI, DL, SU, J->getSUnit(), ExitSU, &Depth,
650 Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000651 }
652}
653
654/// Check whether two objects need a chain edge, if so, add it
655/// otherwise remember the rejected SU.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000656static inline void addChainDependency(AliasAnalysis *AA,
657 const MachineFrameInfo *MFI,
658 const DataLayout &DL, SUnit *SUa,
659 SUnit *SUb, std::set<SUnit *> &RejectList,
660 unsigned TrueMemOrderLatency = 0,
661 bool isNormalMemory = false) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000662 // If this is a false dependency,
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000663 // do not add the edge, but remember the rejected node.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000664 if (MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000665 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
666 Dep.setLatency(TrueMemOrderLatency);
667 SUb->addPred(Dep);
668 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000669 else {
670 // Duplicate entries should be ignored.
671 RejectList.insert(SUb);
672 DEBUG(dbgs() << "\tReject chain dep between SU("
673 << SUa->NodeNum << ") and SU("
674 << SUb->NodeNum << ")\n");
675 }
676}
677
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000678/// Create an SUnit for each real instruction, numbered in top-down topological
Andrew Trick46cc9a42012-02-22 06:08:11 +0000679/// order. The instruction order A < B, implies that no edge exists from B to A.
680///
681/// Map each real instruction to its SUnit.
682///
Andrew Trick8823dec2012-03-14 04:00:41 +0000683/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
684/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
685/// instead of pointers.
686///
687/// MachineScheduler relies on initSUnits numbering the nodes by their order in
688/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000689void ScheduleDAGInstrs::initSUnits() {
690 // We'll be allocating one SUnit for each real instruction in the region,
691 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000692 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000693
Andrew Trick8c207e42012-03-09 04:29:02 +0000694 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000695 MachineInstr *MI = I;
696 if (MI->isDebugValue())
697 continue;
698
Andrew Trick52226d42012-03-07 23:00:49 +0000699 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000700 MISUnitMap[MI] = SU;
701
702 SU->isCall = MI->isCall();
703 SU->isCommutable = MI->isCommutable();
704
705 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000706 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000707
Andrew Trick1766f932014-04-18 17:35:08 +0000708 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
709 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000710 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000711 // entire pipeline. These are identified by BufferSize=0.
712 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000713 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000714 // require the same resources. This is used for in-order execution pipelines
715 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000716 if (SchedModel.hasInstrSchedModel()) {
717 const MCSchedClassDesc *SC = getSchedClass(SU);
718 for (TargetSchedModel::ProcResIter
719 PI = SchedModel.getWriteProcResBegin(SC),
720 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000721 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
722 case 0:
723 SU->hasReservedResource = true;
724 break;
725 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000726 SU->isUnbuffered = true;
727 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000728 default:
729 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000730 }
731 }
732 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000733 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000734}
735
Alp Tokerf907b892013-12-05 05:44:44 +0000736/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000737/// DAG builder is an efficient place to do it because it already visits
738/// operands.
739void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000740 RegPressureTracker *RPTracker,
741 PressureDiffs *PDiffs) {
Eric Christopher2c635492015-01-27 07:54:39 +0000742 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000743 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
744 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000745 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000746
Andrew Trick310190e2013-09-04 21:00:02 +0000747 MISUnitMap.clear();
748 ScheduleDAG::clearDAG();
749
Andrew Trick46cc9a42012-02-22 06:08:11 +0000750 // Create an SUnit for each real instruction.
751 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000752
Andrew Trick1a831342013-08-30 03:49:48 +0000753 if (PDiffs)
754 PDiffs->init(SUnits.size());
755
Dan Gohman3aab10b2008-12-04 01:35:46 +0000756 // We build scheduling units by walking a block's instruction list from bottom
757 // to top.
758
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000759 // Remember where a generic side-effecting instruction is as we proceed.
Craig Topperc0196b12014-04-14 00:51:57 +0000760 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000761
David Goodwind2f9c042009-11-09 19:22:17 +0000762 // Memory references to specific known memory locations are tracked
763 // so that they can be given more precise dependencies. We track
764 // separately the known memory locations that may alias and those
765 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000766 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
767 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000768 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000769
Dale Johannesen49de0602010-03-10 22:13:47 +0000770 // Remove any stale debug info; sometimes BuildSchedGraph is called again
771 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000772 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000773 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000774
Andrew Trickd675a4c2012-02-23 01:52:38 +0000775 assert(Defs.empty() && Uses.empty() &&
776 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000777 Defs.setUniverse(TRI->getNumRegs());
778 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000779
Andrew Trickd458e2d2012-02-22 21:59:00 +0000780 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000781 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000782 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000783 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000784
Andrew Trickd675a4c2012-02-23 01:52:38 +0000785 // Model data dependencies between instructions being scheduled and the
786 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000787 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000788
Dan Gohmanb9543432009-02-10 23:27:53 +0000789 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000790 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000791 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000792 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000793 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000794 if (MI && DbgMI) {
795 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000796 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000797 }
798
Dale Johannesen49de0602010-03-10 22:13:47 +0000799 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000800 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000801 continue;
802 }
Andrew Trick1a831342013-08-30 03:49:48 +0000803 SUnit *SU = MISUnitMap[MI];
804 assert(SU && "No SUnit mapped to this MI");
805
Andrew Trick88639922012-04-24 17:56:43 +0000806 if (RPTracker) {
Craig Topperc0196b12014-04-14 00:51:57 +0000807 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr;
808 RPTracker->recede(/*LiveUses=*/nullptr, PDiff);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000809 assert(RPTracker->getPos() == std::prev(MII) &&
810 "RPTracker can't find MI");
Andrew Trick88639922012-04-24 17:56:43 +0000811 }
Devang Patele5feef02011-06-02 20:07:12 +0000812
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000813 assert(
814 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
815 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000816
Dan Gohman3aab10b2008-12-04 01:35:46 +0000817 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000818 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000819 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
820 const MachineOperand &MO = MI->getOperand(j);
821 if (!MO.isReg()) continue;
822 unsigned Reg = MO.getReg();
823 if (Reg == 0) continue;
824
Andrew Trickdbee9d82012-01-14 02:17:15 +0000825 if (TRI->isPhysicalRegister(Reg))
826 addPhysRegDeps(SU, j);
827 else {
Andrew Trickec256482012-12-18 20:53:01 +0000828 if (MO.isDef()) {
829 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000830 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000831 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000832 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000833 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000834 }
835 }
Andrew Trickec256482012-12-18 20:53:01 +0000836 // If we haven't seen any uses in this scheduling region, create a
837 // dependence edge to ExitSU to model the live-out latency. This is required
838 // for vreg defs with no in-region use, and prefetches with no vreg def.
839 //
840 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
841 // check currently relies on being called before adding chain deps.
842 if (SU->NumSuccs == 0 && SU->Latency > 1
843 && (HasVRegDef || MI->mayLoad())) {
844 SDep Dep(SU, SDep::Artificial);
845 Dep.setLatency(SU->Latency - 1);
846 ExitSU.addPred(Dep);
847 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000848
849 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000850 // Chain dependencies used to enforce memory order should have
851 // latency of 0 (except for true dependency of Store followed by
852 // aliased Load... we estimate that with a single cycle of latency
853 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000854 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
855 // after stack slots are lowered to actual addresses.
856 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
857 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000858 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000859 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000860 // Be conservative with these and add dependencies on all memory
861 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000862 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000863 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000864 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
865 I->second[i]->addPred(SDep(SU, SDep::Barrier));
866 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000867 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000868 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000869 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000870 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
871 SDep Dep(SU, SDep::Barrier);
872 Dep.setLatency(TrueMemOrderLatency);
873 I->second[i]->addPred(Dep);
874 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000875 }
David Goodwind2f9c042009-11-09 19:22:17 +0000876 // Add SU to the barrier chain.
877 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000878 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000879 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000880 // This is a barrier event that acts as a pivotal node in the DAG,
881 // so it is safe to clear list of exposed nodes.
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000882 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000883 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000884 RejectMemNodes.clear();
885 NonAliasMemDefs.clear();
886 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000887
888 // fall-through
889 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +0000890 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000891 if (AliasChain) {
892 unsigned ChainLatency = 0;
893 if (AliasChain->getInstr()->mayLoad())
894 ChainLatency = TrueMemOrderLatency;
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000895 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU, AliasChain,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000896 RejectMemNodes, ChainLatency);
Andrew Trick344fb642012-06-13 02:39:03 +0000897 }
David Goodwind2f9c042009-11-09 19:22:17 +0000898 AliasChain = SU;
899 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000900 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000901 PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000902 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000903 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +0000904 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
905 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000906 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000907 I->second[i], RejectMemNodes);
Hal Finkela228a812014-01-20 14:03:02 +0000908 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000909 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000910 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
911 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000912 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000913 I->second[i], RejectMemNodes, TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000914 }
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000915 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000916 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000917 PendingLoads.clear();
918 AliasMemDefs.clear();
919 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000920 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +0000921 // Add dependence on barrier chain, if needed.
922 // There is no point to check aliasing on barrier event. Even if
923 // SU and barrier _could_ be reordered, they should not. In addition,
924 // we have lost all RejectMemNodes below barrier.
925 if (BarrierChain)
926 BarrierChain->addPred(SDep(SU, SDep::Barrier));
927
Benjamin Kramerfd510922013-06-29 18:41:17 +0000928 UnderlyingObjectsVector Objs;
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000929 getUnderlyingObjectsForInstr(MI, MFI, Objs, MF.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +0000930
931 if (Objs.empty()) {
932 // Treat all other stores conservatively.
933 goto new_alias_chain;
934 }
935
936 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000937 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
938 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000939 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +0000940 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000941 if (ThisMayAlias)
942 MayAlias = true;
943
Dan Gohman3aab10b2008-12-04 01:35:46 +0000944 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000945 // Record the def in MemDefs, first adding a dep if there is
946 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000947 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000948 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000949 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000950 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000951 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000952 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000953 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000954 I->second[i], RejectMemNodes, 0, true);
Hal Finkela228a812014-01-20 14:03:02 +0000955
956 // If we're not using AA, then we only need one store per object.
957 if (!AAForDep)
958 I->second.clear();
959 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000960 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000961 if (ThisMayAlias) {
962 if (!AAForDep)
963 AliasMemDefs[V].clear();
964 AliasMemDefs[V].push_back(SU);
965 } else {
966 if (!AAForDep)
967 NonAliasMemDefs[V].clear();
968 NonAliasMemDefs[V].push_back(SU);
969 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000970 }
971 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000972 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000973 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000974 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000975 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000976 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000977 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000978 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000979 J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000980 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000981 J->second.clear();
982 }
David Goodwin00822aa2009-11-02 17:06:28 +0000983 }
Hal Finkel66859ae2012-12-10 18:49:16 +0000984 if (MayAlias) {
985 // Add dependencies from all the PendingLoads, i.e. loads
986 // with no underlying object.
987 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000988 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000989 PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +0000990 TrueMemOrderLatency);
991 // Add dependence on alias chain, if needed.
992 if (AliasChain)
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000993 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU, AliasChain,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000994 RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +0000995 }
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000996 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Jonas Paulssonafa68132015-02-10 13:03:32 +0000997 TrueMemOrderLatency);
Evan Cheng7f8e5632011-12-07 07:15:52 +0000998 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +0000999 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +00001000 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001001 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001002 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001003 UnderlyingObjectsVector Objs;
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001004 getUnderlyingObjectsForInstr(MI, MFI, Objs, MF.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +00001005
1006 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001007 // A load with no underlying object. Depend on all
1008 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001009 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001010 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001011 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001012 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001013 I->second[i], RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001014
David Goodwind2f9c042009-11-09 19:22:17 +00001015 PendingLoads.push_back(SU);
1016 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001017 } else {
1018 MayAlias = false;
1019 }
1020
Benjamin Kramerfd510922013-06-29 18:41:17 +00001021 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001022 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001023 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001024 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001025
1026 if (ThisMayAlias)
1027 MayAlias = true;
1028
1029 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001030 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001031 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001032 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001033 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1034 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001035 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001036 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001037 I->second[i], RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001038 if (ThisMayAlias)
1039 AliasMemUses[V].push_back(SU);
1040 else
1041 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001042 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001043 if (MayAlias)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001044 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001045 RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001046 // Add dependencies on alias and barrier chains, if needed.
1047 if (MayAlias && AliasChain)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001048 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU, AliasChain,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001049 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) {
Matthias Braund9da1622015-09-09 18:08:03 +00001072 for (const auto &LI : (*SI)->liveins()) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001073 // Repeat, for reg and all subregs.
Matthias Braund9da1622015-09-09 18:08:03 +00001074 for (MCSubRegIterator SubRegs(LI.PhysReg, TRI, /*IncludeSelf=*/true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001075 SubRegs.isValid(); ++SubRegs)
1076 LiveRegs.set(*SubRegs);
1077 }
1078 }
1079}
1080
Pete Cooper300069a2015-05-04 16:52:06 +00001081/// \brief If we change a kill flag on the bundle instruction implicit register
1082/// operands, then we also need to propagate that to any instructions inside
1083/// the bundle which had the same kill state.
1084static void toggleBundleKillFlag(MachineInstr *MI, unsigned Reg,
1085 bool NewKillState) {
1086 if (MI->getOpcode() != TargetOpcode::BUNDLE)
1087 return;
1088
1089 // Walk backwards from the last instruction in the bundle to the first.
1090 // Once we set a kill flag on an instruction, we bail out, as otherwise we
1091 // might set it on too many operands. We will clear as many flags as we
1092 // can though.
Duncan P. N. Exon Smith6e98cd32015-10-09 21:08:19 +00001093 MachineBasicBlock::instr_iterator Begin = MI->getIterator();
Pete Cooper300069a2015-05-04 16:52:06 +00001094 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1095 while (Begin != End) {
Matthias Braune41e1462015-05-29 02:56:46 +00001096 for (MachineOperand &MO : (--End)->operands()) {
1097 if (!MO.isReg() || MO.isDef() || Reg != MO.getReg())
Pete Cooper300069a2015-05-04 16:52:06 +00001098 continue;
1099
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001100 // DEBUG_VALUE nodes do not contribute to code generation and should
1101 // always be ignored. Failure to do so may result in trying to modify
1102 // KILL flags on DEBUG_VALUE nodes, which is distressing.
Matthias Braune41e1462015-05-29 02:56:46 +00001103 if (MO.isDebug())
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001104 continue;
1105
Pete Cooper300069a2015-05-04 16:52:06 +00001106 // If the register has the internal flag then it could be killing an
1107 // internal def of the register. In this case, just skip. We only want
1108 // to toggle the flag on operands visible outside the bundle.
Matthias Braune41e1462015-05-29 02:56:46 +00001109 if (MO.isInternalRead())
Pete Cooper300069a2015-05-04 16:52:06 +00001110 continue;
1111
Matthias Braune41e1462015-05-29 02:56:46 +00001112 if (MO.isKill() == NewKillState)
Pete Cooper300069a2015-05-04 16:52:06 +00001113 continue;
Matthias Braune41e1462015-05-29 02:56:46 +00001114 MO.setIsKill(NewKillState);
Pete Cooper300069a2015-05-04 16:52:06 +00001115 if (NewKillState)
1116 return;
1117 }
1118 }
1119}
1120
Andrew Trick6b104f82013-12-28 21:56:55 +00001121bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1122 // Setting kill flag...
1123 if (!MO.isKill()) {
1124 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001125 toggleBundleKillFlag(MI, MO.getReg(), true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001126 return false;
1127 }
1128
1129 // If MO itself is live, clear the kill flag...
1130 if (LiveRegs.test(MO.getReg())) {
1131 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001132 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001133 return false;
1134 }
1135
1136 // If any subreg of MO is live, then create an imp-def for that
1137 // subreg and keep MO marked as killed.
1138 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001139 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001140 bool AllDead = true;
1141 const unsigned SuperReg = MO.getReg();
1142 MachineInstrBuilder MIB(MF, MI);
1143 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1144 if (LiveRegs.test(*SubRegs)) {
1145 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1146 AllDead = false;
1147 }
1148 }
1149
Pete Cooper300069a2015-05-04 16:52:06 +00001150 if(AllDead) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001151 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001152 toggleBundleKillFlag(MI, MO.getReg(), true);
1153 }
Andrew Trick6b104f82013-12-28 21:56:55 +00001154 return false;
1155}
1156
1157// FIXME: Reuse the LivePhysRegs utility for this.
1158void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1159 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1160
1161 LiveRegs.resize(TRI->getNumRegs());
1162 BitVector killedRegs(TRI->getNumRegs());
1163
1164 startBlockForKills(MBB);
1165
1166 // Examine block from end to start...
1167 unsigned Count = MBB->size();
1168 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1169 I != E; --Count) {
1170 MachineInstr *MI = --I;
1171 if (MI->isDebugValue())
1172 continue;
1173
1174 // Update liveness. Registers that are defed but not used in this
1175 // instruction are now dead. Mark register and all subregs as they
1176 // are completely defined.
1177 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1178 MachineOperand &MO = MI->getOperand(i);
1179 if (MO.isRegMask())
1180 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1181 if (!MO.isReg()) continue;
1182 unsigned Reg = MO.getReg();
1183 if (Reg == 0) continue;
1184 if (!MO.isDef()) continue;
1185 // Ignore two-addr defs.
1186 if (MI->isRegTiedToUseOperand(i)) continue;
1187
1188 // Repeat for reg and all subregs.
1189 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1190 SubRegs.isValid(); ++SubRegs)
1191 LiveRegs.reset(*SubRegs);
1192 }
1193
1194 // Examine all used registers and set/clear kill flag. When a
1195 // register is used multiple times we only set the kill flag on
1196 // the first use. Don't set kill flags on undef operands.
1197 killedRegs.reset();
1198 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1199 MachineOperand &MO = MI->getOperand(i);
1200 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1201 unsigned Reg = MO.getReg();
1202 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1203
1204 bool kill = false;
1205 if (!killedRegs.test(Reg)) {
1206 kill = true;
1207 // A register is not killed if any subregs are live...
1208 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1209 if (LiveRegs.test(*SubRegs)) {
1210 kill = false;
1211 break;
1212 }
1213 }
1214
1215 // If subreg is not live, then register is killed if it became
1216 // live in this instruction
1217 if (kill)
1218 kill = !LiveRegs.test(Reg);
1219 }
1220
1221 if (MO.isKill() != kill) {
1222 DEBUG(dbgs() << "Fixing " << MO << " in ");
1223 // Warning: toggleKillFlag may invalidate MO.
1224 toggleKillFlag(MI, MO);
1225 DEBUG(MI->dump());
Pete Cooper300069a2015-05-04 16:52:06 +00001226 DEBUG(if (MI->getOpcode() == TargetOpcode::BUNDLE) {
Duncan P. N. Exon Smith6e98cd32015-10-09 21:08:19 +00001227 MachineBasicBlock::instr_iterator Begin = MI->getIterator();
Pete Cooper300069a2015-05-04 16:52:06 +00001228 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1229 while (++Begin != End)
1230 DEBUG(Begin->dump());
1231 });
Andrew Trick6b104f82013-12-28 21:56:55 +00001232 }
1233
1234 killedRegs.set(Reg);
1235 }
1236
1237 // Mark any used register (that is not using undef) and subregs as
1238 // now live...
1239 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1240 MachineOperand &MO = MI->getOperand(i);
1241 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1242 unsigned Reg = MO.getReg();
1243 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1244
1245 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1246 SubRegs.isValid(); ++SubRegs)
1247 LiveRegs.set(*SubRegs);
1248 }
1249 }
1250}
1251
Dan Gohman60cb69e2008-11-19 23:18:57 +00001252void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001253#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001254 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001255#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001256}
1257
1258std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001259 std::string s;
1260 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001261 if (SU == &EntrySU)
1262 oss << "<entry>";
1263 else if (SU == &ExitSU)
1264 oss << "<exit>";
1265 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001266 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001267 return oss.str();
1268}
1269
Andrew Trick1b2324d2012-03-07 00:18:22 +00001270/// Return the basic block label. It is not necessarilly unique because a block
1271/// contains multiple scheduling regions. But it is fine for visualization.
1272std::string ScheduleDAGInstrs::getDAGName() const {
1273 return "dag." + BB->getFullName();
1274}
Andrew Trick90f711d2012-10-15 18:02:27 +00001275
Andrew Trick48d392e2012-11-28 05:13:28 +00001276//===----------------------------------------------------------------------===//
1277// SchedDFSResult Implementation
1278//===----------------------------------------------------------------------===//
1279
1280namespace llvm {
1281/// \brief Internal state used to compute SchedDFSResult.
1282class SchedDFSImpl {
1283 SchedDFSResult &R;
1284
1285 /// Join DAG nodes into equivalence classes by their subtree.
1286 IntEqClasses SubtreeClasses;
1287 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1288 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1289
Andrew Trickffc80972013-01-25 06:52:27 +00001290 struct RootData {
1291 unsigned NodeID;
1292 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1293 unsigned SubInstrCount; // Instr count in this tree only, not children.
1294
1295 RootData(unsigned id): NodeID(id),
1296 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1297 SubInstrCount(0) {}
1298
1299 unsigned getSparseSetIndex() const { return NodeID; }
1300 };
1301
1302 SparseSet<RootData> RootSet;
1303
Andrew Trick48d392e2012-11-28 05:13:28 +00001304public:
Andrew Trickffc80972013-01-25 06:52:27 +00001305 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1306 RootSet.setUniverse(R.DFSNodeData.size());
1307 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001308
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001309 /// Return true if this node been visited by the DFS traversal.
1310 ///
1311 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1312 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001313 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001314 return R.DFSNodeData[SU->NodeNum].SubtreeID
1315 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001316 }
1317
1318 /// Initialize this node's instruction count. We don't need to flag the node
1319 /// visited until visitPostorder because the DAG cannot have cycles.
1320 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001321 R.DFSNodeData[SU->NodeNum].InstrCount =
1322 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001323 }
1324
1325 /// Called once for each node after all predecessors are visited. Revisit this
1326 /// node's predecessors and potentially join them now that we know the ILP of
1327 /// the other predecessors.
1328 void visitPostorderNode(const SUnit *SU) {
1329 // Mark this node as the root of a subtree. It may be joined with its
1330 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001331 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1332 RootData RData(SU->NodeNum);
1333 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001334
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001335 // If any predecessors are still in their own subtree, they either cannot be
1336 // joined or are large enough to remain separate. If this parent node's
1337 // total instruction count is not greater than a child subtree by at least
1338 // the subtree limit, then try to join it now since splitting subtrees is
1339 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001340 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001341 for (SUnit::const_pred_iterator
1342 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1343 if (PI->getKind() != SDep::Data)
1344 continue;
1345 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001346 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001347 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001348
1349 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001350 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1351 // If the predecessor's parent is invalid, this is a tree edge and the
1352 // current node is the parent.
1353 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1354 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1355 }
1356 else if (RootSet.count(PredNum)) {
1357 // The predecessor is not a root, but is still in the root set. This
1358 // must be the new parent that it was just joined to. Note that
1359 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1360 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001361 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1362 RootSet.erase(PredNum);
1363 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001364 }
Andrew Trickffc80972013-01-25 06:52:27 +00001365 RootSet[SU->NodeNum] = RData;
1366 }
1367
1368 /// Called once for each tree edge after calling visitPostOrderNode on the
1369 /// predecessor. Increment the parent node's instruction count and
1370 /// preemptively join this subtree to its parent's if it is small enough.
1371 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1372 R.DFSNodeData[Succ->NodeNum].InstrCount
1373 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1374 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001375 }
1376
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001377 /// Add a connection for cross edges.
1378 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001379 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1380 }
1381
1382 /// Set each node's subtree ID to the representative ID and record connections
1383 /// between trees.
1384 void finalize() {
1385 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001386 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1387 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1388 && "number of roots should match trees");
1389 for (SparseSet<RootData>::const_iterator
1390 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1391 unsigned TreeID = SubtreeClasses[RI->NodeID];
1392 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1393 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1394 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001395 // Note that SubInstrCount may be greater than InstrCount if we joined
1396 // subtrees across a cross edge. InstrCount will be attributed to the
1397 // original parent, while SubInstrCount will be attributed to the joined
1398 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001399 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001400 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1401 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1402 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001403 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1404 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001405 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001406 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001407 }
1408 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1409 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1410 I != E; ++I) {
1411 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1412 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1413 if (PredTree == SuccTree)
1414 continue;
1415 unsigned Depth = I->first->getDepth();
1416 addConnection(PredTree, SuccTree, Depth);
1417 addConnection(SuccTree, PredTree, Depth);
1418 }
1419 }
1420
1421protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001422 /// Join the predecessor subtree with the successor that is its DFS
1423 /// parent. Apply some heuristics before joining.
1424 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1425 bool CheckLimit = true) {
1426 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1427
1428 // Check if the predecessor is already joined.
1429 const SUnit *PredSU = PredDep.getSUnit();
1430 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001431 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001432 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001433
1434 // Four is the magic number of successors before a node is considered a
1435 // pinch point.
1436 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001437 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1438 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1439 if (SI->getKind() == SDep::Data) {
1440 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001441 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001442 }
1443 }
Andrew Trickffc80972013-01-25 06:52:27 +00001444 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001445 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001446 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001447 SubtreeClasses.join(Succ->NodeNum, PredNum);
1448 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001449 }
1450
Andrew Trick48d392e2012-11-28 05:13:28 +00001451 /// Called by finalize() to record a connection between trees.
1452 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1453 if (!Depth)
1454 return;
1455
Andrew Trickffc80972013-01-25 06:52:27 +00001456 do {
1457 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1458 R.SubtreeConnections[FromTree];
1459 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1460 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1461 if (I->TreeID == ToTree) {
1462 I->Level = std::max(I->Level, Depth);
1463 return;
1464 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001465 }
Andrew Trickffc80972013-01-25 06:52:27 +00001466 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1467 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1468 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001469 }
1470};
1471} // namespace llvm
1472
Andrew Trick90f711d2012-10-15 18:02:27 +00001473namespace {
1474/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1475class SchedDAGReverseDFS {
1476 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1477public:
1478 bool isComplete() const { return DFSStack.empty(); }
1479
1480 void follow(const SUnit *SU) {
1481 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1482 }
1483 void advance() { ++DFSStack.back().second; }
1484
Andrew Trick48d392e2012-11-28 05:13:28 +00001485 const SDep *backtrack() {
1486 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001487 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001488 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001489
1490 const SUnit *getCurr() const { return DFSStack.back().first; }
1491
1492 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1493
1494 SUnit::const_pred_iterator getPredEnd() const {
1495 return getCurr()->Preds.end();
1496 }
1497};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001498} // anonymous
Andrew Trick90f711d2012-10-15 18:02:27 +00001499
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001500static bool hasDataSucc(const SUnit *SU) {
1501 for (SUnit::const_succ_iterator
1502 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001503 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001504 return true;
1505 }
1506 return false;
1507}
1508
Andrew Trick90f711d2012-10-15 18:02:27 +00001509/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1510/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001511void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001512 if (!IsBottomUp)
1513 llvm_unreachable("Top-down ILP metric is unimplemnted");
1514
Andrew Trick48d392e2012-11-28 05:13:28 +00001515 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001516 for (ArrayRef<SUnit>::const_iterator
1517 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1518 const SUnit *SU = &*SI;
1519 if (Impl.isVisited(SU) || hasDataSucc(SU))
1520 continue;
1521
Andrew Trick48d392e2012-11-28 05:13:28 +00001522 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001523 Impl.visitPreorder(SU);
1524 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001525 for (;;) {
1526 // Traverse the leftmost path as far as possible.
1527 while (DFS.getPred() != DFS.getPredEnd()) {
1528 const SDep &PredDep = *DFS.getPred();
1529 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001530 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001531 if (PredDep.getKind() != SDep::Data
1532 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001533 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001534 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001535 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001536 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001537 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001538 continue;
1539 }
1540 Impl.visitPreorder(PredDep.getSUnit());
1541 DFS.follow(PredDep.getSUnit());
1542 }
1543 // Visit the top of the stack in postorder and backtrack.
1544 const SUnit *Child = DFS.getCurr();
1545 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001546 Impl.visitPostorderNode(Child);
1547 if (PredDep)
1548 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001549 if (DFS.isComplete())
1550 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001551 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001552 }
1553 Impl.finalize();
1554}
1555
1556/// The root of the given SubtreeID was just scheduled. For all subtrees
1557/// connected to this tree, record the depth of the connection so that the
1558/// nearest connected subtrees can be prioritized.
1559void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1560 for (SmallVectorImpl<Connection>::const_iterator
1561 I = SubtreeConnections[SubtreeID].begin(),
1562 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1563 SubtreeConnectLevels[I->TreeID] =
1564 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1565 DEBUG(dbgs() << " Tree: " << I->TreeID
1566 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001567 }
1568}
1569
Alp Tokerd8d510a2014-07-01 21:19:13 +00001570LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001571void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001572 OS << InstrCount << " / " << Length << " = ";
1573 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001574 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001575 else
1576 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001577}
1578
Alp Tokerd8d510a2014-07-01 21:19:13 +00001579LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001580void ILPValue::dump() const {
1581 dbgs() << *this << '\n';
1582}
1583
1584namespace llvm {
1585
Alp Tokerd8d510a2014-07-01 21:19:13 +00001586LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001587raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1588 Val.print(OS);
1589 return OS;
1590}
1591
1592} // namespace llvm