blob: 9aed27f20aa8d3e293e8f69b019e536e5b82838a [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,
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()) {
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000146 // Function that contain tail calls don't have unique PseudoSourceValue
147 // objects. Two PseudoSourceValues might refer to the same or overlapping
148 // locations. The client code calling this function assumes this is not the
149 // case. So return a conservative answer of no known object.
150 if (MFI->hasTailCall())
151 return;
152
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000153 // For now, ignore PseudoSourceValues which may alias LLVM IR values
154 // because the code that uses this function has no way to cope with
155 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000156 if (!PSV->isAliased(MFI)) {
157 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000158 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000159 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000160 return;
161 }
162
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000163 const Value *V = (*MI->memoperands_begin())->getValue();
164 if (!V)
165 return;
166
Hal Finkel66859ae2012-12-10 18:49:16 +0000167 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000168 getUnderlyingObjects(V, Objs, DL);
Andrew Trick24b1c482011-05-05 19:24:06 +0000169
Sanjay Patel490aca92015-05-21 16:00:50 +0000170 for (Value *V : Objs) {
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000171 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000172 Objects.clear();
173 return;
174 }
175
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000176 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000177 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000178}
179
Andrew Trick7405c6d2012-04-20 20:05:21 +0000180void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
181 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000182}
183
Andrew Trick52226d42012-03-07 23:00:49 +0000184void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000185 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000186 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000187}
188
Andrew Trick60cf03e2012-03-07 05:21:52 +0000189/// Initialize the DAG and common scheduler state for the current scheduling
190/// region. This does not actually create the DAG, only clears it. The
191/// scheduling driver may call BuildSchedGraph multiple times per scheduling
192/// region.
193void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
194 MachineBasicBlock::iterator begin,
195 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000196 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000197 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000198 RegionBegin = begin;
199 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000200 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000201}
202
203/// Close the current scheduling region. Don't clear any state in case the
204/// driver wants to refer to the previous scheduling region.
205void ScheduleDAGInstrs::exitRegion() {
206 // Nothing to do.
207}
208
Andrew Trick52226d42012-03-07 23:00:49 +0000209/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000210/// list of instructions being scheduled to scheduling barrier by adding
211/// the exit SU to the register defs and use list. This is because we want to
212/// make sure instructions which define registers that are either used by
213/// the terminator or are live-out are properly scheduled. This is
214/// especially important when the definition latency of the return value(s)
215/// are too high to be hidden by the branch or when the liveout registers
216/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000217void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000218 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000219 ExitSU.setInstr(ExitMI);
220 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000221 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000222 if (ExitMI && AllDepKnown) {
223 // If it's a call or a barrier, add dependencies on the defs and uses of
224 // instruction.
225 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
226 const MachineOperand &MO = ExitMI->getOperand(i);
227 if (!MO.isReg() || MO.isDef()) continue;
228 unsigned Reg = MO.getReg();
229 if (Reg == 0) continue;
230
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000231 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000232 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Tricke6913c72012-03-16 05:04:25 +0000233 else {
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000234 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trickd5953622012-12-01 01:22:44 +0000235 if (MO.readsReg()) // ignore undef operands
236 addVRegUseDeps(&ExitSU, i);
Andrew Tricke6913c72012-03-16 05:04:25 +0000237 }
Evan Cheng15459b62010-10-23 02:10:46 +0000238 }
239 } else {
240 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000241 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000242 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000243 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
244 SE = BB->succ_end(); SI != SE; ++SI)
245 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trick24b1c482011-05-05 19:24:06 +0000246 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengcbdf7e82010-10-27 23:17:17 +0000247 unsigned Reg = *I;
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000248 if (!Uses.contains(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000249 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000250 }
Evan Cheng15459b62010-10-23 02:10:46 +0000251 }
252}
253
Andrew Trickd675a4c2012-02-23 01:52:38 +0000254/// MO is an operand of SU's instruction that defines a physical register. Add
255/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000256void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
257 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000258 assert(MO.isDef() && "expect physreg def");
259
260 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000261 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000262
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000263 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
264 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000265 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000266 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000267 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
268 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000269 if (UseSU == SU)
270 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000271
Andrew Trick07dced62012-10-08 18:54:00 +0000272 // Adjust the dependence latency using operand def/use information,
273 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000274 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000275 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000276 SDep Dep;
277 if (UseOp < 0)
278 Dep = SDep(SU, SDep::Artificial);
279 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000280 // Set the hasPhysRegDefs only for physreg defs that have a use within
281 // the scheduling region.
282 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000283 Dep = SDep(SU, SDep::Data, *Alias);
284 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000285 }
286 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000287 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
288 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000289
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000290 ST.adjustSchedDependency(SU, UseSU, Dep);
291 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000292 }
293 }
294}
295
Andrew Trickdbee9d82012-01-14 02:17:15 +0000296/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
297/// this SUnit to following instructions in the same scheduling region that
298/// depend the physical register referenced at OperIdx.
299void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000300 MachineInstr *MI = SU->getInstr();
301 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000302
303 // Optionally add output and anti dependencies. For anti
304 // dependencies we use a latency of 0 because for a multi-issue
305 // target we want to allow the defining instruction to issue
306 // in the same cycle as the using instruction.
307 // TODO: Using a latency of 1 here for output dependencies assumes
308 // there's no cost for reusing registers.
309 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000310 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
311 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000312 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000313 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000314 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
315 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000316 if (DefSU == &ExitSU)
317 continue;
318 if (DefSU != SU &&
319 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000320 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000321 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000322 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000323 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000324 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000325 Dep.setLatency(
326 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000327 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000328 }
329 }
330 }
331 }
332
Andrew Trickd675a4c2012-02-23 01:52:38 +0000333 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000334 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000335 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
336 // retrieve the existing SUnits list for this register's uses.
337 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000338 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000339 if (RemoveKillFlags)
340 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000341 }
342 else {
Andrew Trickae535612012-08-23 00:39:43 +0000343 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000344 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000345
Andrew Trickd675a4c2012-02-23 01:52:38 +0000346 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000347 if (Uses.contains(Reg))
348 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000349
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000350 if (!MO.isDead()) {
351 Defs.eraseAll(Reg);
352 } else if (SU->isCall) {
353 // Calls will not be reordered because of chain dependencies (see
354 // below). Since call operands are dead, calls may continue to be added
355 // to the DefList making dependence checking quadratic in the size of
356 // the block. Instead, we leave only one call at the back of the
357 // DefList.
358 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
359 Reg2SUnitsMap::iterator B = P.first;
360 Reg2SUnitsMap::iterator I = P.second;
361 for (bool isBegin = I == B; !isBegin; /* empty */) {
362 isBegin = (--I) == B;
363 if (!I->SU->isCall)
364 break;
365 I = Defs.erase(I);
366 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000367 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000368
Andrew Trickd675a4c2012-02-23 01:52:38 +0000369 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000370 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000371 }
372}
373
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000374/// addVRegDefDeps - Add register output and data dependencies from this SUnit
375/// to instructions that occur later in the same scheduling region if they read
376/// from or write to the virtual register defined at OperIdx.
377///
378/// TODO: Hoist loop induction variable increments. This has to be
379/// reevaluated. Generally, IV scheduling should be done before coalescing.
380void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
381 const MachineInstr *MI = SU->getInstr();
382 unsigned Reg = MI->getOperand(OperIdx).getReg();
383
Andrew Trick94053432012-07-28 01:48:15 +0000384 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000385 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000386 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000387 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000388 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000389
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000390 // Add output dependence to the next nearest def of this vreg.
391 //
392 // Unless this definition is dead, the output dependence should be
393 // transitively redundant with antidependencies from this definition's
394 // uses. We're conservative for now until we have a way to guarantee the uses
395 // are not eliminated sometime during scheduling. The output dependence edge
396 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000397 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000398 if (DefI == VRegDefs.end())
399 VRegDefs.insert(VReg2SUnit(Reg, SU));
400 else {
401 SUnit *DefSU = DefI->SU;
402 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000403 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000404 Dep.setLatency(
405 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000406 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000407 }
408 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000409 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000410}
411
Andrew Trick46cc9a42012-02-22 06:08:11 +0000412/// addVRegUseDeps - Add a register data dependency if the instruction that
413/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
414/// register antidependency from this SUnit to instructions that occur later in
415/// the same scheduling region if they write the virtual register.
416///
417/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000418void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000419 MachineInstr *MI = SU->getInstr();
420 unsigned Reg = MI->getOperand(OperIdx).getReg();
421
Andrew Trick8dd26f02013-08-23 17:48:39 +0000422 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000423 VReg2UseMap::iterator UI = VRegUses.find(Reg);
424 for (; UI != VRegUses.end(); ++UI) {
425 if (UI->SU == SU)
426 break;
427 }
428 if (UI == VRegUses.end())
429 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000430
Andrew Trick46cc9a42012-02-22 06:08:11 +0000431 // Lookup this operand's reaching definition.
432 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000433 LiveQueryResult LRQ
434 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000435 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000436
Andrew Trickda6a15d2012-02-23 03:16:24 +0000437 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000438 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000439 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000440 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000441 if (Def) {
442 SUnit *DefSU = getSUnit(Def);
443 if (DefSU) {
444 // The reaching Def lives within this scheduling region.
445 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000446 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000447 // Adjust the dependence latency using operand def/use information, then
448 // allow the target to perform its own adjustments.
449 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000450 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000451
Eric Christopher2c635492015-01-27 07:54:39 +0000452 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trick09650df2012-10-08 18:53:57 +0000453 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000454 SU->addPred(dep);
455 }
456 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000457
458 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000459 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000460 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000461 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000462}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000463
Andrew Trickda01ba32012-05-15 18:59:41 +0000464/// Return true if MI is an instruction we are unable to reason about
465/// (like a call or something with unmodeled side effects).
466static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
467 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesencea3e772012-08-29 21:19:21 +0000468 (MI->hasOrderedMemoryRef() &&
Andrew Trickda01ba32012-05-15 18:59:41 +0000469 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
470 return true;
471 return false;
472}
473
474// This MI might have either incomplete info, or known to be unsafe
475// to deal with (i.e. volatile object).
476static inline bool isUnsafeMemoryObject(MachineInstr *MI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000477 const MachineFrameInfo *MFI,
478 const DataLayout &DL) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000479 if (!MI || MI->memoperands_empty())
480 return true;
481 // We purposefully do no check for hasOneMemOperand() here
482 // in hope to trigger an assert downstream in order to
483 // finish implementation.
484 if ((*MI->memoperands_begin())->isVolatile() ||
485 MI->hasUnmodeledSideEffects())
486 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000487
488 if ((*MI->memoperands_begin())->getPseudoValue()) {
489 // Similarly to getUnderlyingObjectForInstr:
490 // For now, ignore PseudoSourceValues which may alias LLVM IR values
491 // because the code that uses this function has no way to cope with
492 // such aliases.
493 return true;
494 }
495
Andrew Trickda01ba32012-05-15 18:59:41 +0000496 const Value *V = (*MI->memoperands_begin())->getValue();
497 if (!V)
498 return true;
499
Hal Finkel66859ae2012-12-10 18:49:16 +0000500 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000501 getUnderlyingObjects(V, Objs, DL);
Craig Toppere1c1d362013-07-03 05:11:49 +0000502 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
503 IE = Objs.end(); I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000504 // Does this pointer refer to a distinct and identifiable object?
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000505 if (!isIdentifiedObject(*I))
Andrew Trickda01ba32012-05-15 18:59:41 +0000506 return true;
507 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000508
509 return false;
510}
511
512/// This returns true if the two MIs need a chain edge betwee them.
513/// If these are not even memory operations, we still may need
514/// chain deps between them. The question really is - could
515/// these two MIs be reordered during scheduling from memory dependency
516/// point of view.
517static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000518 const DataLayout &DL, MachineInstr *MIa,
Andrew Trickda01ba32012-05-15 18:59:41 +0000519 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000520 const MachineFunction *MF = MIa->getParent()->getParent();
521 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
522
Andrew Trickda01ba32012-05-15 18:59:41 +0000523 // Cover a trivial case - no edge is need to itself.
524 if (MIa == MIb)
525 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000526
527 // Let the target decide if memory accesses cannot possibly overlap.
528 if ((MIa->mayLoad() || MIa->mayStore()) &&
529 (MIb->mayLoad() || MIb->mayStore()))
530 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
531 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000532
Hal Finkel2150e3a2014-01-08 21:52:02 +0000533 // FIXME: Need to handle multiple memory operands to support all targets.
534 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
535 return true;
536
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000537 if (isUnsafeMemoryObject(MIa, MFI, DL) || isUnsafeMemoryObject(MIb, MFI, DL))
Andrew Trickda01ba32012-05-15 18:59:41 +0000538 return true;
539
540 // If we are dealing with two "normal" loads, we do not need an edge
541 // between them - they could be reordered.
542 if (!MIa->mayStore() && !MIb->mayStore())
543 return false;
544
545 // To this point analysis is generic. From here on we do need AA.
546 if (!AA)
547 return true;
548
549 MachineMemOperand *MMOa = *MIa->memoperands_begin();
550 MachineMemOperand *MMOb = *MIb->memoperands_begin();
551
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000552 if (!MMOa->getValue() || !MMOb->getValue())
553 return true;
554
Andrew Trickda01ba32012-05-15 18:59:41 +0000555 // The following interface to AA is fashioned after DAGCombiner::isAlias
556 // and operates with MachineMemOperand offset with some important
557 // assumptions:
558 // - LLVM fundamentally assumes flat address spaces.
559 // - MachineOperand offset can *only* result from legalization and
560 // cannot affect queries other than the trivial case of overlap
561 // checking.
562 // - These offsets never wrap and never step outside
563 // of allocated objects.
564 // - There should never be any negative offsets here.
565 //
566 // FIXME: Modify API to hide this math from "user"
567 // FIXME: Even before we go to AA we can reason locally about some
568 // memory objects. It can save compile time, and possibly catch some
569 // corner cases not currently covered.
570
571 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
572 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
573
574 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
575 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
576 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
577
578 AliasAnalysis::AliasResult AAResult = AA->alias(
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000579 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
Hal Finkelcc39b672014-07-24 12:16:19 +0000580 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000581 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
Hal Finkelcc39b672014-07-24 12:16:19 +0000582 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000583
584 return (AAResult != AliasAnalysis::NoAlias);
585}
586
587/// This recursive function iterates over chain deps of SUb looking for
588/// "latest" node that needs a chain edge to SUa.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000589static unsigned iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
590 const DataLayout &DL, SUnit *SUa, SUnit *SUb,
591 SUnit *ExitSU, unsigned *Depth,
592 SmallPtrSetImpl<const SUnit *> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000593 if (!SUa || !SUb || SUb == ExitSU)
594 return *Depth;
595
596 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000597 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000598 return *Depth;
599 // If there is _some_ dependency already in place, do not
600 // descend any further.
601 // TODO: Need to make sure that if that dependency got eliminated or ignored
602 // for any reason in the future, we would not violate DAG topology.
603 // Currently it does not happen, but makes an implicit assumption about
604 // future implementation.
605 //
606 // Independently, if we encounter node that is some sort of global
607 // object (like a call) we already have full set of dependencies to it
608 // and we can stop descending.
609 if (SUa->isSucc(SUb) ||
610 isGlobalMemoryObject(AA, SUb->getInstr()))
611 return *Depth;
612
613 // If we do need an edge, or we have exceeded depth budget,
614 // add that edge to the predecessors chain of SUb,
615 // and stop descending.
616 if (*Depth > 200 ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000617 MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000618 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000619 return *Depth;
620 }
621 // Track current depth.
622 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000623 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000624 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
625 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000626 if (I->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000627 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000628 return *Depth;
629}
630
631/// This function assumes that "downward" from SU there exist
632/// tail/leaf of already constructed DAG. It iterates downward and
633/// checks whether SU can be aliasing any node dominated
634/// by it.
635static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000636 const DataLayout &DL, SUnit *SU, SUnit *ExitSU,
637 std::set<SUnit *> &CheckList,
Andrew Trick344fb642012-06-13 02:39:03 +0000638 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000639 if (!SU)
640 return;
641
642 SmallPtrSet<const SUnit*, 16> Visited;
643 unsigned Depth = 0;
644
645 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
646 I != IE; ++I) {
647 if (SU == *I)
648 continue;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000649 if (MIsNeedChainEdge(AA, MFI, DL, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000650 SDep Dep(SU, SDep::MayAliasMem);
651 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
652 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000653 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000654
655 // Iterate recursively over all previously added memory chain
656 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000657 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
658 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000659 if (J->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000660 iterateChainSucc(AA, MFI, DL, SU, J->getSUnit(), ExitSU, &Depth,
661 Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000662 }
663}
664
665/// Check whether two objects need a chain edge, if so, add it
666/// otherwise remember the rejected SU.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000667static inline void addChainDependency(AliasAnalysis *AA,
668 const MachineFrameInfo *MFI,
669 const DataLayout &DL, SUnit *SUa,
670 SUnit *SUb, std::set<SUnit *> &RejectList,
671 unsigned TrueMemOrderLatency = 0,
672 bool isNormalMemory = false) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000673 // If this is a false dependency,
674 // do not add the edge, but rememeber the rejected node.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000675 if (MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000676 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
677 Dep.setLatency(TrueMemOrderLatency);
678 SUb->addPred(Dep);
679 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000680 else {
681 // Duplicate entries should be ignored.
682 RejectList.insert(SUb);
683 DEBUG(dbgs() << "\tReject chain dep between SU("
684 << SUa->NodeNum << ") and SU("
685 << SUb->NodeNum << ")\n");
686 }
687}
688
Andrew Trick46cc9a42012-02-22 06:08:11 +0000689/// Create an SUnit for each real instruction, numbered in top-down toplological
690/// order. The instruction order A < B, implies that no edge exists from B to A.
691///
692/// Map each real instruction to its SUnit.
693///
Andrew Trick8823dec2012-03-14 04:00:41 +0000694/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
695/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
696/// instead of pointers.
697///
698/// MachineScheduler relies on initSUnits numbering the nodes by their order in
699/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000700void ScheduleDAGInstrs::initSUnits() {
701 // We'll be allocating one SUnit for each real instruction in the region,
702 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000703 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000704
Andrew Trick8c207e42012-03-09 04:29:02 +0000705 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000706 MachineInstr *MI = I;
707 if (MI->isDebugValue())
708 continue;
709
Andrew Trick52226d42012-03-07 23:00:49 +0000710 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000711 MISUnitMap[MI] = SU;
712
713 SU->isCall = MI->isCall();
714 SU->isCommutable = MI->isCommutable();
715
716 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000717 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000718
Andrew Trick1766f932014-04-18 17:35:08 +0000719 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
720 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000721 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000722 // entire pipeline. These are identified by BufferSize=0.
723 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000724 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000725 // require the same resources. This is used for in-order execution pipelines
726 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000727 if (SchedModel.hasInstrSchedModel()) {
728 const MCSchedClassDesc *SC = getSchedClass(SU);
729 for (TargetSchedModel::ProcResIter
730 PI = SchedModel.getWriteProcResBegin(SC),
731 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000732 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
733 case 0:
734 SU->hasReservedResource = true;
735 break;
736 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000737 SU->isUnbuffered = true;
738 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000739 default:
740 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000741 }
742 }
743 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000744 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000745}
746
Alp Tokerf907b892013-12-05 05:44:44 +0000747/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000748/// DAG builder is an efficient place to do it because it already visits
749/// operands.
750void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000751 RegPressureTracker *RPTracker,
752 PressureDiffs *PDiffs) {
Eric Christopher2c635492015-01-27 07:54:39 +0000753 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000754 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
755 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000756 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000757
Andrew Trick310190e2013-09-04 21:00:02 +0000758 MISUnitMap.clear();
759 ScheduleDAG::clearDAG();
760
Andrew Trick46cc9a42012-02-22 06:08:11 +0000761 // Create an SUnit for each real instruction.
762 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000763
Andrew Trick1a831342013-08-30 03:49:48 +0000764 if (PDiffs)
765 PDiffs->init(SUnits.size());
766
Dan Gohman3aab10b2008-12-04 01:35:46 +0000767 // We build scheduling units by walking a block's instruction list from bottom
768 // to top.
769
David Goodwind2f9c042009-11-09 19:22:17 +0000770 // Remember where a generic side-effecting instruction is as we procede.
Craig Topperc0196b12014-04-14 00:51:57 +0000771 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000772
David Goodwind2f9c042009-11-09 19:22:17 +0000773 // Memory references to specific known memory locations are tracked
774 // so that they can be given more precise dependencies. We track
775 // separately the known memory locations that may alias and those
776 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000777 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
778 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000779 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000780
Dale Johannesen49de0602010-03-10 22:13:47 +0000781 // Remove any stale debug info; sometimes BuildSchedGraph is called again
782 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000783 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000784 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000785
Andrew Trickd675a4c2012-02-23 01:52:38 +0000786 assert(Defs.empty() && Uses.empty() &&
787 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000788 Defs.setUniverse(TRI->getNumRegs());
789 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000790
Andrew Trickd458e2d2012-02-22 21:59:00 +0000791 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000792 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000793 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000794 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000795
Andrew Trickd675a4c2012-02-23 01:52:38 +0000796 // Model data dependencies between instructions being scheduled and the
797 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000798 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000799
Dan Gohmanb9543432009-02-10 23:27:53 +0000800 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000801 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000802 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000803 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000804 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000805 if (MI && DbgMI) {
806 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000807 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000808 }
809
Dale Johannesen49de0602010-03-10 22:13:47 +0000810 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000811 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000812 continue;
813 }
Andrew Trick1a831342013-08-30 03:49:48 +0000814 SUnit *SU = MISUnitMap[MI];
815 assert(SU && "No SUnit mapped to this MI");
816
Andrew Trick88639922012-04-24 17:56:43 +0000817 if (RPTracker) {
Craig Topperc0196b12014-04-14 00:51:57 +0000818 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr;
819 RPTracker->recede(/*LiveUses=*/nullptr, PDiff);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000820 assert(RPTracker->getPos() == std::prev(MII) &&
821 "RPTracker can't find MI");
Andrew Trick88639922012-04-24 17:56:43 +0000822 }
Devang Patele5feef02011-06-02 20:07:12 +0000823
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000824 assert(
825 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
826 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000827
Dan Gohman3aab10b2008-12-04 01:35:46 +0000828 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000829 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000830 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
831 const MachineOperand &MO = MI->getOperand(j);
832 if (!MO.isReg()) continue;
833 unsigned Reg = MO.getReg();
834 if (Reg == 0) continue;
835
Andrew Trickdbee9d82012-01-14 02:17:15 +0000836 if (TRI->isPhysicalRegister(Reg))
837 addPhysRegDeps(SU, j);
838 else {
839 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trickec256482012-12-18 20:53:01 +0000840 if (MO.isDef()) {
841 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000842 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000843 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000844 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000845 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000846 }
847 }
Andrew Trickec256482012-12-18 20:53:01 +0000848 // If we haven't seen any uses in this scheduling region, create a
849 // dependence edge to ExitSU to model the live-out latency. This is required
850 // for vreg defs with no in-region use, and prefetches with no vreg def.
851 //
852 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
853 // check currently relies on being called before adding chain deps.
854 if (SU->NumSuccs == 0 && SU->Latency > 1
855 && (HasVRegDef || MI->mayLoad())) {
856 SDep Dep(SU, SDep::Artificial);
857 Dep.setLatency(SU->Latency - 1);
858 ExitSU.addPred(Dep);
859 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000860
861 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000862 // Chain dependencies used to enforce memory order should have
863 // latency of 0 (except for true dependency of Store followed by
864 // aliased Load... we estimate that with a single cycle of latency
865 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000866 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
867 // after stack slots are lowered to actual addresses.
868 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
869 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000870 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000871 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000872 // Be conservative with these and add dependencies on all memory
873 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000874 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000875 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000876 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
877 I->second[i]->addPred(SDep(SU, SDep::Barrier));
878 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000879 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000880 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000881 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000882 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
883 SDep Dep(SU, SDep::Barrier);
884 Dep.setLatency(TrueMemOrderLatency);
885 I->second[i]->addPred(Dep);
886 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000887 }
David Goodwind2f9c042009-11-09 19:22:17 +0000888 // Add SU to the barrier chain.
889 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000890 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000891 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000892 // This is a barrier event that acts as a pivotal node in the DAG,
893 // so it is safe to clear list of exposed nodes.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000894 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000895 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000896 RejectMemNodes.clear();
897 NonAliasMemDefs.clear();
898 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000899
900 // fall-through
901 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +0000902 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000903 if (AliasChain) {
904 unsigned ChainLatency = 0;
905 if (AliasChain->getInstr()->mayLoad())
906 ChainLatency = TrueMemOrderLatency;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000907 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
908 RejectMemNodes, ChainLatency);
Andrew Trick344fb642012-06-13 02:39:03 +0000909 }
David Goodwind2f9c042009-11-09 19:22:17 +0000910 AliasChain = SU;
911 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000912 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
913 PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000914 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000915 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +0000916 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
917 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000918 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
919 I->second[i], RejectMemNodes);
Hal Finkela228a812014-01-20 14:03:02 +0000920 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000921 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000922 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
923 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000924 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
925 I->second[i], RejectMemNodes, TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000926 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000927 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000928 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000929 PendingLoads.clear();
930 AliasMemDefs.clear();
931 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000932 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +0000933 // Add dependence on barrier chain, if needed.
934 // There is no point to check aliasing on barrier event. Even if
935 // SU and barrier _could_ be reordered, they should not. In addition,
936 // we have lost all RejectMemNodes below barrier.
937 if (BarrierChain)
938 BarrierChain->addPred(SDep(SU, SDep::Barrier));
939
Benjamin Kramerfd510922013-06-29 18:41:17 +0000940 UnderlyingObjectsVector Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000941 getUnderlyingObjectsForInstr(MI, MFI, Objs, *TM.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +0000942
943 if (Objs.empty()) {
944 // Treat all other stores conservatively.
945 goto new_alias_chain;
946 }
947
948 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000949 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
950 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000951 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +0000952 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000953 if (ThisMayAlias)
954 MayAlias = true;
955
Dan Gohman3aab10b2008-12-04 01:35:46 +0000956 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000957 // Record the def in MemDefs, first adding a dep if there is
958 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000959 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000960 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000961 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000962 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000963 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000964 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000965 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
966 I->second[i], RejectMemNodes, 0, true);
Hal Finkela228a812014-01-20 14:03:02 +0000967
968 // If we're not using AA, then we only need one store per object.
969 if (!AAForDep)
970 I->second.clear();
971 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000972 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000973 if (ThisMayAlias) {
974 if (!AAForDep)
975 AliasMemDefs[V].clear();
976 AliasMemDefs[V].push_back(SU);
977 } else {
978 if (!AAForDep)
979 NonAliasMemDefs[V].clear();
980 NonAliasMemDefs[V].push_back(SU);
981 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000982 }
983 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000984 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000985 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000986 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000987 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000988 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000989 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000990 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
991 J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000992 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000993 J->second.clear();
994 }
David Goodwin00822aa2009-11-02 17:06:28 +0000995 }
Hal Finkel66859ae2012-12-10 18:49:16 +0000996 if (MayAlias) {
997 // Add dependencies from all the PendingLoads, i.e. loads
998 // with no underlying object.
999 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001000 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1001 PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +00001002 TrueMemOrderLatency);
1003 // Add dependence on alias chain, if needed.
1004 if (AliasChain)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001005 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
1006 RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +00001007 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001008 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Jonas Paulssonafa68132015-02-10 13:03:32 +00001009 TrueMemOrderLatency);
Evan Cheng7f8e5632011-12-07 07:15:52 +00001010 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +00001011 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +00001012 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001013 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001014 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001015 UnderlyingObjectsVector Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001016 getUnderlyingObjectsForInstr(MI, MFI, Objs, *TM.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +00001017
1018 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001019 // A load with no underlying object. Depend on all
1020 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001021 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001022 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001023 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001024 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1025 I->second[i], RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001026
David Goodwind2f9c042009-11-09 19:22:17 +00001027 PendingLoads.push_back(SU);
1028 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001029 } else {
1030 MayAlias = false;
1031 }
1032
Benjamin Kramerfd510922013-06-29 18:41:17 +00001033 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001034 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001035 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001036 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001037
1038 if (ThisMayAlias)
1039 MayAlias = true;
1040
1041 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001042 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001043 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001044 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001045 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1046 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001047 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001048 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1049 I->second[i], RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001050 if (ThisMayAlias)
1051 AliasMemUses[V].push_back(SU);
1052 else
1053 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001054 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001055 if (MayAlias)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001056 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU,
1057 RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001058 // Add dependencies on alias and barrier chains, if needed.
1059 if (MayAlias && AliasChain)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001060 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
1061 RejectMemNodes);
David Goodwind2f9c042009-11-09 19:22:17 +00001062 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001063 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001064 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001065 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001066 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001067 if (DbgMI)
1068 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001069
Andrew Trickd675a4c2012-02-23 01:52:38 +00001070 Defs.clear();
1071 Uses.clear();
Andrew Trick59ac4fb2012-01-14 02:17:18 +00001072 VRegDefs.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001073 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001074}
1075
Andrew Trick6b104f82013-12-28 21:56:55 +00001076/// \brief Initialize register live-range state for updating kills.
1077void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1078 // Start with no live registers.
1079 LiveRegs.reset();
1080
1081 // Examine the live-in regs of all successors.
1082 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1083 SE = BB->succ_end(); SI != SE; ++SI) {
1084 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
1085 E = (*SI)->livein_end(); I != E; ++I) {
1086 unsigned Reg = *I;
1087 // Repeat, for reg and all subregs.
1088 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1089 SubRegs.isValid(); ++SubRegs)
1090 LiveRegs.set(*SubRegs);
1091 }
1092 }
1093}
1094
Pete Cooper300069a2015-05-04 16:52:06 +00001095/// \brief If we change a kill flag on the bundle instruction implicit register
1096/// operands, then we also need to propagate that to any instructions inside
1097/// the bundle which had the same kill state.
1098static void toggleBundleKillFlag(MachineInstr *MI, unsigned Reg,
1099 bool NewKillState) {
1100 if (MI->getOpcode() != TargetOpcode::BUNDLE)
1101 return;
1102
1103 // Walk backwards from the last instruction in the bundle to the first.
1104 // Once we set a kill flag on an instruction, we bail out, as otherwise we
1105 // might set it on too many operands. We will clear as many flags as we
1106 // can though.
1107 MachineBasicBlock::instr_iterator Begin = MI;
1108 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1109 while (Begin != End) {
1110 for (MIOperands MO(--End); MO.isValid(); ++MO) {
1111 if (!MO->isReg() || MO->isDef() || Reg != MO->getReg())
1112 continue;
1113
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001114 // DEBUG_VALUE nodes do not contribute to code generation and should
1115 // always be ignored. Failure to do so may result in trying to modify
1116 // KILL flags on DEBUG_VALUE nodes, which is distressing.
1117 if (MO->isDebug())
1118 continue;
1119
Pete Cooper300069a2015-05-04 16:52:06 +00001120 // If the register has the internal flag then it could be killing an
1121 // internal def of the register. In this case, just skip. We only want
1122 // to toggle the flag on operands visible outside the bundle.
1123 if (MO->isInternalRead())
1124 continue;
1125
1126 if (MO->isKill() == NewKillState)
1127 continue;
1128 MO->setIsKill(NewKillState);
1129 if (NewKillState)
1130 return;
1131 }
1132 }
1133}
1134
Andrew Trick6b104f82013-12-28 21:56:55 +00001135bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1136 // Setting kill flag...
1137 if (!MO.isKill()) {
1138 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001139 toggleBundleKillFlag(MI, MO.getReg(), true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001140 return false;
1141 }
1142
1143 // If MO itself is live, clear the kill flag...
1144 if (LiveRegs.test(MO.getReg())) {
1145 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001146 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001147 return false;
1148 }
1149
1150 // If any subreg of MO is live, then create an imp-def for that
1151 // subreg and keep MO marked as killed.
1152 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001153 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001154 bool AllDead = true;
1155 const unsigned SuperReg = MO.getReg();
1156 MachineInstrBuilder MIB(MF, MI);
1157 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1158 if (LiveRegs.test(*SubRegs)) {
1159 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1160 AllDead = false;
1161 }
1162 }
1163
Pete Cooper300069a2015-05-04 16:52:06 +00001164 if(AllDead) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001165 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001166 toggleBundleKillFlag(MI, MO.getReg(), true);
1167 }
Andrew Trick6b104f82013-12-28 21:56:55 +00001168 return false;
1169}
1170
1171// FIXME: Reuse the LivePhysRegs utility for this.
1172void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1173 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1174
1175 LiveRegs.resize(TRI->getNumRegs());
1176 BitVector killedRegs(TRI->getNumRegs());
1177
1178 startBlockForKills(MBB);
1179
1180 // Examine block from end to start...
1181 unsigned Count = MBB->size();
1182 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1183 I != E; --Count) {
1184 MachineInstr *MI = --I;
1185 if (MI->isDebugValue())
1186 continue;
1187
1188 // Update liveness. Registers that are defed but not used in this
1189 // instruction are now dead. Mark register and all subregs as they
1190 // are completely defined.
1191 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1192 MachineOperand &MO = MI->getOperand(i);
1193 if (MO.isRegMask())
1194 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1195 if (!MO.isReg()) continue;
1196 unsigned Reg = MO.getReg();
1197 if (Reg == 0) continue;
1198 if (!MO.isDef()) continue;
1199 // Ignore two-addr defs.
1200 if (MI->isRegTiedToUseOperand(i)) continue;
1201
1202 // Repeat for reg and all subregs.
1203 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1204 SubRegs.isValid(); ++SubRegs)
1205 LiveRegs.reset(*SubRegs);
1206 }
1207
1208 // Examine all used registers and set/clear kill flag. When a
1209 // register is used multiple times we only set the kill flag on
1210 // the first use. Don't set kill flags on undef operands.
1211 killedRegs.reset();
1212 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1213 MachineOperand &MO = MI->getOperand(i);
1214 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1215 unsigned Reg = MO.getReg();
1216 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1217
1218 bool kill = false;
1219 if (!killedRegs.test(Reg)) {
1220 kill = true;
1221 // A register is not killed if any subregs are live...
1222 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1223 if (LiveRegs.test(*SubRegs)) {
1224 kill = false;
1225 break;
1226 }
1227 }
1228
1229 // If subreg is not live, then register is killed if it became
1230 // live in this instruction
1231 if (kill)
1232 kill = !LiveRegs.test(Reg);
1233 }
1234
1235 if (MO.isKill() != kill) {
1236 DEBUG(dbgs() << "Fixing " << MO << " in ");
1237 // Warning: toggleKillFlag may invalidate MO.
1238 toggleKillFlag(MI, MO);
1239 DEBUG(MI->dump());
Pete Cooper300069a2015-05-04 16:52:06 +00001240 DEBUG(if (MI->getOpcode() == TargetOpcode::BUNDLE) {
1241 MachineBasicBlock::instr_iterator Begin = MI;
1242 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1243 while (++Begin != End)
1244 DEBUG(Begin->dump());
1245 });
Andrew Trick6b104f82013-12-28 21:56:55 +00001246 }
1247
1248 killedRegs.set(Reg);
1249 }
1250
1251 // Mark any used register (that is not using undef) and subregs as
1252 // now live...
1253 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1254 MachineOperand &MO = MI->getOperand(i);
1255 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1256 unsigned Reg = MO.getReg();
1257 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1258
1259 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1260 SubRegs.isValid(); ++SubRegs)
1261 LiveRegs.set(*SubRegs);
1262 }
1263 }
1264}
1265
Dan Gohman60cb69e2008-11-19 23:18:57 +00001266void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001267#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001268 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001269#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001270}
1271
1272std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001273 std::string s;
1274 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001275 if (SU == &EntrySU)
1276 oss << "<entry>";
1277 else if (SU == &ExitSU)
1278 oss << "<exit>";
1279 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001280 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001281 return oss.str();
1282}
1283
Andrew Trick1b2324d2012-03-07 00:18:22 +00001284/// Return the basic block label. It is not necessarilly unique because a block
1285/// contains multiple scheduling regions. But it is fine for visualization.
1286std::string ScheduleDAGInstrs::getDAGName() const {
1287 return "dag." + BB->getFullName();
1288}
Andrew Trick90f711d2012-10-15 18:02:27 +00001289
Andrew Trick48d392e2012-11-28 05:13:28 +00001290//===----------------------------------------------------------------------===//
1291// SchedDFSResult Implementation
1292//===----------------------------------------------------------------------===//
1293
1294namespace llvm {
1295/// \brief Internal state used to compute SchedDFSResult.
1296class SchedDFSImpl {
1297 SchedDFSResult &R;
1298
1299 /// Join DAG nodes into equivalence classes by their subtree.
1300 IntEqClasses SubtreeClasses;
1301 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1302 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1303
Andrew Trickffc80972013-01-25 06:52:27 +00001304 struct RootData {
1305 unsigned NodeID;
1306 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1307 unsigned SubInstrCount; // Instr count in this tree only, not children.
1308
1309 RootData(unsigned id): NodeID(id),
1310 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1311 SubInstrCount(0) {}
1312
1313 unsigned getSparseSetIndex() const { return NodeID; }
1314 };
1315
1316 SparseSet<RootData> RootSet;
1317
Andrew Trick48d392e2012-11-28 05:13:28 +00001318public:
Andrew Trickffc80972013-01-25 06:52:27 +00001319 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1320 RootSet.setUniverse(R.DFSNodeData.size());
1321 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001322
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001323 /// Return true if this node been visited by the DFS traversal.
1324 ///
1325 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1326 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001327 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001328 return R.DFSNodeData[SU->NodeNum].SubtreeID
1329 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001330 }
1331
1332 /// Initialize this node's instruction count. We don't need to flag the node
1333 /// visited until visitPostorder because the DAG cannot have cycles.
1334 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001335 R.DFSNodeData[SU->NodeNum].InstrCount =
1336 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001337 }
1338
1339 /// Called once for each node after all predecessors are visited. Revisit this
1340 /// node's predecessors and potentially join them now that we know the ILP of
1341 /// the other predecessors.
1342 void visitPostorderNode(const SUnit *SU) {
1343 // Mark this node as the root of a subtree. It may be joined with its
1344 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001345 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1346 RootData RData(SU->NodeNum);
1347 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001348
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001349 // If any predecessors are still in their own subtree, they either cannot be
1350 // joined or are large enough to remain separate. If this parent node's
1351 // total instruction count is not greater than a child subtree by at least
1352 // the subtree limit, then try to join it now since splitting subtrees is
1353 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001354 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001355 for (SUnit::const_pred_iterator
1356 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1357 if (PI->getKind() != SDep::Data)
1358 continue;
1359 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001360 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001361 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001362
1363 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001364 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1365 // If the predecessor's parent is invalid, this is a tree edge and the
1366 // current node is the parent.
1367 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1368 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1369 }
1370 else if (RootSet.count(PredNum)) {
1371 // The predecessor is not a root, but is still in the root set. This
1372 // must be the new parent that it was just joined to. Note that
1373 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1374 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001375 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1376 RootSet.erase(PredNum);
1377 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001378 }
Andrew Trickffc80972013-01-25 06:52:27 +00001379 RootSet[SU->NodeNum] = RData;
1380 }
1381
1382 /// Called once for each tree edge after calling visitPostOrderNode on the
1383 /// predecessor. Increment the parent node's instruction count and
1384 /// preemptively join this subtree to its parent's if it is small enough.
1385 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1386 R.DFSNodeData[Succ->NodeNum].InstrCount
1387 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1388 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001389 }
1390
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001391 /// Add a connection for cross edges.
1392 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001393 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1394 }
1395
1396 /// Set each node's subtree ID to the representative ID and record connections
1397 /// between trees.
1398 void finalize() {
1399 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001400 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1401 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1402 && "number of roots should match trees");
1403 for (SparseSet<RootData>::const_iterator
1404 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1405 unsigned TreeID = SubtreeClasses[RI->NodeID];
1406 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1407 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1408 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001409 // Note that SubInstrCount may be greater than InstrCount if we joined
1410 // subtrees across a cross edge. InstrCount will be attributed to the
1411 // original parent, while SubInstrCount will be attributed to the joined
1412 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001413 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001414 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1415 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1416 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001417 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1418 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001419 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001420 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001421 }
1422 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1423 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1424 I != E; ++I) {
1425 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1426 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1427 if (PredTree == SuccTree)
1428 continue;
1429 unsigned Depth = I->first->getDepth();
1430 addConnection(PredTree, SuccTree, Depth);
1431 addConnection(SuccTree, PredTree, Depth);
1432 }
1433 }
1434
1435protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001436 /// Join the predecessor subtree with the successor that is its DFS
1437 /// parent. Apply some heuristics before joining.
1438 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1439 bool CheckLimit = true) {
1440 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1441
1442 // Check if the predecessor is already joined.
1443 const SUnit *PredSU = PredDep.getSUnit();
1444 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001445 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001446 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001447
1448 // Four is the magic number of successors before a node is considered a
1449 // pinch point.
1450 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001451 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1452 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1453 if (SI->getKind() == SDep::Data) {
1454 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001455 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001456 }
1457 }
Andrew Trickffc80972013-01-25 06:52:27 +00001458 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001459 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001460 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001461 SubtreeClasses.join(Succ->NodeNum, PredNum);
1462 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001463 }
1464
Andrew Trick48d392e2012-11-28 05:13:28 +00001465 /// Called by finalize() to record a connection between trees.
1466 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1467 if (!Depth)
1468 return;
1469
Andrew Trickffc80972013-01-25 06:52:27 +00001470 do {
1471 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1472 R.SubtreeConnections[FromTree];
1473 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1474 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1475 if (I->TreeID == ToTree) {
1476 I->Level = std::max(I->Level, Depth);
1477 return;
1478 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001479 }
Andrew Trickffc80972013-01-25 06:52:27 +00001480 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1481 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1482 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001483 }
1484};
1485} // namespace llvm
1486
Andrew Trick90f711d2012-10-15 18:02:27 +00001487namespace {
1488/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1489class SchedDAGReverseDFS {
1490 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1491public:
1492 bool isComplete() const { return DFSStack.empty(); }
1493
1494 void follow(const SUnit *SU) {
1495 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1496 }
1497 void advance() { ++DFSStack.back().second; }
1498
Andrew Trick48d392e2012-11-28 05:13:28 +00001499 const SDep *backtrack() {
1500 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001501 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001502 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001503
1504 const SUnit *getCurr() const { return DFSStack.back().first; }
1505
1506 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1507
1508 SUnit::const_pred_iterator getPredEnd() const {
1509 return getCurr()->Preds.end();
1510 }
1511};
1512} // anonymous
1513
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001514static bool hasDataSucc(const SUnit *SU) {
1515 for (SUnit::const_succ_iterator
1516 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001517 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001518 return true;
1519 }
1520 return false;
1521}
1522
Andrew Trick90f711d2012-10-15 18:02:27 +00001523/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1524/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001525void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001526 if (!IsBottomUp)
1527 llvm_unreachable("Top-down ILP metric is unimplemnted");
1528
Andrew Trick48d392e2012-11-28 05:13:28 +00001529 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001530 for (ArrayRef<SUnit>::const_iterator
1531 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1532 const SUnit *SU = &*SI;
1533 if (Impl.isVisited(SU) || hasDataSucc(SU))
1534 continue;
1535
Andrew Trick48d392e2012-11-28 05:13:28 +00001536 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001537 Impl.visitPreorder(SU);
1538 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001539 for (;;) {
1540 // Traverse the leftmost path as far as possible.
1541 while (DFS.getPred() != DFS.getPredEnd()) {
1542 const SDep &PredDep = *DFS.getPred();
1543 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001544 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001545 if (PredDep.getKind() != SDep::Data
1546 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001547 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001548 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001549 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001550 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001551 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001552 continue;
1553 }
1554 Impl.visitPreorder(PredDep.getSUnit());
1555 DFS.follow(PredDep.getSUnit());
1556 }
1557 // Visit the top of the stack in postorder and backtrack.
1558 const SUnit *Child = DFS.getCurr();
1559 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001560 Impl.visitPostorderNode(Child);
1561 if (PredDep)
1562 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001563 if (DFS.isComplete())
1564 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001565 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001566 }
1567 Impl.finalize();
1568}
1569
1570/// The root of the given SubtreeID was just scheduled. For all subtrees
1571/// connected to this tree, record the depth of the connection so that the
1572/// nearest connected subtrees can be prioritized.
1573void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1574 for (SmallVectorImpl<Connection>::const_iterator
1575 I = SubtreeConnections[SubtreeID].begin(),
1576 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1577 SubtreeConnectLevels[I->TreeID] =
1578 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1579 DEBUG(dbgs() << " Tree: " << I->TreeID
1580 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001581 }
1582}
1583
Alp Tokerd8d510a2014-07-01 21:19:13 +00001584LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001585void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001586 OS << InstrCount << " / " << Length << " = ";
1587 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001588 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001589 else
1590 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001591}
1592
Alp Tokerd8d510a2014-07-01 21:19:13 +00001593LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001594void ILPValue::dump() const {
1595 dbgs() << *this << '\n';
1596}
1597
1598namespace llvm {
1599
Alp Tokerd8d510a2014-07-01 21:19:13 +00001600LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001601raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1602 Val.print(OS);
1603 return OS;
1604}
1605
1606} // namespace llvm