blob: 583ed38f313ebdfd917352481c7481626ac4b007 [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"
Evan Cheng8264e272011-06-29 01:14:12 +000031#include "llvm/MC/MCInstrItineraries.h"
Andrew Trickda01ba32012-05-15 18:59:41 +000032#include "llvm/Support/CommandLine.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000033#include "llvm/Support/Debug.h"
Andrew Trick90f711d2012-10-15 18:02:27 +000034#include "llvm/Support/Format.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000035#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Target/TargetInstrInfo.h"
37#include "llvm/Target/TargetMachine.h"
38#include "llvm/Target/TargetRegisterInfo.h"
39#include "llvm/Target/TargetSubtargetInfo.h"
Andrew Trickc01b0042013-08-23 17:48:43 +000040#include <queue>
41
Dan Gohman60cb69e2008-11-19 23:18:57 +000042using namespace llvm;
43
Chandler Carruth1b9dde02014-04-22 02:02:50 +000044#define DEBUG_TYPE "misched"
45
Andrew Trickda01ba32012-05-15 18:59:41 +000046static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
47 cl::ZeroOrMore, cl::init(false),
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000048 cl::desc("Enable use of AA during MI DAG construction"));
Andrew Trickda01ba32012-05-15 18:59:41 +000049
Hal Finkeldbebb522014-01-25 19:24:54 +000050static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden,
Jonas Paulssonbf408bb2015-01-07 13:20:57 +000051 cl::init(true), cl::desc("Enable use of TBAA during MI DAG construction"));
Hal Finkeldbebb522014-01-25 19:24:54 +000052
Dan Gohman619ef482009-01-15 19:20:50 +000053ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Alexey Samsonov8968e6d2014-08-20 19:36:05 +000054 const MachineLoopInfo *mli,
Eric Christopher2c635492015-01-27 07:54:39 +000055 bool IsPostRAFlag, bool RemoveKillFlags,
Andrew Trick46cc9a42012-02-22 06:08:11 +000056 LiveIntervals *lis)
Eric Christopher2c635492015-01-27 07:54:39 +000057 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()), LIS(lis),
58 IsPostRA(IsPostRAFlag), RemoveKillFlags(RemoveKillFlags),
59 CanHandleTerminators(false), FirstDbgValue(nullptr) {
Andrew Trick46cc9a42012-02-22 06:08:11 +000060 assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals");
Devang Patele5feef02011-06-02 20:07:12 +000061 DbgValues.clear();
Andrew Trickdb42c6f2012-02-22 06:08:13 +000062 assert(!(IsPostRA && MRI.getNumVirtRegs()) &&
Andrew Trickda84e642012-02-21 04:51:23 +000063 "Virtual registers must be removed prior to PostRA scheduling");
Andrew Trick9b635132012-09-18 18:20:00 +000064
Eric Christopher2c635492015-01-27 07:54:39 +000065 const TargetSubtargetInfo &ST = mf.getSubtarget();
Pete Cooper11759452014-09-02 17:43:54 +000066 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000067}
Dan Gohman60cb69e2008-11-19 23:18:57 +000068
Dan Gohman1ee0d412009-01-30 02:49:14 +000069/// getUnderlyingObjectFromInt - This is the function that does the work of
70/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
71static const Value *getUnderlyingObjectFromInt(const Value *V) {
72 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000073 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000074 // If we find a ptrtoint, we can transfer control back to the
75 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000076 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000077 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000078 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000079 // likely that the other operand will lead us to the base
80 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000081 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000082 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000083 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000084 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000085 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000086 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
87 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000088 return V;
89 V = U->getOperand(0);
90 } else {
91 return V;
92 }
Duncan Sands19d0b472010-02-16 11:11:14 +000093 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +000094 } while (1);
95}
96
Hal Finkel66859ae2012-12-10 18:49:16 +000097/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +000098/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +000099static void getUnderlyingObjects(const Value *V,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000100 SmallVectorImpl<Value *> &Objects,
101 const DataLayout &DL) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000102 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +0000103 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000104 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000105 V = Working.pop_back_val();
106
107 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000108 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
Hal Finkel66859ae2012-12-10 18:49:16 +0000109
Craig Toppere1c1d362013-07-03 05:11:49 +0000110 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000111 I != IE; ++I) {
112 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000113 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000114 continue;
115 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
116 const Value *O =
117 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
118 if (O->getType()->isPointerTy()) {
119 Working.push_back(O);
120 continue;
121 }
122 }
123 Objects.push_back(const_cast<Value *>(V));
124 }
125 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000126}
127
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000128typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
129typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
Benjamin Kramerfd510922013-06-29 18:41:17 +0000130UnderlyingObjectsVector;
131
Hal Finkel66859ae2012-12-10 18:49:16 +0000132/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000133/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000134/// object, return the Value for that object.
135static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000136 const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000137 UnderlyingObjectsVector &Objects,
138 const DataLayout &DL) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000139 if (!MI->hasOneMemOperand() ||
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000140 (!(*MI->memoperands_begin())->getValue() &&
141 !(*MI->memoperands_begin())->getPseudoValue()) ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000142 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000143 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000144
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000145 if (const PseudoSourceValue *PSV =
146 (*MI->memoperands_begin())->getPseudoValue()) {
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000147 // Function that contain tail calls don't have unique PseudoSourceValue
148 // objects. Two PseudoSourceValues might refer to the same or overlapping
149 // locations. The client code calling this function assumes this is not the
150 // case. So return a conservative answer of no known object.
151 if (MFI->hasTailCall())
152 return;
153
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000154 // For now, ignore PseudoSourceValues which may alias LLVM IR values
155 // because the code that uses this function has no way to cope with
156 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000157 if (!PSV->isAliased(MFI)) {
158 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000159 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000160 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000161 return;
162 }
163
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000164 const Value *V = (*MI->memoperands_begin())->getValue();
165 if (!V)
166 return;
167
Hal Finkel66859ae2012-12-10 18:49:16 +0000168 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000169 getUnderlyingObjects(V, Objs, DL);
Andrew Trick24b1c482011-05-05 19:24:06 +0000170
Craig Toppere1c1d362013-07-03 05:11:49 +0000171 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
172 I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000173 V = *I;
174
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000175 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000176 Objects.clear();
177 return;
178 }
179
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000180 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000181 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000182}
183
Andrew Trick7405c6d2012-04-20 20:05:21 +0000184void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
185 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000186}
187
Andrew Trick52226d42012-03-07 23:00:49 +0000188void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000189 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000190 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000191}
192
Andrew Trick60cf03e2012-03-07 05:21:52 +0000193/// Initialize the DAG and common scheduler state for the current scheduling
194/// region. This does not actually create the DAG, only clears it. The
195/// scheduling driver may call BuildSchedGraph multiple times per scheduling
196/// region.
197void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
198 MachineBasicBlock::iterator begin,
199 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000200 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000201 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000202 RegionBegin = begin;
203 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000204 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000205}
206
207/// Close the current scheduling region. Don't clear any state in case the
208/// driver wants to refer to the previous scheduling region.
209void ScheduleDAGInstrs::exitRegion() {
210 // Nothing to do.
211}
212
Andrew Trick52226d42012-03-07 23:00:49 +0000213/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000214/// list of instructions being scheduled to scheduling barrier by adding
215/// the exit SU to the register defs and use list. This is because we want to
216/// make sure instructions which define registers that are either used by
217/// the terminator or are live-out are properly scheduled. This is
218/// especially important when the definition latency of the return value(s)
219/// are too high to be hidden by the branch or when the liveout registers
220/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000221void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000222 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000223 ExitSU.setInstr(ExitMI);
224 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000225 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000226 if (ExitMI && AllDepKnown) {
227 // If it's a call or a barrier, add dependencies on the defs and uses of
228 // instruction.
229 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
230 const MachineOperand &MO = ExitMI->getOperand(i);
231 if (!MO.isReg() || MO.isDef()) continue;
232 unsigned Reg = MO.getReg();
233 if (Reg == 0) continue;
234
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000235 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000236 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Tricke6913c72012-03-16 05:04:25 +0000237 else {
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000238 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trickd5953622012-12-01 01:22:44 +0000239 if (MO.readsReg()) // ignore undef operands
240 addVRegUseDeps(&ExitSU, i);
Andrew Tricke6913c72012-03-16 05:04:25 +0000241 }
Evan Cheng15459b62010-10-23 02:10:46 +0000242 }
243 } else {
244 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000245 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000246 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000247 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
248 SE = BB->succ_end(); SI != SE; ++SI)
249 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trick24b1c482011-05-05 19:24:06 +0000250 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengcbdf7e82010-10-27 23:17:17 +0000251 unsigned Reg = *I;
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000252 if (!Uses.contains(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000253 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000254 }
Evan Cheng15459b62010-10-23 02:10:46 +0000255 }
256}
257
Andrew Trickd675a4c2012-02-23 01:52:38 +0000258/// MO is an operand of SU's instruction that defines a physical register. Add
259/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000260void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
261 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000262 assert(MO.isDef() && "expect physreg def");
263
264 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000265 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000266
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000267 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
268 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000269 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000270 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000271 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
272 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000273 if (UseSU == SU)
274 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000275
Andrew Trick07dced62012-10-08 18:54:00 +0000276 // Adjust the dependence latency using operand def/use information,
277 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000278 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000279 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000280 SDep Dep;
281 if (UseOp < 0)
282 Dep = SDep(SU, SDep::Artificial);
283 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000284 // Set the hasPhysRegDefs only for physreg defs that have a use within
285 // the scheduling region.
286 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000287 Dep = SDep(SU, SDep::Data, *Alias);
288 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000289 }
290 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000291 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
292 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000293
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000294 ST.adjustSchedDependency(SU, UseSU, Dep);
295 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000296 }
297 }
298}
299
Andrew Trickdbee9d82012-01-14 02:17:15 +0000300/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
301/// this SUnit to following instructions in the same scheduling region that
302/// depend the physical register referenced at OperIdx.
303void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000304 MachineInstr *MI = SU->getInstr();
305 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000306
307 // Optionally add output and anti dependencies. For anti
308 // dependencies we use a latency of 0 because for a multi-issue
309 // target we want to allow the defining instruction to issue
310 // in the same cycle as the using instruction.
311 // TODO: Using a latency of 1 here for output dependencies assumes
312 // there's no cost for reusing registers.
313 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000314 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
315 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000316 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000317 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000318 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
319 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000320 if (DefSU == &ExitSU)
321 continue;
322 if (DefSU != SU &&
323 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000324 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000325 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000326 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000327 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000328 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000329 Dep.setLatency(
330 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000331 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000332 }
333 }
334 }
335 }
336
Andrew Trickd675a4c2012-02-23 01:52:38 +0000337 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000338 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000339 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
340 // retrieve the existing SUnits list for this register's uses.
341 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000342 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000343 if (RemoveKillFlags)
344 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000345 }
346 else {
Andrew Trickae535612012-08-23 00:39:43 +0000347 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000348 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000349
Andrew Trickd675a4c2012-02-23 01:52:38 +0000350 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000351 if (Uses.contains(Reg))
352 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000353
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000354 if (!MO.isDead()) {
355 Defs.eraseAll(Reg);
356 } else if (SU->isCall) {
357 // Calls will not be reordered because of chain dependencies (see
358 // below). Since call operands are dead, calls may continue to be added
359 // to the DefList making dependence checking quadratic in the size of
360 // the block. Instead, we leave only one call at the back of the
361 // DefList.
362 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
363 Reg2SUnitsMap::iterator B = P.first;
364 Reg2SUnitsMap::iterator I = P.second;
365 for (bool isBegin = I == B; !isBegin; /* empty */) {
366 isBegin = (--I) == B;
367 if (!I->SU->isCall)
368 break;
369 I = Defs.erase(I);
370 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000371 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000372
Andrew Trickd675a4c2012-02-23 01:52:38 +0000373 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000374 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000375 }
376}
377
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000378/// addVRegDefDeps - Add register output and data dependencies from this SUnit
379/// to instructions that occur later in the same scheduling region if they read
380/// from or write to the virtual register defined at OperIdx.
381///
382/// TODO: Hoist loop induction variable increments. This has to be
383/// reevaluated. Generally, IV scheduling should be done before coalescing.
384void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
385 const MachineInstr *MI = SU->getInstr();
386 unsigned Reg = MI->getOperand(OperIdx).getReg();
387
Andrew Trick94053432012-07-28 01:48:15 +0000388 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000389 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000390 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000391 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000392 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000393
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000394 // Add output dependence to the next nearest def of this vreg.
395 //
396 // Unless this definition is dead, the output dependence should be
397 // transitively redundant with antidependencies from this definition's
398 // uses. We're conservative for now until we have a way to guarantee the uses
399 // are not eliminated sometime during scheduling. The output dependence edge
400 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000401 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000402 if (DefI == VRegDefs.end())
403 VRegDefs.insert(VReg2SUnit(Reg, SU));
404 else {
405 SUnit *DefSU = DefI->SU;
406 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000407 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000408 Dep.setLatency(
409 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000410 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000411 }
412 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000413 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000414}
415
Andrew Trick46cc9a42012-02-22 06:08:11 +0000416/// addVRegUseDeps - Add a register data dependency if the instruction that
417/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
418/// register antidependency from this SUnit to instructions that occur later in
419/// the same scheduling region if they write the virtual register.
420///
421/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000422void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000423 MachineInstr *MI = SU->getInstr();
424 unsigned Reg = MI->getOperand(OperIdx).getReg();
425
Andrew Trick8dd26f02013-08-23 17:48:39 +0000426 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000427 VReg2UseMap::iterator UI = VRegUses.find(Reg);
428 for (; UI != VRegUses.end(); ++UI) {
429 if (UI->SU == SU)
430 break;
431 }
432 if (UI == VRegUses.end())
433 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000434
Andrew Trick46cc9a42012-02-22 06:08:11 +0000435 // Lookup this operand's reaching definition.
436 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000437 LiveQueryResult LRQ
438 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000439 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000440
Andrew Trickda6a15d2012-02-23 03:16:24 +0000441 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000442 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000443 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000444 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000445 if (Def) {
446 SUnit *DefSU = getSUnit(Def);
447 if (DefSU) {
448 // The reaching Def lives within this scheduling region.
449 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000450 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000451 // Adjust the dependence latency using operand def/use information, then
452 // allow the target to perform its own adjustments.
453 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000454 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000455
Eric Christopher2c635492015-01-27 07:54:39 +0000456 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trick09650df2012-10-08 18:53:57 +0000457 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000458 SU->addPred(dep);
459 }
460 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000461
462 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000463 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000464 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000465 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000466}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000467
Andrew Trickda01ba32012-05-15 18:59:41 +0000468/// Return true if MI is an instruction we are unable to reason about
469/// (like a call or something with unmodeled side effects).
470static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
471 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesencea3e772012-08-29 21:19:21 +0000472 (MI->hasOrderedMemoryRef() &&
Andrew Trickda01ba32012-05-15 18:59:41 +0000473 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
474 return true;
475 return false;
476}
477
478// This MI might have either incomplete info, or known to be unsafe
479// to deal with (i.e. volatile object).
480static inline bool isUnsafeMemoryObject(MachineInstr *MI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000481 const MachineFrameInfo *MFI,
482 const DataLayout &DL) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000483 if (!MI || MI->memoperands_empty())
484 return true;
485 // We purposefully do no check for hasOneMemOperand() here
486 // in hope to trigger an assert downstream in order to
487 // finish implementation.
488 if ((*MI->memoperands_begin())->isVolatile() ||
489 MI->hasUnmodeledSideEffects())
490 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000491
492 if ((*MI->memoperands_begin())->getPseudoValue()) {
493 // Similarly to getUnderlyingObjectForInstr:
494 // For now, ignore PseudoSourceValues which may alias LLVM IR values
495 // because the code that uses this function has no way to cope with
496 // such aliases.
497 return true;
498 }
499
Andrew Trickda01ba32012-05-15 18:59:41 +0000500 const Value *V = (*MI->memoperands_begin())->getValue();
501 if (!V)
502 return true;
503
Hal Finkel66859ae2012-12-10 18:49:16 +0000504 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000505 getUnderlyingObjects(V, Objs, DL);
Craig Toppere1c1d362013-07-03 05:11:49 +0000506 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
507 IE = Objs.end(); I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000508 // Does this pointer refer to a distinct and identifiable object?
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000509 if (!isIdentifiedObject(*I))
Andrew Trickda01ba32012-05-15 18:59:41 +0000510 return true;
511 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000512
513 return false;
514}
515
516/// This returns true if the two MIs need a chain edge betwee them.
517/// If these are not even memory operations, we still may need
518/// chain deps between them. The question really is - could
519/// these two MIs be reordered during scheduling from memory dependency
520/// point of view.
521static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000522 const DataLayout &DL, MachineInstr *MIa,
Andrew Trickda01ba32012-05-15 18:59:41 +0000523 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000524 const MachineFunction *MF = MIa->getParent()->getParent();
525 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
526
Andrew Trickda01ba32012-05-15 18:59:41 +0000527 // Cover a trivial case - no edge is need to itself.
528 if (MIa == MIb)
529 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000530
531 // Let the target decide if memory accesses cannot possibly overlap.
532 if ((MIa->mayLoad() || MIa->mayStore()) &&
533 (MIb->mayLoad() || MIb->mayStore()))
534 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
535 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000536
Hal Finkel2150e3a2014-01-08 21:52:02 +0000537 // FIXME: Need to handle multiple memory operands to support all targets.
538 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
539 return true;
540
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000541 if (isUnsafeMemoryObject(MIa, MFI, DL) || isUnsafeMemoryObject(MIb, MFI, DL))
Andrew Trickda01ba32012-05-15 18:59:41 +0000542 return true;
543
544 // If we are dealing with two "normal" loads, we do not need an edge
545 // between them - they could be reordered.
546 if (!MIa->mayStore() && !MIb->mayStore())
547 return false;
548
549 // To this point analysis is generic. From here on we do need AA.
550 if (!AA)
551 return true;
552
553 MachineMemOperand *MMOa = *MIa->memoperands_begin();
554 MachineMemOperand *MMOb = *MIb->memoperands_begin();
555
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000556 if (!MMOa->getValue() || !MMOb->getValue())
557 return true;
558
Andrew Trickda01ba32012-05-15 18:59:41 +0000559 // The following interface to AA is fashioned after DAGCombiner::isAlias
560 // and operates with MachineMemOperand offset with some important
561 // assumptions:
562 // - LLVM fundamentally assumes flat address spaces.
563 // - MachineOperand offset can *only* result from legalization and
564 // cannot affect queries other than the trivial case of overlap
565 // checking.
566 // - These offsets never wrap and never step outside
567 // of allocated objects.
568 // - There should never be any negative offsets here.
569 //
570 // FIXME: Modify API to hide this math from "user"
571 // FIXME: Even before we go to AA we can reason locally about some
572 // memory objects. It can save compile time, and possibly catch some
573 // corner cases not currently covered.
574
575 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
576 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
577
578 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
579 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
580 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
581
582 AliasAnalysis::AliasResult AAResult = AA->alias(
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000583 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
Hal Finkelcc39b672014-07-24 12:16:19 +0000584 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
Nick Lewycky1ce017e2014-02-25 00:43:21 +0000585 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
Hal Finkelcc39b672014-07-24 12:16:19 +0000586 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000587
588 return (AAResult != AliasAnalysis::NoAlias);
589}
590
591/// This recursive function iterates over chain deps of SUb looking for
592/// "latest" node that needs a chain edge to SUa.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000593static unsigned iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
594 const DataLayout &DL, SUnit *SUa, SUnit *SUb,
595 SUnit *ExitSU, unsigned *Depth,
596 SmallPtrSetImpl<const SUnit *> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000597 if (!SUa || !SUb || SUb == ExitSU)
598 return *Depth;
599
600 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000601 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000602 return *Depth;
603 // If there is _some_ dependency already in place, do not
604 // descend any further.
605 // TODO: Need to make sure that if that dependency got eliminated or ignored
606 // for any reason in the future, we would not violate DAG topology.
607 // Currently it does not happen, but makes an implicit assumption about
608 // future implementation.
609 //
610 // Independently, if we encounter node that is some sort of global
611 // object (like a call) we already have full set of dependencies to it
612 // and we can stop descending.
613 if (SUa->isSucc(SUb) ||
614 isGlobalMemoryObject(AA, SUb->getInstr()))
615 return *Depth;
616
617 // If we do need an edge, or we have exceeded depth budget,
618 // add that edge to the predecessors chain of SUb,
619 // and stop descending.
620 if (*Depth > 200 ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000621 MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000622 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000623 return *Depth;
624 }
625 // Track current depth.
626 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000627 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000628 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
629 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000630 if (I->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000631 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000632 return *Depth;
633}
634
635/// This function assumes that "downward" from SU there exist
636/// tail/leaf of already constructed DAG. It iterates downward and
637/// checks whether SU can be aliasing any node dominated
638/// by it.
639static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000640 const DataLayout &DL, SUnit *SU, SUnit *ExitSU,
641 std::set<SUnit *> &CheckList,
Andrew Trick344fb642012-06-13 02:39:03 +0000642 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000643 if (!SU)
644 return;
645
646 SmallPtrSet<const SUnit*, 16> Visited;
647 unsigned Depth = 0;
648
649 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
650 I != IE; ++I) {
651 if (SU == *I)
652 continue;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000653 if (MIsNeedChainEdge(AA, MFI, DL, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000654 SDep Dep(SU, SDep::MayAliasMem);
655 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
656 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000657 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000658
659 // Iterate recursively over all previously added memory chain
660 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000661 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
662 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000663 if (J->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000664 iterateChainSucc(AA, MFI, DL, SU, J->getSUnit(), ExitSU, &Depth,
665 Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000666 }
667}
668
669/// Check whether two objects need a chain edge, if so, add it
670/// otherwise remember the rejected SU.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000671static inline void addChainDependency(AliasAnalysis *AA,
672 const MachineFrameInfo *MFI,
673 const DataLayout &DL, SUnit *SUa,
674 SUnit *SUb, std::set<SUnit *> &RejectList,
675 unsigned TrueMemOrderLatency = 0,
676 bool isNormalMemory = false) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000677 // If this is a false dependency,
678 // do not add the edge, but rememeber the rejected node.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000679 if (MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000680 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
681 Dep.setLatency(TrueMemOrderLatency);
682 SUb->addPred(Dep);
683 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000684 else {
685 // Duplicate entries should be ignored.
686 RejectList.insert(SUb);
687 DEBUG(dbgs() << "\tReject chain dep between SU("
688 << SUa->NodeNum << ") and SU("
689 << SUb->NodeNum << ")\n");
690 }
691}
692
Andrew Trick46cc9a42012-02-22 06:08:11 +0000693/// Create an SUnit for each real instruction, numbered in top-down toplological
694/// order. The instruction order A < B, implies that no edge exists from B to A.
695///
696/// Map each real instruction to its SUnit.
697///
Andrew Trick8823dec2012-03-14 04:00:41 +0000698/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
699/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
700/// instead of pointers.
701///
702/// MachineScheduler relies on initSUnits numbering the nodes by their order in
703/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000704void ScheduleDAGInstrs::initSUnits() {
705 // We'll be allocating one SUnit for each real instruction in the region,
706 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000707 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000708
Andrew Trick8c207e42012-03-09 04:29:02 +0000709 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000710 MachineInstr *MI = I;
711 if (MI->isDebugValue())
712 continue;
713
Andrew Trick52226d42012-03-07 23:00:49 +0000714 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000715 MISUnitMap[MI] = SU;
716
717 SU->isCall = MI->isCall();
718 SU->isCommutable = MI->isCommutable();
719
720 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000721 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000722
Andrew Trick1766f932014-04-18 17:35:08 +0000723 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
724 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000725 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000726 // entire pipeline. These are identified by BufferSize=0.
727 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000728 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000729 // require the same resources. This is used for in-order execution pipelines
730 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000731 if (SchedModel.hasInstrSchedModel()) {
732 const MCSchedClassDesc *SC = getSchedClass(SU);
733 for (TargetSchedModel::ProcResIter
734 PI = SchedModel.getWriteProcResBegin(SC),
735 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000736 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
737 case 0:
738 SU->hasReservedResource = true;
739 break;
740 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000741 SU->isUnbuffered = true;
742 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000743 default:
744 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000745 }
746 }
747 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000748 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000749}
750
Alp Tokerf907b892013-12-05 05:44:44 +0000751/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000752/// DAG builder is an efficient place to do it because it already visits
753/// operands.
754void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000755 RegPressureTracker *RPTracker,
756 PressureDiffs *PDiffs) {
Eric Christopher2c635492015-01-27 07:54:39 +0000757 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000758 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
759 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000760 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000761
Andrew Trick310190e2013-09-04 21:00:02 +0000762 MISUnitMap.clear();
763 ScheduleDAG::clearDAG();
764
Andrew Trick46cc9a42012-02-22 06:08:11 +0000765 // Create an SUnit for each real instruction.
766 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000767
Andrew Trick1a831342013-08-30 03:49:48 +0000768 if (PDiffs)
769 PDiffs->init(SUnits.size());
770
Dan Gohman3aab10b2008-12-04 01:35:46 +0000771 // We build scheduling units by walking a block's instruction list from bottom
772 // to top.
773
David Goodwind2f9c042009-11-09 19:22:17 +0000774 // Remember where a generic side-effecting instruction is as we procede.
Craig Topperc0196b12014-04-14 00:51:57 +0000775 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000776
David Goodwind2f9c042009-11-09 19:22:17 +0000777 // Memory references to specific known memory locations are tracked
778 // so that they can be given more precise dependencies. We track
779 // separately the known memory locations that may alias and those
780 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000781 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
782 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000783 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000784
Dale Johannesen49de0602010-03-10 22:13:47 +0000785 // Remove any stale debug info; sometimes BuildSchedGraph is called again
786 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000787 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000788 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000789
Andrew Trickd675a4c2012-02-23 01:52:38 +0000790 assert(Defs.empty() && Uses.empty() &&
791 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000792 Defs.setUniverse(TRI->getNumRegs());
793 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000794
Andrew Trickd458e2d2012-02-22 21:59:00 +0000795 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000796 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000797 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000798 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000799
Andrew Trickd675a4c2012-02-23 01:52:38 +0000800 // Model data dependencies between instructions being scheduled and the
801 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000802 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000803
Dan Gohmanb9543432009-02-10 23:27:53 +0000804 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000805 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000806 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000807 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000808 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000809 if (MI && DbgMI) {
810 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000811 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000812 }
813
Dale Johannesen49de0602010-03-10 22:13:47 +0000814 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000815 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000816 continue;
817 }
Andrew Trick1a831342013-08-30 03:49:48 +0000818 SUnit *SU = MISUnitMap[MI];
819 assert(SU && "No SUnit mapped to this MI");
820
Andrew Trick88639922012-04-24 17:56:43 +0000821 if (RPTracker) {
Craig Topperc0196b12014-04-14 00:51:57 +0000822 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : nullptr;
823 RPTracker->recede(/*LiveUses=*/nullptr, PDiff);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000824 assert(RPTracker->getPos() == std::prev(MII) &&
825 "RPTracker can't find MI");
Andrew Trick88639922012-04-24 17:56:43 +0000826 }
Devang Patele5feef02011-06-02 20:07:12 +0000827
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000828 assert(
829 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
830 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000831
Dan Gohman3aab10b2008-12-04 01:35:46 +0000832 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000833 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000834 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
835 const MachineOperand &MO = MI->getOperand(j);
836 if (!MO.isReg()) continue;
837 unsigned Reg = MO.getReg();
838 if (Reg == 0) continue;
839
Andrew Trickdbee9d82012-01-14 02:17:15 +0000840 if (TRI->isPhysicalRegister(Reg))
841 addPhysRegDeps(SU, j);
842 else {
843 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trickec256482012-12-18 20:53:01 +0000844 if (MO.isDef()) {
845 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000846 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000847 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000848 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000849 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000850 }
851 }
Andrew Trickec256482012-12-18 20:53:01 +0000852 // If we haven't seen any uses in this scheduling region, create a
853 // dependence edge to ExitSU to model the live-out latency. This is required
854 // for vreg defs with no in-region use, and prefetches with no vreg def.
855 //
856 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
857 // check currently relies on being called before adding chain deps.
858 if (SU->NumSuccs == 0 && SU->Latency > 1
859 && (HasVRegDef || MI->mayLoad())) {
860 SDep Dep(SU, SDep::Artificial);
861 Dep.setLatency(SU->Latency - 1);
862 ExitSU.addPred(Dep);
863 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000864
865 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000866 // Chain dependencies used to enforce memory order should have
867 // latency of 0 (except for true dependency of Store followed by
868 // aliased Load... we estimate that with a single cycle of latency
869 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000870 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
871 // after stack slots are lowered to actual addresses.
872 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
873 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000874 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000875 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000876 // Be conservative with these and add dependencies on all memory
877 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000878 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000879 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000880 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
881 I->second[i]->addPred(SDep(SU, SDep::Barrier));
882 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000883 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000884 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000885 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000886 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
887 SDep Dep(SU, SDep::Barrier);
888 Dep.setLatency(TrueMemOrderLatency);
889 I->second[i]->addPred(Dep);
890 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000891 }
David Goodwind2f9c042009-11-09 19:22:17 +0000892 // Add SU to the barrier chain.
893 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000894 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000895 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000896 // This is a barrier event that acts as a pivotal node in the DAG,
897 // so it is safe to clear list of exposed nodes.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000898 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000899 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000900 RejectMemNodes.clear();
901 NonAliasMemDefs.clear();
902 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000903
904 // fall-through
905 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +0000906 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000907 if (AliasChain) {
908 unsigned ChainLatency = 0;
909 if (AliasChain->getInstr()->mayLoad())
910 ChainLatency = TrueMemOrderLatency;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000911 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
912 RejectMemNodes, ChainLatency);
Andrew Trick344fb642012-06-13 02:39:03 +0000913 }
David Goodwind2f9c042009-11-09 19:22:17 +0000914 AliasChain = SU;
915 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000916 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
917 PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000918 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000919 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +0000920 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
921 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000922 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
923 I->second[i], RejectMemNodes);
Hal Finkela228a812014-01-20 14:03:02 +0000924 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000925 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000926 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
927 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000928 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
929 I->second[i], RejectMemNodes, TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000930 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000931 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000932 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000933 PendingLoads.clear();
934 AliasMemDefs.clear();
935 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000936 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +0000937 // Add dependence on barrier chain, if needed.
938 // There is no point to check aliasing on barrier event. Even if
939 // SU and barrier _could_ be reordered, they should not. In addition,
940 // we have lost all RejectMemNodes below barrier.
941 if (BarrierChain)
942 BarrierChain->addPred(SDep(SU, SDep::Barrier));
943
Benjamin Kramerfd510922013-06-29 18:41:17 +0000944 UnderlyingObjectsVector Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000945 getUnderlyingObjectsForInstr(MI, MFI, Objs, *TM.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +0000946
947 if (Objs.empty()) {
948 // Treat all other stores conservatively.
949 goto new_alias_chain;
950 }
951
952 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000953 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
954 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000955 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +0000956 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000957 if (ThisMayAlias)
958 MayAlias = true;
959
Dan Gohman3aab10b2008-12-04 01:35:46 +0000960 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000961 // Record the def in MemDefs, first adding a dep if there is
962 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000963 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000964 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000965 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000966 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000967 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000968 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000969 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
970 I->second[i], RejectMemNodes, 0, true);
Hal Finkela228a812014-01-20 14:03:02 +0000971
972 // If we're not using AA, then we only need one store per object.
973 if (!AAForDep)
974 I->second.clear();
975 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000976 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000977 if (ThisMayAlias) {
978 if (!AAForDep)
979 AliasMemDefs[V].clear();
980 AliasMemDefs[V].push_back(SU);
981 } else {
982 if (!AAForDep)
983 NonAliasMemDefs[V].clear();
984 NonAliasMemDefs[V].push_back(SU);
985 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000986 }
987 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000988 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000989 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000990 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000991 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000992 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000993 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000994 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
995 J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000996 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000997 J->second.clear();
998 }
David Goodwin00822aa2009-11-02 17:06:28 +0000999 }
Hal Finkel66859ae2012-12-10 18:49:16 +00001000 if (MayAlias) {
1001 // Add dependencies from all the PendingLoads, i.e. loads
1002 // with no underlying object.
1003 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001004 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1005 PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +00001006 TrueMemOrderLatency);
1007 // Add dependence on alias chain, if needed.
1008 if (AliasChain)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001009 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
1010 RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +00001011 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001012 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Jonas Paulssonafa68132015-02-10 13:03:32 +00001013 TrueMemOrderLatency);
Evan Cheng7f8e5632011-12-07 07:15:52 +00001014 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +00001015 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +00001016 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001017 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001018 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001019 UnderlyingObjectsVector Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001020 getUnderlyingObjectsForInstr(MI, MFI, Objs, *TM.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +00001021
1022 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001023 // A load with no underlying object. Depend on all
1024 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001025 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001026 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001027 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001028 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1029 I->second[i], RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001030
David Goodwind2f9c042009-11-09 19:22:17 +00001031 PendingLoads.push_back(SU);
1032 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001033 } else {
1034 MayAlias = false;
1035 }
1036
Benjamin Kramerfd510922013-06-29 18:41:17 +00001037 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001038 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001039 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001040 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001041
1042 if (ThisMayAlias)
1043 MayAlias = true;
1044
1045 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001046 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001047 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001048 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001049 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1050 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001051 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001052 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU,
1053 I->second[i], RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001054 if (ThisMayAlias)
1055 AliasMemUses[V].push_back(SU);
1056 else
1057 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001058 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001059 if (MayAlias)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001060 adjustChainDeps(AA, MFI, *TM.getDataLayout(), SU, &ExitSU,
1061 RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001062 // Add dependencies on alias and barrier chains, if needed.
1063 if (MayAlias && AliasChain)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001064 addChainDependency(AAForDep, MFI, *TM.getDataLayout(), SU, AliasChain,
1065 RejectMemNodes);
David Goodwind2f9c042009-11-09 19:22:17 +00001066 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001067 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001068 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001069 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001070 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001071 if (DbgMI)
1072 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001073
Andrew Trickd675a4c2012-02-23 01:52:38 +00001074 Defs.clear();
1075 Uses.clear();
Andrew Trick59ac4fb2012-01-14 02:17:18 +00001076 VRegDefs.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001077 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001078}
1079
Andrew Trick6b104f82013-12-28 21:56:55 +00001080/// \brief Initialize register live-range state for updating kills.
1081void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1082 // Start with no live registers.
1083 LiveRegs.reset();
1084
1085 // Examine the live-in regs of all successors.
1086 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1087 SE = BB->succ_end(); SI != SE; ++SI) {
1088 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
1089 E = (*SI)->livein_end(); I != E; ++I) {
1090 unsigned Reg = *I;
1091 // Repeat, for reg and all subregs.
1092 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1093 SubRegs.isValid(); ++SubRegs)
1094 LiveRegs.set(*SubRegs);
1095 }
1096 }
1097}
1098
Pete Cooper300069a2015-05-04 16:52:06 +00001099/// \brief If we change a kill flag on the bundle instruction implicit register
1100/// operands, then we also need to propagate that to any instructions inside
1101/// the bundle which had the same kill state.
1102static void toggleBundleKillFlag(MachineInstr *MI, unsigned Reg,
1103 bool NewKillState) {
1104 if (MI->getOpcode() != TargetOpcode::BUNDLE)
1105 return;
1106
1107 // Walk backwards from the last instruction in the bundle to the first.
1108 // Once we set a kill flag on an instruction, we bail out, as otherwise we
1109 // might set it on too many operands. We will clear as many flags as we
1110 // can though.
1111 MachineBasicBlock::instr_iterator Begin = MI;
1112 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1113 while (Begin != End) {
1114 for (MIOperands MO(--End); MO.isValid(); ++MO) {
1115 if (!MO->isReg() || MO->isDef() || Reg != MO->getReg())
1116 continue;
1117
1118 // If the register has the internal flag then it could be killing an
1119 // internal def of the register. In this case, just skip. We only want
1120 // to toggle the flag on operands visible outside the bundle.
1121 if (MO->isInternalRead())
1122 continue;
1123
1124 if (MO->isKill() == NewKillState)
1125 continue;
1126 MO->setIsKill(NewKillState);
1127 if (NewKillState)
1128 return;
1129 }
1130 }
1131}
1132
Andrew Trick6b104f82013-12-28 21:56:55 +00001133bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1134 // Setting kill flag...
1135 if (!MO.isKill()) {
1136 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001137 toggleBundleKillFlag(MI, MO.getReg(), true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001138 return false;
1139 }
1140
1141 // If MO itself is live, clear the kill flag...
1142 if (LiveRegs.test(MO.getReg())) {
1143 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001144 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001145 return false;
1146 }
1147
1148 // If any subreg of MO is live, then create an imp-def for that
1149 // subreg and keep MO marked as killed.
1150 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001151 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001152 bool AllDead = true;
1153 const unsigned SuperReg = MO.getReg();
1154 MachineInstrBuilder MIB(MF, MI);
1155 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1156 if (LiveRegs.test(*SubRegs)) {
1157 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1158 AllDead = false;
1159 }
1160 }
1161
Pete Cooper300069a2015-05-04 16:52:06 +00001162 if(AllDead) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001163 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001164 toggleBundleKillFlag(MI, MO.getReg(), true);
1165 }
Andrew Trick6b104f82013-12-28 21:56:55 +00001166 return false;
1167}
1168
1169// FIXME: Reuse the LivePhysRegs utility for this.
1170void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1171 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1172
1173 LiveRegs.resize(TRI->getNumRegs());
1174 BitVector killedRegs(TRI->getNumRegs());
1175
1176 startBlockForKills(MBB);
1177
1178 // Examine block from end to start...
1179 unsigned Count = MBB->size();
1180 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1181 I != E; --Count) {
1182 MachineInstr *MI = --I;
1183 if (MI->isDebugValue())
1184 continue;
1185
1186 // Update liveness. Registers that are defed but not used in this
1187 // instruction are now dead. Mark register and all subregs as they
1188 // are completely defined.
1189 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1190 MachineOperand &MO = MI->getOperand(i);
1191 if (MO.isRegMask())
1192 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1193 if (!MO.isReg()) continue;
1194 unsigned Reg = MO.getReg();
1195 if (Reg == 0) continue;
1196 if (!MO.isDef()) continue;
1197 // Ignore two-addr defs.
1198 if (MI->isRegTiedToUseOperand(i)) continue;
1199
1200 // Repeat for reg and all subregs.
1201 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1202 SubRegs.isValid(); ++SubRegs)
1203 LiveRegs.reset(*SubRegs);
1204 }
1205
1206 // Examine all used registers and set/clear kill flag. When a
1207 // register is used multiple times we only set the kill flag on
1208 // the first use. Don't set kill flags on undef operands.
1209 killedRegs.reset();
1210 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1211 MachineOperand &MO = MI->getOperand(i);
1212 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1213 unsigned Reg = MO.getReg();
1214 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1215
1216 bool kill = false;
1217 if (!killedRegs.test(Reg)) {
1218 kill = true;
1219 // A register is not killed if any subregs are live...
1220 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1221 if (LiveRegs.test(*SubRegs)) {
1222 kill = false;
1223 break;
1224 }
1225 }
1226
1227 // If subreg is not live, then register is killed if it became
1228 // live in this instruction
1229 if (kill)
1230 kill = !LiveRegs.test(Reg);
1231 }
1232
1233 if (MO.isKill() != kill) {
1234 DEBUG(dbgs() << "Fixing " << MO << " in ");
1235 // Warning: toggleKillFlag may invalidate MO.
1236 toggleKillFlag(MI, MO);
1237 DEBUG(MI->dump());
Pete Cooper300069a2015-05-04 16:52:06 +00001238 DEBUG(if (MI->getOpcode() == TargetOpcode::BUNDLE) {
1239 MachineBasicBlock::instr_iterator Begin = MI;
1240 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1241 while (++Begin != End)
1242 DEBUG(Begin->dump());
1243 });
Andrew Trick6b104f82013-12-28 21:56:55 +00001244 }
1245
1246 killedRegs.set(Reg);
1247 }
1248
1249 // Mark any used register (that is not using undef) and subregs as
1250 // now live...
1251 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1252 MachineOperand &MO = MI->getOperand(i);
1253 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1254 unsigned Reg = MO.getReg();
1255 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1256
1257 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1258 SubRegs.isValid(); ++SubRegs)
1259 LiveRegs.set(*SubRegs);
1260 }
1261 }
1262}
1263
Dan Gohman60cb69e2008-11-19 23:18:57 +00001264void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001265#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001266 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001267#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001268}
1269
1270std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001271 std::string s;
1272 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001273 if (SU == &EntrySU)
1274 oss << "<entry>";
1275 else if (SU == &ExitSU)
1276 oss << "<exit>";
1277 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001278 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001279 return oss.str();
1280}
1281
Andrew Trick1b2324d2012-03-07 00:18:22 +00001282/// Return the basic block label. It is not necessarilly unique because a block
1283/// contains multiple scheduling regions. But it is fine for visualization.
1284std::string ScheduleDAGInstrs::getDAGName() const {
1285 return "dag." + BB->getFullName();
1286}
Andrew Trick90f711d2012-10-15 18:02:27 +00001287
Andrew Trick48d392e2012-11-28 05:13:28 +00001288//===----------------------------------------------------------------------===//
1289// SchedDFSResult Implementation
1290//===----------------------------------------------------------------------===//
1291
1292namespace llvm {
1293/// \brief Internal state used to compute SchedDFSResult.
1294class SchedDFSImpl {
1295 SchedDFSResult &R;
1296
1297 /// Join DAG nodes into equivalence classes by their subtree.
1298 IntEqClasses SubtreeClasses;
1299 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1300 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1301
Andrew Trickffc80972013-01-25 06:52:27 +00001302 struct RootData {
1303 unsigned NodeID;
1304 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1305 unsigned SubInstrCount; // Instr count in this tree only, not children.
1306
1307 RootData(unsigned id): NodeID(id),
1308 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1309 SubInstrCount(0) {}
1310
1311 unsigned getSparseSetIndex() const { return NodeID; }
1312 };
1313
1314 SparseSet<RootData> RootSet;
1315
Andrew Trick48d392e2012-11-28 05:13:28 +00001316public:
Andrew Trickffc80972013-01-25 06:52:27 +00001317 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1318 RootSet.setUniverse(R.DFSNodeData.size());
1319 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001320
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001321 /// Return true if this node been visited by the DFS traversal.
1322 ///
1323 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1324 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001325 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001326 return R.DFSNodeData[SU->NodeNum].SubtreeID
1327 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001328 }
1329
1330 /// Initialize this node's instruction count. We don't need to flag the node
1331 /// visited until visitPostorder because the DAG cannot have cycles.
1332 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001333 R.DFSNodeData[SU->NodeNum].InstrCount =
1334 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001335 }
1336
1337 /// Called once for each node after all predecessors are visited. Revisit this
1338 /// node's predecessors and potentially join them now that we know the ILP of
1339 /// the other predecessors.
1340 void visitPostorderNode(const SUnit *SU) {
1341 // Mark this node as the root of a subtree. It may be joined with its
1342 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001343 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1344 RootData RData(SU->NodeNum);
1345 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001346
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001347 // If any predecessors are still in their own subtree, they either cannot be
1348 // joined or are large enough to remain separate. If this parent node's
1349 // total instruction count is not greater than a child subtree by at least
1350 // the subtree limit, then try to join it now since splitting subtrees is
1351 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001352 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001353 for (SUnit::const_pred_iterator
1354 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1355 if (PI->getKind() != SDep::Data)
1356 continue;
1357 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001358 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001359 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001360
1361 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001362 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1363 // If the predecessor's parent is invalid, this is a tree edge and the
1364 // current node is the parent.
1365 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1366 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1367 }
1368 else if (RootSet.count(PredNum)) {
1369 // The predecessor is not a root, but is still in the root set. This
1370 // must be the new parent that it was just joined to. Note that
1371 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1372 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001373 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1374 RootSet.erase(PredNum);
1375 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001376 }
Andrew Trickffc80972013-01-25 06:52:27 +00001377 RootSet[SU->NodeNum] = RData;
1378 }
1379
1380 /// Called once for each tree edge after calling visitPostOrderNode on the
1381 /// predecessor. Increment the parent node's instruction count and
1382 /// preemptively join this subtree to its parent's if it is small enough.
1383 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1384 R.DFSNodeData[Succ->NodeNum].InstrCount
1385 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1386 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001387 }
1388
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001389 /// Add a connection for cross edges.
1390 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001391 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1392 }
1393
1394 /// Set each node's subtree ID to the representative ID and record connections
1395 /// between trees.
1396 void finalize() {
1397 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001398 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1399 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1400 && "number of roots should match trees");
1401 for (SparseSet<RootData>::const_iterator
1402 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1403 unsigned TreeID = SubtreeClasses[RI->NodeID];
1404 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1405 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1406 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001407 // Note that SubInstrCount may be greater than InstrCount if we joined
1408 // subtrees across a cross edge. InstrCount will be attributed to the
1409 // original parent, while SubInstrCount will be attributed to the joined
1410 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001411 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001412 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1413 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1414 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001415 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1416 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001417 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001418 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001419 }
1420 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1421 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1422 I != E; ++I) {
1423 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1424 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1425 if (PredTree == SuccTree)
1426 continue;
1427 unsigned Depth = I->first->getDepth();
1428 addConnection(PredTree, SuccTree, Depth);
1429 addConnection(SuccTree, PredTree, Depth);
1430 }
1431 }
1432
1433protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001434 /// Join the predecessor subtree with the successor that is its DFS
1435 /// parent. Apply some heuristics before joining.
1436 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1437 bool CheckLimit = true) {
1438 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1439
1440 // Check if the predecessor is already joined.
1441 const SUnit *PredSU = PredDep.getSUnit();
1442 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001443 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001444 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001445
1446 // Four is the magic number of successors before a node is considered a
1447 // pinch point.
1448 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001449 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1450 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1451 if (SI->getKind() == SDep::Data) {
1452 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001453 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001454 }
1455 }
Andrew Trickffc80972013-01-25 06:52:27 +00001456 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001457 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001458 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001459 SubtreeClasses.join(Succ->NodeNum, PredNum);
1460 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001461 }
1462
Andrew Trick48d392e2012-11-28 05:13:28 +00001463 /// Called by finalize() to record a connection between trees.
1464 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1465 if (!Depth)
1466 return;
1467
Andrew Trickffc80972013-01-25 06:52:27 +00001468 do {
1469 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1470 R.SubtreeConnections[FromTree];
1471 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1472 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1473 if (I->TreeID == ToTree) {
1474 I->Level = std::max(I->Level, Depth);
1475 return;
1476 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001477 }
Andrew Trickffc80972013-01-25 06:52:27 +00001478 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1479 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1480 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001481 }
1482};
1483} // namespace llvm
1484
Andrew Trick90f711d2012-10-15 18:02:27 +00001485namespace {
1486/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1487class SchedDAGReverseDFS {
1488 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1489public:
1490 bool isComplete() const { return DFSStack.empty(); }
1491
1492 void follow(const SUnit *SU) {
1493 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1494 }
1495 void advance() { ++DFSStack.back().second; }
1496
Andrew Trick48d392e2012-11-28 05:13:28 +00001497 const SDep *backtrack() {
1498 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001499 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001500 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001501
1502 const SUnit *getCurr() const { return DFSStack.back().first; }
1503
1504 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1505
1506 SUnit::const_pred_iterator getPredEnd() const {
1507 return getCurr()->Preds.end();
1508 }
1509};
1510} // anonymous
1511
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001512static bool hasDataSucc(const SUnit *SU) {
1513 for (SUnit::const_succ_iterator
1514 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001515 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001516 return true;
1517 }
1518 return false;
1519}
1520
Andrew Trick90f711d2012-10-15 18:02:27 +00001521/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1522/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001523void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001524 if (!IsBottomUp)
1525 llvm_unreachable("Top-down ILP metric is unimplemnted");
1526
Andrew Trick48d392e2012-11-28 05:13:28 +00001527 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001528 for (ArrayRef<SUnit>::const_iterator
1529 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1530 const SUnit *SU = &*SI;
1531 if (Impl.isVisited(SU) || hasDataSucc(SU))
1532 continue;
1533
Andrew Trick48d392e2012-11-28 05:13:28 +00001534 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001535 Impl.visitPreorder(SU);
1536 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001537 for (;;) {
1538 // Traverse the leftmost path as far as possible.
1539 while (DFS.getPred() != DFS.getPredEnd()) {
1540 const SDep &PredDep = *DFS.getPred();
1541 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001542 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001543 if (PredDep.getKind() != SDep::Data
1544 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001545 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001546 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001547 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001548 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001549 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001550 continue;
1551 }
1552 Impl.visitPreorder(PredDep.getSUnit());
1553 DFS.follow(PredDep.getSUnit());
1554 }
1555 // Visit the top of the stack in postorder and backtrack.
1556 const SUnit *Child = DFS.getCurr();
1557 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001558 Impl.visitPostorderNode(Child);
1559 if (PredDep)
1560 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001561 if (DFS.isComplete())
1562 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001563 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001564 }
1565 Impl.finalize();
1566}
1567
1568/// The root of the given SubtreeID was just scheduled. For all subtrees
1569/// connected to this tree, record the depth of the connection so that the
1570/// nearest connected subtrees can be prioritized.
1571void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1572 for (SmallVectorImpl<Connection>::const_iterator
1573 I = SubtreeConnections[SubtreeID].begin(),
1574 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1575 SubtreeConnectLevels[I->TreeID] =
1576 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1577 DEBUG(dbgs() << " Tree: " << I->TreeID
1578 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001579 }
1580}
1581
Alp Tokerd8d510a2014-07-01 21:19:13 +00001582LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001583void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001584 OS << InstrCount << " / " << Length << " = ";
1585 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001586 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001587 else
1588 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001589}
1590
Alp Tokerd8d510a2014-07-01 21:19:13 +00001591LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001592void ILPValue::dump() const {
1593 dbgs() << *this << '\n';
1594}
1595
1596namespace llvm {
1597
Alp Tokerd8d510a2014-07-01 21:19:13 +00001598LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001599raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1600 Val.print(OS);
1601 return OS;
1602}
1603
1604} // namespace llvm