blob: 17dd729a19a265b1e8dac9c18a3df10e38623c67 [file] [log] [blame]
Dan Gohmanf90d3b02008-12-08 17:50:35 +00001//===---- ScheduleDAGInstrs.cpp - MachineInstr Rescheduling ---------------===//
Dan Gohman60cb69e2008-11-19 23:18:57 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dan Gohmanf90d3b02008-12-08 17:50:35 +000010// This implements the ScheduleDAGInstrs class, which implements re-scheduling
11// of MachineInstrs.
Dan Gohman60cb69e2008-11-19 23:18:57 +000012//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/ScheduleDAGInstrs.h"
16#include "llvm/ADT/MapVector.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallSet.h"
Dan Gohman1ee0d412009-01-30 02:49:14 +000019#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohmana4fcd242010-12-15 20:02:24 +000020#include "llvm/Analysis/ValueTracking.h"
Andrew Trick46cc9a42012-02-22 06:08:11 +000021#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000022#include "llvm/CodeGen/MachineFunctionPass.h"
Andrew Trick6b104f82013-12-28 21:56:55 +000023#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman48b185d2009-09-25 20:36:54 +000024#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman3aab10b2008-12-04 01:35:46 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trick88517f62012-06-06 19:47:35 +000027#include "llvm/CodeGen/RegisterPressure.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000028#include "llvm/CodeGen/ScheduleDFS.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Operator.h"
Evan Cheng8264e272011-06-29 01:14:12 +000030#include "llvm/MC/MCInstrItineraries.h"
Andrew Trickda01ba32012-05-15 18:59:41 +000031#include "llvm/Support/CommandLine.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000032#include "llvm/Support/Debug.h"
Andrew Trick90f711d2012-10-15 18:02:27 +000033#include "llvm/Support/Format.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Target/TargetInstrInfo.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetRegisterInfo.h"
38#include "llvm/Target/TargetSubtargetInfo.h"
Andrew Trickc01b0042013-08-23 17:48:43 +000039#include <queue>
40
Dan Gohman60cb69e2008-11-19 23:18:57 +000041using namespace llvm;
42
Chandler Carruth1b9dde02014-04-22 02:02:50 +000043#define DEBUG_TYPE "misched"
44
Andrew Trickda01ba32012-05-15 18:59:41 +000045static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
46 cl::ZeroOrMore, cl::init(false),
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000047 cl::desc("Enable use of AA during MI DAG construction"));
Andrew Trickda01ba32012-05-15 18:59:41 +000048
Hal Finkeldbebb522014-01-25 19:24:54 +000049static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden,
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000050 cl::init(true), cl::desc("Enable use of TBAA during MI DAG construction"));
Hal Finkeldbebb522014-01-25 19:24:54 +000051
Dan Gohman619ef482009-01-15 19:20:50 +000052ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Alexey Samsonov8968e6d2014-08-20 19:36:05 +000053 const MachineLoopInfo *mli,
Eric Christopher2c635492015-01-27 07:54:39 +000054 bool IsPostRAFlag, bool RemoveKillFlags,
Andrew Trick46cc9a42012-02-22 06:08:11 +000055 LiveIntervals *lis)
Eric Christopher2c635492015-01-27 07:54:39 +000056 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()), LIS(lis),
57 IsPostRA(IsPostRAFlag), RemoveKillFlags(RemoveKillFlags),
58 CanHandleTerminators(false), FirstDbgValue(nullptr) {
Andrew Trick46cc9a42012-02-22 06:08:11 +000059 assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals");
Devang Patele5feef02011-06-02 20:07:12 +000060 DbgValues.clear();
Andrew Trickdb42c6f2012-02-22 06:08:13 +000061 assert(!(IsPostRA && MRI.getNumVirtRegs()) &&
Andrew Trickda84e642012-02-21 04:51:23 +000062 "Virtual registers must be removed prior to PostRA scheduling");
Andrew Trick9b635132012-09-18 18:20:00 +000063
Eric Christopher2c635492015-01-27 07:54:39 +000064 const TargetSubtargetInfo &ST = mf.getSubtarget();
Pete Cooper11759452014-09-02 17:43:54 +000065 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000066}
Dan Gohman60cb69e2008-11-19 23:18:57 +000067
Dan Gohman1ee0d412009-01-30 02:49:14 +000068/// getUnderlyingObjectFromInt - This is the function that does the work of
69/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
70static const Value *getUnderlyingObjectFromInt(const Value *V) {
71 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000072 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000073 // If we find a ptrtoint, we can transfer control back to the
74 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000075 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000076 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000077 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000078 // likely that the other operand will lead us to the base
79 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000080 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000081 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000082 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000083 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000084 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000085 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
86 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000087 return V;
88 V = U->getOperand(0);
89 } else {
90 return V;
91 }
Duncan Sands19d0b472010-02-16 11:11:14 +000092 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +000093 } while (1);
94}
95
Hal Finkel66859ae2012-12-10 18:49:16 +000096/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +000097/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +000098static void getUnderlyingObjects(const Value *V,
Mehdi Aminia28d91d2015-03-10 02:37:25 +000099 SmallVectorImpl<Value *> &Objects,
100 const DataLayout &DL) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000101 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +0000102 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000103 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000104 V = Working.pop_back_val();
105
106 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000107 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
Hal Finkel66859ae2012-12-10 18:49:16 +0000108
Craig Toppere1c1d362013-07-03 05:11:49 +0000109 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000110 I != IE; ++I) {
111 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000112 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000113 continue;
114 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
115 const Value *O =
116 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
117 if (O->getType()->isPointerTy()) {
118 Working.push_back(O);
119 continue;
120 }
121 }
122 Objects.push_back(const_cast<Value *>(V));
123 }
124 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000125}
126
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000127typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
128typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
Benjamin Kramerfd510922013-06-29 18:41:17 +0000129UnderlyingObjectsVector;
130
Hal Finkel66859ae2012-12-10 18:49:16 +0000131/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000132/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000133/// object, return the Value for that object.
134static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000135 const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000136 UnderlyingObjectsVector &Objects,
137 const DataLayout &DL) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000138 if (!MI->hasOneMemOperand() ||
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000139 (!(*MI->memoperands_begin())->getValue() &&
140 !(*MI->memoperands_begin())->getPseudoValue()) ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000141 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000142 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000143
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000144 if (const PseudoSourceValue *PSV =
145 (*MI->memoperands_begin())->getPseudoValue()) {
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000146 // For now, ignore PseudoSourceValues which may alias LLVM IR values
147 // because the code that uses this function has no way to cope with
148 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000149 if (!PSV->isAliased(MFI)) {
150 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000151 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000152 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000153 return;
154 }
155
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000156 const Value *V = (*MI->memoperands_begin())->getValue();
157 if (!V)
158 return;
159
Hal Finkel66859ae2012-12-10 18:49:16 +0000160 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000161 getUnderlyingObjects(V, Objs, DL);
Andrew Trick24b1c482011-05-05 19:24:06 +0000162
Craig Toppere1c1d362013-07-03 05:11:49 +0000163 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
164 I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000165 V = *I;
166
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000167 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000168 Objects.clear();
169 return;
170 }
171
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000172 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000173 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000174}
175
Andrew Trick7405c6d2012-04-20 20:05:21 +0000176void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
177 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000178}
179
Andrew Trick52226d42012-03-07 23:00:49 +0000180void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000181 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000182 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000183}
184
Andrew Trick60cf03e2012-03-07 05:21:52 +0000185/// Initialize the DAG and common scheduler state for the current scheduling
186/// region. This does not actually create the DAG, only clears it. The
187/// scheduling driver may call BuildSchedGraph multiple times per scheduling
188/// region.
189void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
190 MachineBasicBlock::iterator begin,
191 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000192 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000193 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000194 RegionBegin = begin;
195 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000196 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000197}
198
199/// Close the current scheduling region. Don't clear any state in case the
200/// driver wants to refer to the previous scheduling region.
201void ScheduleDAGInstrs::exitRegion() {
202 // Nothing to do.
203}
204
Andrew Trick52226d42012-03-07 23:00:49 +0000205/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000206/// list of instructions being scheduled to scheduling barrier by adding
207/// the exit SU to the register defs and use list. This is because we want to
208/// make sure instructions which define registers that are either used by
209/// the terminator or are live-out are properly scheduled. This is
210/// especially important when the definition latency of the return value(s)
211/// are too high to be hidden by the branch or when the liveout registers
212/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000213void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000214 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000215 ExitSU.setInstr(ExitMI);
216 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000217 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000218 if (ExitMI && AllDepKnown) {
219 // If it's a call or a barrier, add dependencies on the defs and uses of
220 // instruction.
221 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
222 const MachineOperand &MO = ExitMI->getOperand(i);
223 if (!MO.isReg() || MO.isDef()) continue;
224 unsigned Reg = MO.getReg();
225 if (Reg == 0) continue;
226
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000227 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000228 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Tricke6913c72012-03-16 05:04:25 +0000229 else {
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000230 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trickd5953622012-12-01 01:22:44 +0000231 if (MO.readsReg()) // ignore undef operands
232 addVRegUseDeps(&ExitSU, i);
Andrew Tricke6913c72012-03-16 05:04:25 +0000233 }
Evan Cheng15459b62010-10-23 02:10:46 +0000234 }
235 } else {
236 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000237 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000238 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000239 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
240 SE = BB->succ_end(); SI != SE; ++SI)
241 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trick24b1c482011-05-05 19:24:06 +0000242 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengcbdf7e82010-10-27 23:17:17 +0000243 unsigned Reg = *I;
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000244 if (!Uses.contains(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000245 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000246 }
Evan Cheng15459b62010-10-23 02:10:46 +0000247 }
248}
249
Andrew Trickd675a4c2012-02-23 01:52:38 +0000250/// MO is an operand of SU's instruction that defines a physical register. Add
251/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000252void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
253 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000254 assert(MO.isDef() && "expect physreg def");
255
256 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000257 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000258
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000259 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
260 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000261 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000262 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000263 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
264 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000265 if (UseSU == SU)
266 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000267
Andrew Trick07dced62012-10-08 18:54:00 +0000268 // Adjust the dependence latency using operand def/use information,
269 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000270 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000271 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000272 SDep Dep;
273 if (UseOp < 0)
274 Dep = SDep(SU, SDep::Artificial);
275 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000276 // Set the hasPhysRegDefs only for physreg defs that have a use within
277 // the scheduling region.
278 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000279 Dep = SDep(SU, SDep::Data, *Alias);
280 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000281 }
282 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000283 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
284 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000285
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000286 ST.adjustSchedDependency(SU, UseSU, Dep);
287 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000288 }
289 }
290}
291
Andrew Trickdbee9d82012-01-14 02:17:15 +0000292/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
293/// this SUnit to following instructions in the same scheduling region that
294/// depend the physical register referenced at OperIdx.
295void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000296 MachineInstr *MI = SU->getInstr();
297 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000298
299 // Optionally add output and anti dependencies. For anti
300 // dependencies we use a latency of 0 because for a multi-issue
301 // target we want to allow the defining instruction to issue
302 // in the same cycle as the using instruction.
303 // TODO: Using a latency of 1 here for output dependencies assumes
304 // there's no cost for reusing registers.
305 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000306 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
307 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000308 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000309 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000310 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
311 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000312 if (DefSU == &ExitSU)
313 continue;
314 if (DefSU != SU &&
315 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000316 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000317 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000318 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000319 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000320 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000321 Dep.setLatency(
322 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000323 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000324 }
325 }
326 }
327 }
328
Andrew Trickd675a4c2012-02-23 01:52:38 +0000329 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000330 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000331 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
332 // retrieve the existing SUnits list for this register's uses.
333 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000334 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000335 if (RemoveKillFlags)
336 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000337 }
338 else {
Andrew Trickae535612012-08-23 00:39:43 +0000339 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000340 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000341
Andrew Trickd675a4c2012-02-23 01:52:38 +0000342 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000343 if (Uses.contains(Reg))
344 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000345
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000346 if (!MO.isDead()) {
347 Defs.eraseAll(Reg);
348 } else if (SU->isCall) {
349 // Calls will not be reordered because of chain dependencies (see
350 // below). Since call operands are dead, calls may continue to be added
351 // to the DefList making dependence checking quadratic in the size of
352 // the block. Instead, we leave only one call at the back of the
353 // DefList.
354 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
355 Reg2SUnitsMap::iterator B = P.first;
356 Reg2SUnitsMap::iterator I = P.second;
357 for (bool isBegin = I == B; !isBegin; /* empty */) {
358 isBegin = (--I) == B;
359 if (!I->SU->isCall)
360 break;
361 I = Defs.erase(I);
362 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000363 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000364
Andrew Trickd675a4c2012-02-23 01:52:38 +0000365 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000366 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000367 }
368}
369
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000370/// addVRegDefDeps - Add register output and data dependencies from this SUnit
371/// to instructions that occur later in the same scheduling region if they read
372/// from or write to the virtual register defined at OperIdx.
373///
374/// TODO: Hoist loop induction variable increments. This has to be
375/// reevaluated. Generally, IV scheduling should be done before coalescing.
376void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
377 const MachineInstr *MI = SU->getInstr();
378 unsigned Reg = MI->getOperand(OperIdx).getReg();
379
Andrew Trick94053432012-07-28 01:48:15 +0000380 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000381 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000382 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000383 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000384 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000385
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000386 // Add output dependence to the next nearest def of this vreg.
387 //
388 // Unless this definition is dead, the output dependence should be
389 // transitively redundant with antidependencies from this definition's
390 // uses. We're conservative for now until we have a way to guarantee the uses
391 // are not eliminated sometime during scheduling. The output dependence edge
392 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000393 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000394 if (DefI == VRegDefs.end())
395 VRegDefs.insert(VReg2SUnit(Reg, SU));
396 else {
397 SUnit *DefSU = DefI->SU;
398 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000399 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000400 Dep.setLatency(
401 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000402 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000403 }
404 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000405 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000406}
407
Andrew Trick46cc9a42012-02-22 06:08:11 +0000408/// addVRegUseDeps - Add a register data dependency if the instruction that
409/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
410/// register antidependency from this SUnit to instructions that occur later in
411/// the same scheduling region if they write the virtual register.
412///
413/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000414void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000415 MachineInstr *MI = SU->getInstr();
416 unsigned Reg = MI->getOperand(OperIdx).getReg();
417
Andrew Trick8dd26f02013-08-23 17:48:39 +0000418 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000419 VReg2UseMap::iterator UI = VRegUses.find(Reg);
420 for (; UI != VRegUses.end(); ++UI) {
421 if (UI->SU == SU)
422 break;
423 }
424 if (UI == VRegUses.end())
425 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000426
Andrew Trick46cc9a42012-02-22 06:08:11 +0000427 // Lookup this operand's reaching definition.
428 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000429 LiveQueryResult LRQ
430 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000431 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000432
Andrew Trickda6a15d2012-02-23 03:16:24 +0000433 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000434 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000435 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000436 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000437 if (Def) {
438 SUnit *DefSU = getSUnit(Def);
439 if (DefSU) {
440 // The reaching Def lives within this scheduling region.
441 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000442 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000443 // Adjust the dependence latency using operand def/use information, then
444 // allow the target to perform its own adjustments.
445 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000446 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000447
Eric Christopher2c635492015-01-27 07:54:39 +0000448 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trick09650df2012-10-08 18:53:57 +0000449 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000450 SU->addPred(dep);
451 }
452 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000453
454 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000455 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000456 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000457 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000458}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000459
Andrew Trickda01ba32012-05-15 18:59:41 +0000460/// Return true if MI is an instruction we are unable to reason about
461/// (like a call or something with unmodeled side effects).
462static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
463 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesencea3e772012-08-29 21:19:21 +0000464 (MI->hasOrderedMemoryRef() &&
Andrew Trickda01ba32012-05-15 18:59:41 +0000465 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
466 return true;
467 return false;
468}
469
470// This MI might have either incomplete info, or known to be unsafe
471// to deal with (i.e. volatile object).
472static inline bool isUnsafeMemoryObject(MachineInstr *MI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000473 const MachineFrameInfo *MFI,
474 const DataLayout &DL) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000475 if (!MI || MI->memoperands_empty())
476 return true;
477 // We purposefully do no check for hasOneMemOperand() here
478 // in hope to trigger an assert downstream in order to
479 // finish implementation.
480 if ((*MI->memoperands_begin())->isVolatile() ||
481 MI->hasUnmodeledSideEffects())
482 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000483
484 if ((*MI->memoperands_begin())->getPseudoValue()) {
485 // Similarly to getUnderlyingObjectForInstr:
486 // For now, ignore PseudoSourceValues which may alias LLVM IR values
487 // because the code that uses this function has no way to cope with
488 // such aliases.
489 return true;
490 }
491
Andrew Trickda01ba32012-05-15 18:59:41 +0000492 const Value *V = (*MI->memoperands_begin())->getValue();
493 if (!V)
494 return true;
495
Hal Finkel66859ae2012-12-10 18:49:16 +0000496 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000497 getUnderlyingObjects(V, Objs, DL);
Craig Toppere1c1d362013-07-03 05:11:49 +0000498 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
499 IE = Objs.end(); I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000500 // Does this pointer refer to a distinct and identifiable object?
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000501 if (!isIdentifiedObject(*I))
Andrew Trickda01ba32012-05-15 18:59:41 +0000502 return true;
503 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000504
505 return false;
506}
507
508/// This returns true if the two MIs need a chain edge betwee them.
509/// If these are not even memory operations, we still may need
510/// chain deps between them. The question really is - could
511/// these two MIs be reordered during scheduling from memory dependency
512/// point of view.
513static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000514 const DataLayout &DL, MachineInstr *MIa,
Andrew Trickda01ba32012-05-15 18:59:41 +0000515 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000516 const MachineFunction *MF = MIa->getParent()->getParent();
517 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
518
Andrew Trickda01ba32012-05-15 18:59:41 +0000519 // Cover a trivial case - no edge is need to itself.
520 if (MIa == MIb)
521 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000522
523 // Let the target decide if memory accesses cannot possibly overlap.
524 if ((MIa->mayLoad() || MIa->mayStore()) &&
525 (MIb->mayLoad() || MIb->mayStore()))
526 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
527 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000528
Hal Finkel2150e3a2014-01-08 21:52:02 +0000529 // FIXME: Need to handle multiple memory operands to support all targets.
530 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
531 return true;
532
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000533 if (isUnsafeMemoryObject(MIa, MFI, DL) || isUnsafeMemoryObject(MIb, MFI, DL))
Andrew Trickda01ba32012-05-15 18:59:41 +0000534 return true;
535
536 // If we are dealing with two "normal" loads, we do not need an edge
537 // between them - they could be reordered.
538 if (!MIa->mayStore() && !MIb->mayStore())
539 return false;
540
541 // To this point analysis is generic. From here on we do need AA.
542 if (!AA)
543 return true;
544
545 MachineMemOperand *MMOa = *MIa->memoperands_begin();
546 MachineMemOperand *MMOb = *MIb->memoperands_begin();
547
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000548 if (!MMOa->getValue() || !MMOb->getValue())
549 return true;
550
Andrew Trickda01ba32012-05-15 18:59:41 +0000551 // The following interface to AA is fashioned after DAGCombiner::isAlias
552 // and operates with MachineMemOperand offset with some important
553 // assumptions:
554 // - LLVM fundamentally assumes flat address spaces.
555 // - MachineOperand offset can *only* result from legalization and
556 // cannot affect queries other than the trivial case of overlap
557 // checking.
558 // - These offsets never wrap and never step outside
559 // of allocated objects.
560 // - There should never be any negative offsets here.
561 //
562 // FIXME: Modify API to hide this math from "user"
563 // FIXME: Even before we go to AA we can reason locally about some
564 // memory objects. It can save compile time, and possibly catch some
565 // corner cases not currently covered.
566
567 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
568 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
569
570 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
571 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
572 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
573
574 AliasAnalysis::AliasResult AAResult = AA->alias(
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000575 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
Hal Finkelcc39b672014-07-24 12:16:19 +0000576 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000577 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
Hal Finkelcc39b672014-07-24 12:16:19 +0000578 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000579
580 return (AAResult != AliasAnalysis::NoAlias);
581}
582
583/// This recursive function iterates over chain deps of SUb looking for
584/// "latest" node that needs a chain edge to SUa.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000585static unsigned iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
586 const DataLayout &DL, SUnit *SUa, SUnit *SUb,
587 SUnit *ExitSU, unsigned *Depth,
588 SmallPtrSetImpl<const SUnit *> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000589 if (!SUa || !SUb || SUb == ExitSU)
590 return *Depth;
591
592 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000593 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000594 return *Depth;
595 // If there is _some_ dependency already in place, do not
596 // descend any further.
597 // TODO: Need to make sure that if that dependency got eliminated or ignored
598 // for any reason in the future, we would not violate DAG topology.
599 // Currently it does not happen, but makes an implicit assumption about
600 // future implementation.
601 //
602 // Independently, if we encounter node that is some sort of global
603 // object (like a call) we already have full set of dependencies to it
604 // and we can stop descending.
605 if (SUa->isSucc(SUb) ||
606 isGlobalMemoryObject(AA, SUb->getInstr()))
607 return *Depth;
608
609 // If we do need an edge, or we have exceeded depth budget,
610 // add that edge to the predecessors chain of SUb,
611 // and stop descending.
612 if (*Depth > 200 ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000613 MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000614 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000615 return *Depth;
616 }
617 // Track current depth.
618 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000619 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000620 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
621 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000622 if (I->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000623 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000624 return *Depth;
625}
626
627/// This function assumes that "downward" from SU there exist
628/// tail/leaf of already constructed DAG. It iterates downward and
629/// checks whether SU can be aliasing any node dominated
630/// by it.
631static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000632 const DataLayout &DL, SUnit *SU, SUnit *ExitSU,
633 std::set<SUnit *> &CheckList,
Andrew Trick344fb642012-06-13 02:39:03 +0000634 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000635 if (!SU)
636 return;
637
638 SmallPtrSet<const SUnit*, 16> Visited;
639 unsigned Depth = 0;
640
641 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
642 I != IE; ++I) {
643 if (SU == *I)
644 continue;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000645 if (MIsNeedChainEdge(AA, MFI, DL, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000646 SDep Dep(SU, SDep::MayAliasMem);
647 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
648 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000649 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000650
651 // Iterate recursively over all previously added memory chain
652 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000653 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
654 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000655 if (J->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000656 iterateChainSucc(AA, MFI, DL, SU, J->getSUnit(), ExitSU, &Depth,
657 Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000658 }
659}
660
661/// Check whether two objects need a chain edge, if so, add it
662/// otherwise remember the rejected SU.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000663static inline void addChainDependency(AliasAnalysis *AA,
664 const MachineFrameInfo *MFI,
665 const DataLayout &DL, SUnit *SUa,
666 SUnit *SUb, std::set<SUnit *> &RejectList,
667 unsigned TrueMemOrderLatency = 0,
668 bool isNormalMemory = false) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000669 // If this is a false dependency,
670 // do not add the edge, but rememeber the rejected node.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000671 if (MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000672 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
673 Dep.setLatency(TrueMemOrderLatency);
674 SUb->addPred(Dep);
675 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000676 else {
677 // Duplicate entries should be ignored.
678 RejectList.insert(SUb);
679 DEBUG(dbgs() << "\tReject chain dep between SU("
680 << SUa->NodeNum << ") and SU("
681 << SUb->NodeNum << ")\n");
682 }
683}
684
Andrew Trick46cc9a42012-02-22 06:08:11 +0000685/// Create an SUnit for each real instruction, numbered in top-down toplological
686/// order. The instruction order A < B, implies that no edge exists from B to A.
687///
688/// Map each real instruction to its SUnit.
689///
Andrew Trick8823dec2012-03-14 04:00:41 +0000690/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
691/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
692/// instead of pointers.
693///
694/// MachineScheduler relies on initSUnits numbering the nodes by their order in
695/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000696void ScheduleDAGInstrs::initSUnits() {
697 // We'll be allocating one SUnit for each real instruction in the region,
698 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000699 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000700
Andrew Trick8c207e42012-03-09 04:29:02 +0000701 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000702 MachineInstr *MI = I;
703 if (MI->isDebugValue())
704 continue;
705
Andrew Trick52226d42012-03-07 23:00:49 +0000706 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000707 MISUnitMap[MI] = SU;
708
709 SU->isCall = MI->isCall();
710 SU->isCommutable = MI->isCommutable();
711
712 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000713 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000714
Andrew Trick1766f932014-04-18 17:35:08 +0000715 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
716 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000717 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000718 // entire pipeline. These are identified by BufferSize=0.
719 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000720 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000721 // require the same resources. This is used for in-order execution pipelines
722 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000723 if (SchedModel.hasInstrSchedModel()) {
724 const MCSchedClassDesc *SC = getSchedClass(SU);
725 for (TargetSchedModel::ProcResIter
726 PI = SchedModel.getWriteProcResBegin(SC),
727 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000728 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
729 case 0:
730 SU->hasReservedResource = true;
731 break;
732 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000733 SU->isUnbuffered = true;
734 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000735 default:
736 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000737 }
738 }
739 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000740 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000741}
742
Alp Tokerf907b892013-12-05 05:44:44 +0000743/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000744/// DAG builder is an efficient place to do it because it already visits
745/// operands.
746void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000747 RegPressureTracker *RPTracker,
748 PressureDiffs *PDiffs) {
Eric Christopher2c635492015-01-27 07:54:39 +0000749 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000750 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
751 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000752 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000753
Andrew Trick310190e2013-09-04 21:00:02 +0000754 MISUnitMap.clear();
755 ScheduleDAG::clearDAG();
756
Andrew Trick46cc9a42012-02-22 06:08:11 +0000757 // Create an SUnit for each real instruction.
758 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000759
Andrew Trick1a831342013-08-30 03:49:48 +0000760 if (PDiffs)
761 PDiffs->init(SUnits.size());
762
Dan Gohman3aab10b2008-12-04 01:35:46 +0000763 // We build scheduling units by walking a block's instruction list from bottom
764 // to top.
765
David Goodwind2f9c042009-11-09 19:22:17 +0000766 // Remember where a generic side-effecting instruction is as we procede.
Craig Topperc0196b12014-04-14 00:51:57 +0000767 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000768
David Goodwind2f9c042009-11-09 19:22:17 +0000769 // Memory references to specific known memory locations are tracked
770 // so that they can be given more precise dependencies. We track
771 // separately the known memory locations that may alias and those
772 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000773 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
774 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000775 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000776
Dale Johannesen49de0602010-03-10 22:13:47 +0000777 // Remove any stale debug info; sometimes BuildSchedGraph is called again
778 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000779 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000780 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000781
Andrew Trickd675a4c2012-02-23 01:52:38 +0000782 assert(Defs.empty() && Uses.empty() &&
783 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000784 Defs.setUniverse(TRI->getNumRegs());
785 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000786
Andrew Trickd458e2d2012-02-22 21:59:00 +0000787 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000788 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000789 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000790 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000791
Andrew Trickd675a4c2012-02-23 01:52:38 +0000792 // Model data dependencies between instructions being scheduled and the
793 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000794 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000795
Dan Gohmanb9543432009-02-10 23:27:53 +0000796 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000797 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000798 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000799 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000800 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000801 if (MI && DbgMI) {
802 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000803 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000804 }
805
Dale Johannesen49de0602010-03-10 22:13:47 +0000806 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000807 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000808 continue;
809 }
Andrew Trick1a831342013-08-30 03:49:48 +0000810 SUnit *SU = MISUnitMap[MI];
811 assert(SU && "No SUnit mapped to this MI");
812
Andrew Trick88639922012-04-24 17:56:43 +0000813 if (RPTracker) {
Craig Topperc0196b12014-04-14 00:51:57 +0000814 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr;
815 RPTracker->recede(/*LiveUses=*/nullptr, PDiff);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000816 assert(RPTracker->getPos() == std::prev(MII) &&
817 "RPTracker can't find MI");
Andrew Trick88639922012-04-24 17:56:43 +0000818 }
Devang Patele5feef02011-06-02 20:07:12 +0000819
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000820 assert(
821 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
822 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000823
Dan Gohman3aab10b2008-12-04 01:35:46 +0000824 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000825 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000826 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
827 const MachineOperand &MO = MI->getOperand(j);
828 if (!MO.isReg()) continue;
829 unsigned Reg = MO.getReg();
830 if (Reg == 0) continue;
831
Andrew Trickdbee9d82012-01-14 02:17:15 +0000832 if (TRI->isPhysicalRegister(Reg))
833 addPhysRegDeps(SU, j);
834 else {
835 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trickec256482012-12-18 20:53:01 +0000836 if (MO.isDef()) {
837 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000838 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000839 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000840 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000841 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000842 }
843 }
Andrew Trickec256482012-12-18 20:53:01 +0000844 // If we haven't seen any uses in this scheduling region, create a
845 // dependence edge to ExitSU to model the live-out latency. This is required
846 // for vreg defs with no in-region use, and prefetches with no vreg def.
847 //
848 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
849 // check currently relies on being called before adding chain deps.
850 if (SU->NumSuccs == 0 && SU->Latency > 1
851 && (HasVRegDef || MI->mayLoad())) {
852 SDep Dep(SU, SDep::Artificial);
853 Dep.setLatency(SU->Latency - 1);
854 ExitSU.addPred(Dep);
855 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000856
857 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000858 // Chain dependencies used to enforce memory order should have
859 // latency of 0 (except for true dependency of Store followed by
860 // aliased Load... we estimate that with a single cycle of latency
861 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000862 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
863 // after stack slots are lowered to actual addresses.
864 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
865 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000866 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000867 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000868 // Be conservative with these and add dependencies on all memory
869 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000870 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000871 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000872 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
873 I->second[i]->addPred(SDep(SU, SDep::Barrier));
874 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000875 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000876 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000877 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000878 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
879 SDep Dep(SU, SDep::Barrier);
880 Dep.setLatency(TrueMemOrderLatency);
881 I->second[i]->addPred(Dep);
882 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000883 }
David Goodwind2f9c042009-11-09 19:22:17 +0000884 // Add SU to the barrier chain.
885 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000886 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000887 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000888 // This is a barrier event that acts as a pivotal node in the DAG,
889 // so it is safe to clear list of exposed nodes.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000890 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000891 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000892 RejectMemNodes.clear();
893 NonAliasMemDefs.clear();
894 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000895
896 // fall-through
897 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +0000898 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000899 if (AliasChain) {
900 unsigned ChainLatency = 0;
901 if (AliasChain->getInstr()->mayLoad())
902 ChainLatency = TrueMemOrderLatency;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000903 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
904 RejectMemNodes, ChainLatency);
Andrew Trick344fb642012-06-13 02:39:03 +0000905 }
David Goodwind2f9c042009-11-09 19:22:17 +0000906 AliasChain = SU;
907 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000908 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
909 PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000910 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000911 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +0000912 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
913 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000914 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
915 I->second[i], RejectMemNodes);
Hal Finkela228a812014-01-20 14:03:02 +0000916 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000917 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000918 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
919 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000920 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
921 I->second[i], RejectMemNodes, TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000922 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000923 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000924 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000925 PendingLoads.clear();
926 AliasMemDefs.clear();
927 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000928 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +0000929 // Add dependence on barrier chain, if needed.
930 // There is no point to check aliasing on barrier event. Even if
931 // SU and barrier _could_ be reordered, they should not. In addition,
932 // we have lost all RejectMemNodes below barrier.
933 if (BarrierChain)
934 BarrierChain->addPred(SDep(SU, SDep::Barrier));
935
Benjamin Kramerfd510922013-06-29 18:41:17 +0000936 UnderlyingObjectsVector Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000937 getUnderlyingObjectsForInstr(MI, MFI, Objs, *TM.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +0000938
939 if (Objs.empty()) {
940 // Treat all other stores conservatively.
941 goto new_alias_chain;
942 }
943
944 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000945 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
946 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000947 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +0000948 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000949 if (ThisMayAlias)
950 MayAlias = true;
951
Dan Gohman3aab10b2008-12-04 01:35:46 +0000952 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000953 // Record the def in MemDefs, first adding a dep if there is
954 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000955 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000956 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000957 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000958 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000959 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000960 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000961 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
962 I->second[i], RejectMemNodes, 0, true);
Hal Finkela228a812014-01-20 14:03:02 +0000963
964 // If we're not using AA, then we only need one store per object.
965 if (!AAForDep)
966 I->second.clear();
967 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000968 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000969 if (ThisMayAlias) {
970 if (!AAForDep)
971 AliasMemDefs[V].clear();
972 AliasMemDefs[V].push_back(SU);
973 } else {
974 if (!AAForDep)
975 NonAliasMemDefs[V].clear();
976 NonAliasMemDefs[V].push_back(SU);
977 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000978 }
979 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000980 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000981 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000982 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000983 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000984 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000985 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000986 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
987 J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000988 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000989 J->second.clear();
990 }
David Goodwin00822aa2009-11-02 17:06:28 +0000991 }
Hal Finkel66859ae2012-12-10 18:49:16 +0000992 if (MayAlias) {
993 // Add dependencies from all the PendingLoads, i.e. loads
994 // with no underlying object.
995 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000996 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
997 PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +0000998 TrueMemOrderLatency);
999 // Add dependence on alias chain, if needed.
1000 if (AliasChain)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001001 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
1002 RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +00001003 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001004 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Jonas Paulssonafa68132015-02-10 13:03:32 +00001005 TrueMemOrderLatency);
Evan Cheng7f8e5632011-12-07 07:15:52 +00001006 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +00001007 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +00001008 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001009 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001010 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001011 UnderlyingObjectsVector Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001012 getUnderlyingObjectsForInstr(MI, MFI, Objs, *TM.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +00001013
1014 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001015 // A load with no underlying object. Depend on all
1016 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001017 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001018 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001019 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001020 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1021 I->second[i], RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001022
David Goodwind2f9c042009-11-09 19:22:17 +00001023 PendingLoads.push_back(SU);
1024 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001025 } else {
1026 MayAlias = false;
1027 }
1028
Benjamin Kramerfd510922013-06-29 18:41:17 +00001029 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001030 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001031 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001032 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001033
1034 if (ThisMayAlias)
1035 MayAlias = true;
1036
1037 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001038 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001039 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001040 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001041 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1042 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001043 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001044 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1045 I->second[i], RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001046 if (ThisMayAlias)
1047 AliasMemUses[V].push_back(SU);
1048 else
1049 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001050 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001051 if (MayAlias)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001052 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU,
1053 RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001054 // Add dependencies on alias and barrier chains, if needed.
1055 if (MayAlias && AliasChain)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001056 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
1057 RejectMemNodes);
David Goodwind2f9c042009-11-09 19:22:17 +00001058 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001059 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001060 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001061 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001062 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001063 if (DbgMI)
1064 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001065
Andrew Trickd675a4c2012-02-23 01:52:38 +00001066 Defs.clear();
1067 Uses.clear();
Andrew Trick59ac4fb2012-01-14 02:17:18 +00001068 VRegDefs.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001069 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001070}
1071
Andrew Trick6b104f82013-12-28 21:56:55 +00001072/// \brief Initialize register live-range state for updating kills.
1073void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1074 // Start with no live registers.
1075 LiveRegs.reset();
1076
1077 // Examine the live-in regs of all successors.
1078 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1079 SE = BB->succ_end(); SI != SE; ++SI) {
1080 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
1081 E = (*SI)->livein_end(); I != E; ++I) {
1082 unsigned Reg = *I;
1083 // Repeat, for reg and all subregs.
1084 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1085 SubRegs.isValid(); ++SubRegs)
1086 LiveRegs.set(*SubRegs);
1087 }
1088 }
1089}
1090
1091bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1092 // Setting kill flag...
1093 if (!MO.isKill()) {
1094 MO.setIsKill(true);
1095 return false;
1096 }
1097
1098 // If MO itself is live, clear the kill flag...
1099 if (LiveRegs.test(MO.getReg())) {
1100 MO.setIsKill(false);
1101 return false;
1102 }
1103
1104 // If any subreg of MO is live, then create an imp-def for that
1105 // subreg and keep MO marked as killed.
1106 MO.setIsKill(false);
1107 bool AllDead = true;
1108 const unsigned SuperReg = MO.getReg();
1109 MachineInstrBuilder MIB(MF, MI);
1110 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1111 if (LiveRegs.test(*SubRegs)) {
1112 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1113 AllDead = false;
1114 }
1115 }
1116
1117 if(AllDead)
1118 MO.setIsKill(true);
1119 return false;
1120}
1121
1122// FIXME: Reuse the LivePhysRegs utility for this.
1123void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1124 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1125
1126 LiveRegs.resize(TRI->getNumRegs());
1127 BitVector killedRegs(TRI->getNumRegs());
1128
1129 startBlockForKills(MBB);
1130
1131 // Examine block from end to start...
1132 unsigned Count = MBB->size();
1133 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1134 I != E; --Count) {
1135 MachineInstr *MI = --I;
1136 if (MI->isDebugValue())
1137 continue;
1138
1139 // Update liveness. Registers that are defed but not used in this
1140 // instruction are now dead. Mark register and all subregs as they
1141 // are completely defined.
1142 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1143 MachineOperand &MO = MI->getOperand(i);
1144 if (MO.isRegMask())
1145 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1146 if (!MO.isReg()) continue;
1147 unsigned Reg = MO.getReg();
1148 if (Reg == 0) continue;
1149 if (!MO.isDef()) continue;
1150 // Ignore two-addr defs.
1151 if (MI->isRegTiedToUseOperand(i)) continue;
1152
1153 // Repeat for reg and all subregs.
1154 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1155 SubRegs.isValid(); ++SubRegs)
1156 LiveRegs.reset(*SubRegs);
1157 }
1158
1159 // Examine all used registers and set/clear kill flag. When a
1160 // register is used multiple times we only set the kill flag on
1161 // the first use. Don't set kill flags on undef operands.
1162 killedRegs.reset();
1163 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1164 MachineOperand &MO = MI->getOperand(i);
1165 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1166 unsigned Reg = MO.getReg();
1167 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1168
1169 bool kill = false;
1170 if (!killedRegs.test(Reg)) {
1171 kill = true;
1172 // A register is not killed if any subregs are live...
1173 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1174 if (LiveRegs.test(*SubRegs)) {
1175 kill = false;
1176 break;
1177 }
1178 }
1179
1180 // If subreg is not live, then register is killed if it became
1181 // live in this instruction
1182 if (kill)
1183 kill = !LiveRegs.test(Reg);
1184 }
1185
1186 if (MO.isKill() != kill) {
1187 DEBUG(dbgs() << "Fixing " << MO << " in ");
1188 // Warning: toggleKillFlag may invalidate MO.
1189 toggleKillFlag(MI, MO);
1190 DEBUG(MI->dump());
1191 }
1192
1193 killedRegs.set(Reg);
1194 }
1195
1196 // Mark any used register (that is not using undef) and subregs as
1197 // now live...
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 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1205 SubRegs.isValid(); ++SubRegs)
1206 LiveRegs.set(*SubRegs);
1207 }
1208 }
1209}
1210
Dan Gohman60cb69e2008-11-19 23:18:57 +00001211void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001212#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001213 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001214#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001215}
1216
1217std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001218 std::string s;
1219 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001220 if (SU == &EntrySU)
1221 oss << "<entry>";
1222 else if (SU == &ExitSU)
1223 oss << "<exit>";
1224 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001225 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001226 return oss.str();
1227}
1228
Andrew Trick1b2324d2012-03-07 00:18:22 +00001229/// Return the basic block label. It is not necessarilly unique because a block
1230/// contains multiple scheduling regions. But it is fine for visualization.
1231std::string ScheduleDAGInstrs::getDAGName() const {
1232 return "dag." + BB->getFullName();
1233}
Andrew Trick90f711d2012-10-15 18:02:27 +00001234
Andrew Trick48d392e2012-11-28 05:13:28 +00001235//===----------------------------------------------------------------------===//
1236// SchedDFSResult Implementation
1237//===----------------------------------------------------------------------===//
1238
1239namespace llvm {
1240/// \brief Internal state used to compute SchedDFSResult.
1241class SchedDFSImpl {
1242 SchedDFSResult &R;
1243
1244 /// Join DAG nodes into equivalence classes by their subtree.
1245 IntEqClasses SubtreeClasses;
1246 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1247 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1248
Andrew Trickffc80972013-01-25 06:52:27 +00001249 struct RootData {
1250 unsigned NodeID;
1251 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1252 unsigned SubInstrCount; // Instr count in this tree only, not children.
1253
1254 RootData(unsigned id): NodeID(id),
1255 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1256 SubInstrCount(0) {}
1257
1258 unsigned getSparseSetIndex() const { return NodeID; }
1259 };
1260
1261 SparseSet<RootData> RootSet;
1262
Andrew Trick48d392e2012-11-28 05:13:28 +00001263public:
Andrew Trickffc80972013-01-25 06:52:27 +00001264 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1265 RootSet.setUniverse(R.DFSNodeData.size());
1266 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001267
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001268 /// Return true if this node been visited by the DFS traversal.
1269 ///
1270 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1271 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001272 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001273 return R.DFSNodeData[SU->NodeNum].SubtreeID
1274 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001275 }
1276
1277 /// Initialize this node's instruction count. We don't need to flag the node
1278 /// visited until visitPostorder because the DAG cannot have cycles.
1279 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001280 R.DFSNodeData[SU->NodeNum].InstrCount =
1281 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001282 }
1283
1284 /// Called once for each node after all predecessors are visited. Revisit this
1285 /// node's predecessors and potentially join them now that we know the ILP of
1286 /// the other predecessors.
1287 void visitPostorderNode(const SUnit *SU) {
1288 // Mark this node as the root of a subtree. It may be joined with its
1289 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001290 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1291 RootData RData(SU->NodeNum);
1292 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001293
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001294 // If any predecessors are still in their own subtree, they either cannot be
1295 // joined or are large enough to remain separate. If this parent node's
1296 // total instruction count is not greater than a child subtree by at least
1297 // the subtree limit, then try to join it now since splitting subtrees is
1298 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001299 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001300 for (SUnit::const_pred_iterator
1301 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1302 if (PI->getKind() != SDep::Data)
1303 continue;
1304 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001305 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001306 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001307
1308 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001309 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1310 // If the predecessor's parent is invalid, this is a tree edge and the
1311 // current node is the parent.
1312 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1313 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1314 }
1315 else if (RootSet.count(PredNum)) {
1316 // The predecessor is not a root, but is still in the root set. This
1317 // must be the new parent that it was just joined to. Note that
1318 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1319 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001320 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1321 RootSet.erase(PredNum);
1322 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001323 }
Andrew Trickffc80972013-01-25 06:52:27 +00001324 RootSet[SU->NodeNum] = RData;
1325 }
1326
1327 /// Called once for each tree edge after calling visitPostOrderNode on the
1328 /// predecessor. Increment the parent node's instruction count and
1329 /// preemptively join this subtree to its parent's if it is small enough.
1330 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1331 R.DFSNodeData[Succ->NodeNum].InstrCount
1332 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1333 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001334 }
1335
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001336 /// Add a connection for cross edges.
1337 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001338 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1339 }
1340
1341 /// Set each node's subtree ID to the representative ID and record connections
1342 /// between trees.
1343 void finalize() {
1344 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001345 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1346 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1347 && "number of roots should match trees");
1348 for (SparseSet<RootData>::const_iterator
1349 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1350 unsigned TreeID = SubtreeClasses[RI->NodeID];
1351 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1352 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1353 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001354 // Note that SubInstrCount may be greater than InstrCount if we joined
1355 // subtrees across a cross edge. InstrCount will be attributed to the
1356 // original parent, while SubInstrCount will be attributed to the joined
1357 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001358 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001359 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1360 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1361 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001362 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1363 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001364 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001365 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001366 }
1367 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1368 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1369 I != E; ++I) {
1370 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1371 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1372 if (PredTree == SuccTree)
1373 continue;
1374 unsigned Depth = I->first->getDepth();
1375 addConnection(PredTree, SuccTree, Depth);
1376 addConnection(SuccTree, PredTree, Depth);
1377 }
1378 }
1379
1380protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001381 /// Join the predecessor subtree with the successor that is its DFS
1382 /// parent. Apply some heuristics before joining.
1383 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1384 bool CheckLimit = true) {
1385 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1386
1387 // Check if the predecessor is already joined.
1388 const SUnit *PredSU = PredDep.getSUnit();
1389 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001390 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001391 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001392
1393 // Four is the magic number of successors before a node is considered a
1394 // pinch point.
1395 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001396 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1397 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1398 if (SI->getKind() == SDep::Data) {
1399 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001400 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001401 }
1402 }
Andrew Trickffc80972013-01-25 06:52:27 +00001403 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001404 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001405 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001406 SubtreeClasses.join(Succ->NodeNum, PredNum);
1407 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001408 }
1409
Andrew Trick48d392e2012-11-28 05:13:28 +00001410 /// Called by finalize() to record a connection between trees.
1411 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1412 if (!Depth)
1413 return;
1414
Andrew Trickffc80972013-01-25 06:52:27 +00001415 do {
1416 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1417 R.SubtreeConnections[FromTree];
1418 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1419 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1420 if (I->TreeID == ToTree) {
1421 I->Level = std::max(I->Level, Depth);
1422 return;
1423 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001424 }
Andrew Trickffc80972013-01-25 06:52:27 +00001425 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1426 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1427 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001428 }
1429};
1430} // namespace llvm
1431
Andrew Trick90f711d2012-10-15 18:02:27 +00001432namespace {
1433/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1434class SchedDAGReverseDFS {
1435 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1436public:
1437 bool isComplete() const { return DFSStack.empty(); }
1438
1439 void follow(const SUnit *SU) {
1440 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1441 }
1442 void advance() { ++DFSStack.back().second; }
1443
Andrew Trick48d392e2012-11-28 05:13:28 +00001444 const SDep *backtrack() {
1445 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001446 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001447 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001448
1449 const SUnit *getCurr() const { return DFSStack.back().first; }
1450
1451 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1452
1453 SUnit::const_pred_iterator getPredEnd() const {
1454 return getCurr()->Preds.end();
1455 }
1456};
1457} // anonymous
1458
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001459static bool hasDataSucc(const SUnit *SU) {
1460 for (SUnit::const_succ_iterator
1461 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001462 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001463 return true;
1464 }
1465 return false;
1466}
1467
Andrew Trick90f711d2012-10-15 18:02:27 +00001468/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1469/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001470void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001471 if (!IsBottomUp)
1472 llvm_unreachable("Top-down ILP metric is unimplemnted");
1473
Andrew Trick48d392e2012-11-28 05:13:28 +00001474 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001475 for (ArrayRef<SUnit>::const_iterator
1476 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1477 const SUnit *SU = &*SI;
1478 if (Impl.isVisited(SU) || hasDataSucc(SU))
1479 continue;
1480
Andrew Trick48d392e2012-11-28 05:13:28 +00001481 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001482 Impl.visitPreorder(SU);
1483 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001484 for (;;) {
1485 // Traverse the leftmost path as far as possible.
1486 while (DFS.getPred() != DFS.getPredEnd()) {
1487 const SDep &PredDep = *DFS.getPred();
1488 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001489 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001490 if (PredDep.getKind() != SDep::Data
1491 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001492 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001493 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001494 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001495 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001496 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001497 continue;
1498 }
1499 Impl.visitPreorder(PredDep.getSUnit());
1500 DFS.follow(PredDep.getSUnit());
1501 }
1502 // Visit the top of the stack in postorder and backtrack.
1503 const SUnit *Child = DFS.getCurr();
1504 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001505 Impl.visitPostorderNode(Child);
1506 if (PredDep)
1507 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001508 if (DFS.isComplete())
1509 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001510 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001511 }
1512 Impl.finalize();
1513}
1514
1515/// The root of the given SubtreeID was just scheduled. For all subtrees
1516/// connected to this tree, record the depth of the connection so that the
1517/// nearest connected subtrees can be prioritized.
1518void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1519 for (SmallVectorImpl<Connection>::const_iterator
1520 I = SubtreeConnections[SubtreeID].begin(),
1521 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1522 SubtreeConnectLevels[I->TreeID] =
1523 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1524 DEBUG(dbgs() << " Tree: " << I->TreeID
1525 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001526 }
1527}
1528
Alp Tokerd8d510a2014-07-01 21:19:13 +00001529LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001530void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001531 OS << InstrCount << " / " << Length << " = ";
1532 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001533 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001534 else
1535 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001536}
1537
Alp Tokerd8d510a2014-07-01 21:19:13 +00001538LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001539void ILPValue::dump() const {
1540 dbgs() << *this << '\n';
1541}
1542
1543namespace llvm {
1544
Alp Tokerd8d510a2014-07-01 21:19:13 +00001545LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001546raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1547 Val.print(OS);
1548 return OS;
1549}
1550
1551} // namespace llvm