blob: 00a0b0fc33a65caa30ee55807377b5dc2cb1dd59 [file] [log] [blame]
Dan Gohmanf90d3b02008-12-08 17:50:35 +00001//===---- ScheduleDAGInstrs.cpp - MachineInstr Rescheduling ---------------===//
Dan Gohman60cb69e2008-11-19 23:18:57 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dan Gohmanf90d3b02008-12-08 17:50:35 +000010// This implements the ScheduleDAGInstrs class, which implements re-scheduling
11// of MachineInstrs.
Dan Gohman60cb69e2008-11-19 23:18:57 +000012//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/ScheduleDAGInstrs.h"
Matthias Braun97d0ffb2015-12-04 01:51:19 +000016#include "llvm/ADT/IntEqClasses.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/MapVector.h"
18#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/SmallSet.h"
Dan Gohman1ee0d412009-01-30 02:49:14 +000020#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohmana4fcd242010-12-15 20:02:24 +000021#include "llvm/Analysis/ValueTracking.h"
Matthias Braund4f64092016-01-20 00:23:32 +000022#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000023#include "llvm/CodeGen/MachineFunctionPass.h"
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Andrew Trick6b104f82013-12-28 21:56:55 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman48b185d2009-09-25 20:36:54 +000026#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman3aab10b2008-12-04 01:35:46 +000028#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trick88517f62012-06-06 19:47:35 +000029#include "llvm/CodeGen/RegisterPressure.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000030#include "llvm/CodeGen/ScheduleDFS.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/Operator.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,
Matthias Braun93563e72015-11-03 01:53:29 +000055 bool RemoveKillFlags)
Matthias Braunb17e8b12015-12-04 19:54:24 +000056 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()),
Matthias Braun93563e72015-11-03 01:53:29 +000057 RemoveKillFlags(RemoveKillFlags), CanHandleTerminators(false),
Matthias Braun97d0ffb2015-12-04 01:51:19 +000058 TrackLaneMasks(false), FirstDbgValue(nullptr) {
Devang Patele5feef02011-06-02 20:07:12 +000059 DbgValues.clear();
Andrew Trick9b635132012-09-18 18:20:00 +000060
Eric Christopher2c635492015-01-27 07:54:39 +000061 const TargetSubtargetInfo &ST = mf.getSubtarget();
Pete Cooper11759452014-09-02 17:43:54 +000062 SchedModel.init(ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000063}
Dan Gohman60cb69e2008-11-19 23:18:57 +000064
Dan Gohman1ee0d412009-01-30 02:49:14 +000065/// getUnderlyingObjectFromInt - This is the function that does the work of
66/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
67static const Value *getUnderlyingObjectFromInt(const Value *V) {
68 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000069 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000070 // If we find a ptrtoint, we can transfer control back to the
71 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000072 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000073 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000074 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000075 // likely that the other operand will lead us to the base
76 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000077 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000078 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000079 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000080 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000081 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000082 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
83 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000084 return V;
85 V = U->getOperand(0);
86 } else {
87 return V;
88 }
Duncan Sands19d0b472010-02-16 11:11:14 +000089 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +000090 } while (1);
91}
92
Hal Finkel66859ae2012-12-10 18:49:16 +000093/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +000094/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +000095static void getUnderlyingObjects(const Value *V,
Mehdi Aminia28d91d2015-03-10 02:37:25 +000096 SmallVectorImpl<Value *> &Objects,
97 const DataLayout &DL) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +000098 SmallPtrSet<const Value *, 16> Visited;
Hal Finkel66859ae2012-12-10 18:49:16 +000099 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000100 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000101 V = Working.pop_back_val();
102
103 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000104 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
Hal Finkel66859ae2012-12-10 18:49:16 +0000105
Craig Toppere1c1d362013-07-03 05:11:49 +0000106 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000107 I != IE; ++I) {
108 V = *I;
David Blaikie70573dc2014-11-19 07:49:26 +0000109 if (!Visited.insert(V).second)
Hal Finkel66859ae2012-12-10 18:49:16 +0000110 continue;
111 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
112 const Value *O =
113 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
114 if (O->getType()->isPointerTy()) {
115 Working.push_back(O);
116 continue;
117 }
118 }
119 Objects.push_back(const_cast<Value *>(V));
120 }
121 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000122}
123
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000124typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
125typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
Benjamin Kramerfd510922013-06-29 18:41:17 +0000126UnderlyingObjectsVector;
127
Hal Finkel66859ae2012-12-10 18:49:16 +0000128/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000129/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000130/// object, return the Value for that object.
131static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000132 const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000133 UnderlyingObjectsVector &Objects,
134 const DataLayout &DL) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000135 if (!MI->hasOneMemOperand() ||
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000136 (!(*MI->memoperands_begin())->getValue() &&
137 !(*MI->memoperands_begin())->getPseudoValue()) ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000138 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000139 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000140
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000141 if (const PseudoSourceValue *PSV =
142 (*MI->memoperands_begin())->getPseudoValue()) {
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000143 // Function that contain tail calls don't have unique PseudoSourceValue
144 // objects. Two PseudoSourceValues might refer to the same or overlapping
145 // locations. The client code calling this function assumes this is not the
146 // case. So return a conservative answer of no known object.
147 if (MFI->hasTailCall())
148 return;
149
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000150 // For now, ignore PseudoSourceValues which may alias LLVM IR values
151 // because the code that uses this function has no way to cope with
152 // such aliases.
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000153 if (!PSV->isAliased(MFI)) {
154 bool MayAlias = PSV->mayAlias(MFI);
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000155 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
Nick Lewyckyc4a9f8a2014-02-20 06:35:31 +0000156 }
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000157 return;
158 }
159
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000160 const Value *V = (*MI->memoperands_begin())->getValue();
161 if (!V)
162 return;
163
Hal Finkel66859ae2012-12-10 18:49:16 +0000164 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000165 getUnderlyingObjects(V, Objs, DL);
Andrew Trick24b1c482011-05-05 19:24:06 +0000166
Sanjay Patel490aca92015-05-21 16:00:50 +0000167 for (Value *V : Objs) {
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000168 if (!isIdentifiedObject(V)) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000169 Objects.clear();
170 return;
171 }
172
Nick Lewyckyb9e44d62014-02-20 05:06:26 +0000173 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000174 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000175}
176
Andrew Trick7405c6d2012-04-20 20:05:21 +0000177void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
178 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000179}
180
Andrew Trick52226d42012-03-07 23:00:49 +0000181void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000182 // Subclasses should no longer refer to the old block.
Craig Topperc0196b12014-04-14 00:51:57 +0000183 BB = nullptr;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000184}
185
Andrew Trick60cf03e2012-03-07 05:21:52 +0000186/// Initialize the DAG and common scheduler state for the current scheduling
187/// region. This does not actually create the DAG, only clears it. The
188/// scheduling driver may call BuildSchedGraph multiple times per scheduling
189/// region.
190void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
191 MachineBasicBlock::iterator begin,
192 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000193 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000194 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000195 RegionBegin = begin;
196 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000197 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000198}
199
200/// Close the current scheduling region. Don't clear any state in case the
201/// driver wants to refer to the previous scheduling region.
202void ScheduleDAGInstrs::exitRegion() {
203 // Nothing to do.
204}
205
Andrew Trick52226d42012-03-07 23:00:49 +0000206/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000207/// list of instructions being scheduled to scheduling barrier by adding
208/// the exit SU to the register defs and use list. This is because we want to
209/// make sure instructions which define registers that are either used by
210/// the terminator or are live-out are properly scheduled. This is
211/// especially important when the definition latency of the return value(s)
212/// are too high to be hidden by the branch or when the liveout registers
213/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000214void ScheduleDAGInstrs::addSchedBarrierDeps() {
Craig Topperc0196b12014-04-14 00:51:57 +0000215 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : nullptr;
Evan Cheng15459b62010-10-23 02:10:46 +0000216 ExitSU.setInstr(ExitMI);
217 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000218 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000219 if (ExitMI && AllDepKnown) {
220 // If it's a call or a barrier, add dependencies on the defs and uses of
221 // instruction.
222 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
223 const MachineOperand &MO = ExitMI->getOperand(i);
224 if (!MO.isReg() || MO.isDef()) continue;
225 unsigned Reg = MO.getReg();
226 if (Reg == 0) continue;
227
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000228 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000229 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Matthias Braun93563e72015-11-03 01:53:29 +0000230 else if (MO.readsReg()) // ignore undef operands
231 addVRegUseDeps(&ExitSU, i);
Evan Cheng15459b62010-10-23 02:10:46 +0000232 }
233 } else {
234 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000235 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000236 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000237 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
238 SE = BB->succ_end(); SI != SE; ++SI)
Matthias Braund9da1622015-09-09 18:08:03 +0000239 for (const auto &LI : (*SI)->liveins()) {
240 if (!Uses.contains(LI.PhysReg))
241 Uses.insert(PhysRegSUOper(&ExitSU, -1, LI.PhysReg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000242 }
Evan Cheng15459b62010-10-23 02:10:46 +0000243 }
244}
245
Andrew Trickd675a4c2012-02-23 01:52:38 +0000246/// MO is an operand of SU's instruction that defines a physical register. Add
247/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000248void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
249 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000250 assert(MO.isDef() && "expect physreg def");
251
252 // Ask the target if address-backscheduling is desirable, and if so how much.
Eric Christopher2c635492015-01-27 07:54:39 +0000253 const TargetSubtargetInfo &ST = MF.getSubtarget();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000254
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000255 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
256 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000257 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000258 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000259 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
260 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000261 if (UseSU == SU)
262 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000263
Andrew Trick07dced62012-10-08 18:54:00 +0000264 // Adjust the dependence latency using operand def/use information,
265 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000266 int UseOp = I->OpIdx;
Craig Topperc0196b12014-04-14 00:51:57 +0000267 MachineInstr *RegUse = nullptr;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000268 SDep Dep;
269 if (UseOp < 0)
270 Dep = SDep(SU, SDep::Artificial);
271 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000272 // Set the hasPhysRegDefs only for physreg defs that have a use within
273 // the scheduling region.
274 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000275 Dep = SDep(SU, SDep::Data, *Alias);
276 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000277 }
278 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000279 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
280 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000281
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000282 ST.adjustSchedDependency(SU, UseSU, Dep);
283 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000284 }
285 }
286}
287
Andrew Trickdbee9d82012-01-14 02:17:15 +0000288/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
289/// this SUnit to following instructions in the same scheduling region that
290/// depend the physical register referenced at OperIdx.
291void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000292 MachineInstr *MI = SU->getInstr();
293 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000294
295 // Optionally add output and anti dependencies. For anti
296 // dependencies we use a latency of 0 because for a multi-issue
297 // target we want to allow the defining instruction to issue
298 // in the same cycle as the using instruction.
299 // TODO: Using a latency of 1 here for output dependencies assumes
300 // there's no cost for reusing registers.
301 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000302 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
303 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000304 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000305 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000306 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
307 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000308 if (DefSU == &ExitSU)
309 continue;
310 if (DefSU != SU &&
311 (Kind != SDep::Output || !MO.isDead() ||
Hal Finkel66d77912014-12-05 02:07:35 +0000312 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
Andrew Trickdbee9d82012-01-14 02:17:15 +0000313 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000314 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000315 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000316 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000317 Dep.setLatency(
318 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000319 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000320 }
321 }
322 }
323 }
324
Andrew Trickd675a4c2012-02-23 01:52:38 +0000325 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000326 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000327 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
328 // retrieve the existing SUnits list for this register's uses.
329 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000330 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000331 if (RemoveKillFlags)
332 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000333 }
334 else {
Andrew Trickae535612012-08-23 00:39:43 +0000335 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000336 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000337
Andrew Trickd675a4c2012-02-23 01:52:38 +0000338 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000339 if (Uses.contains(Reg))
340 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000341
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000342 if (!MO.isDead()) {
343 Defs.eraseAll(Reg);
344 } else if (SU->isCall) {
345 // Calls will not be reordered because of chain dependencies (see
346 // below). Since call operands are dead, calls may continue to be added
347 // to the DefList making dependence checking quadratic in the size of
348 // the block. Instead, we leave only one call at the back of the
349 // DefList.
350 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
351 Reg2SUnitsMap::iterator B = P.first;
352 Reg2SUnitsMap::iterator I = P.second;
353 for (bool isBegin = I == B; !isBegin; /* empty */) {
354 isBegin = (--I) == B;
355 if (!I->SU->isCall)
356 break;
357 I = Defs.erase(I);
358 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000359 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000360
Andrew Trickd675a4c2012-02-23 01:52:38 +0000361 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000362 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000363 }
364}
365
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000366LaneBitmask ScheduleDAGInstrs::getLaneMaskForMO(const MachineOperand &MO) const
367{
368 unsigned Reg = MO.getReg();
369 // No point in tracking lanemasks if we don't have interesting subregisters.
370 const TargetRegisterClass &RC = *MRI.getRegClass(Reg);
371 if (!RC.HasDisjunctSubRegs)
372 return ~0u;
373
374 unsigned SubReg = MO.getSubReg();
375 if (SubReg == 0)
376 return RC.getLaneMask();
377 return TRI->getSubRegIndexLaneMask(SubReg);
378}
379
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000380/// addVRegDefDeps - Add register output and data dependencies from this SUnit
381/// to instructions that occur later in the same scheduling region if they read
382/// from or write to the virtual register defined at OperIdx.
383///
384/// TODO: Hoist loop induction variable increments. This has to be
385/// reevaluated. Generally, IV scheduling should be done before coalescing.
386void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000387 MachineInstr *MI = SU->getInstr();
388 MachineOperand &MO = MI->getOperand(OperIdx);
389 unsigned Reg = MO.getReg();
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000390
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000391 LaneBitmask DefLaneMask;
392 LaneBitmask KillLaneMask;
393 if (TrackLaneMasks) {
394 bool IsKill = MO.getSubReg() == 0 || MO.isUndef();
395 DefLaneMask = getLaneMaskForMO(MO);
396 // If we have a <read-undef> flag, none of the lane values comes from an
397 // earlier instruction.
398 KillLaneMask = IsKill ? ~0u : DefLaneMask;
399
400 // Clear undef flag, we'll re-add it later once we know which subregister
401 // Def is first.
402 MO.setIsUndef(false);
403 } else {
404 DefLaneMask = ~0u;
405 KillLaneMask = ~0u;
406 }
407
408 if (MO.isDead()) {
409 assert(CurrentVRegUses.find(Reg) == CurrentVRegUses.end() &&
410 "Dead defs should have no uses");
411 } else {
412 // Add data dependence to all uses we found so far.
413 const TargetSubtargetInfo &ST = MF.getSubtarget();
414 for (VReg2SUnitOperIdxMultiMap::iterator I = CurrentVRegUses.find(Reg),
415 E = CurrentVRegUses.end(); I != E; /*empty*/) {
416 LaneBitmask LaneMask = I->LaneMask;
417 // Ignore uses of other lanes.
418 if ((LaneMask & KillLaneMask) == 0) {
419 ++I;
420 continue;
421 }
422
423 if ((LaneMask & DefLaneMask) != 0) {
424 SUnit *UseSU = I->SU;
425 MachineInstr *Use = UseSU->getInstr();
426 SDep Dep(SU, SDep::Data, Reg);
427 Dep.setLatency(SchedModel.computeOperandLatency(MI, OperIdx, Use,
428 I->OperandIndex));
429 ST.adjustSchedDependency(SU, UseSU, Dep);
430 UseSU->addPred(Dep);
431 }
432
433 LaneMask &= ~KillLaneMask;
434 // If we found a Def for all lanes of this use, remove it from the list.
435 if (LaneMask != 0) {
436 I->LaneMask = LaneMask;
437 ++I;
438 } else
439 I = CurrentVRegUses.erase(I);
440 }
441 }
442
443 // Shortcut: Singly defined vregs do not have output/anti dependencies.
Andrew Trick79795892012-07-30 23:48:17 +0000444 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000445 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000446
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000447 // Add output dependence to the next nearest defs of this vreg.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000448 //
449 // Unless this definition is dead, the output dependence should be
450 // transitively redundant with antidependencies from this definition's
451 // uses. We're conservative for now until we have a way to guarantee the uses
452 // are not eliminated sometime during scheduling. The output dependence edge
453 // is also useful if output latency exceeds def-use latency.
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000454 LaneBitmask LaneMask = DefLaneMask;
455 for (VReg2SUnit &V2SU : make_range(CurrentVRegDefs.find(Reg),
456 CurrentVRegDefs.end())) {
457 // Ignore defs for other lanes.
458 if ((V2SU.LaneMask & LaneMask) == 0)
459 continue;
460 // Add an output dependence.
461 SUnit *DefSU = V2SU.SU;
462 // Ignore additional defs of the same lanes in one instruction. This can
463 // happen because lanemasks are shared for targets with too many
464 // subregisters. We also use some representration tricks/hacks where we
465 // add super-register defs/uses, to imply that although we only access parts
466 // of the reg we care about the full one.
467 if (DefSU == SU)
468 continue;
469 SDep Dep(SU, SDep::Output, Reg);
470 Dep.setLatency(
471 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
472 DefSU->addPred(Dep);
473
474 // Update current definition. This can get tricky if the def was about a
475 // bigger lanemask before. We then have to shrink it and create a new
476 // VReg2SUnit for the non-overlapping part.
477 LaneBitmask OverlapMask = V2SU.LaneMask & LaneMask;
478 LaneBitmask NonOverlapMask = V2SU.LaneMask & ~LaneMask;
479 if (NonOverlapMask != 0)
480 CurrentVRegDefs.insert(VReg2SUnit(Reg, NonOverlapMask, V2SU.SU));
481 V2SU.SU = SU;
482 V2SU.LaneMask = OverlapMask;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000483 }
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000484 // If there was no CurrentVRegDefs entry for some lanes yet, create one.
485 if (LaneMask != 0)
486 CurrentVRegDefs.insert(VReg2SUnit(Reg, LaneMask, SU));
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000487}
488
Andrew Trick46cc9a42012-02-22 06:08:11 +0000489/// addVRegUseDeps - Add a register data dependency if the instruction that
490/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
491/// register antidependency from this SUnit to instructions that occur later in
492/// the same scheduling region if they write the virtual register.
493///
494/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000495void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000496 const MachineInstr *MI = SU->getInstr();
497 const MachineOperand &MO = MI->getOperand(OperIdx);
498 unsigned Reg = MO.getReg();
Andrew Trick46cc9a42012-02-22 06:08:11 +0000499
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000500 // Remember the use. Data dependencies will be added when we find the def.
501 LaneBitmask LaneMask = TrackLaneMasks ? getLaneMaskForMO(MO) : ~0u;
502 CurrentVRegUses.insert(VReg2SUnitOperIdx(Reg, LaneMask, OperIdx, SU));
503
504 // Add antidependences to the following defs of the vreg.
505 for (VReg2SUnit &V2SU : make_range(CurrentVRegDefs.find(Reg),
506 CurrentVRegDefs.end())) {
507 // Ignore defs for unrelated lanes.
508 LaneBitmask PrevDefLaneMask = V2SU.LaneMask;
509 if ((PrevDefLaneMask & LaneMask) == 0)
510 continue;
511 if (V2SU.SU == SU)
512 continue;
513
514 V2SU.SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick2bc74c22013-08-30 04:36:57 +0000515 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000516}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000517
Andrew Trickda01ba32012-05-15 18:59:41 +0000518/// Return true if MI is an instruction we are unable to reason about
519/// (like a call or something with unmodeled side effects).
520static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
Rafael Espindola84921b92015-10-24 23:11:13 +0000521 return MI->isCall() || MI->hasUnmodeledSideEffects() ||
Chad Rosierb46d0f92016-01-26 19:33:57 +0000522 (MI->hasOrderedMemoryRef() && !MI->isInvariantLoad(AA));
Andrew Trickda01ba32012-05-15 18:59:41 +0000523}
524
525// This MI might have either incomplete info, or known to be unsafe
526// to deal with (i.e. volatile object).
527static inline bool isUnsafeMemoryObject(MachineInstr *MI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000528 const MachineFrameInfo *MFI,
529 const DataLayout &DL) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000530 if (!MI || MI->memoperands_empty())
531 return true;
532 // We purposefully do no check for hasOneMemOperand() here
533 // in hope to trigger an assert downstream in order to
534 // finish implementation.
535 if ((*MI->memoperands_begin())->isVolatile() ||
536 MI->hasUnmodeledSideEffects())
537 return true;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000538
539 if ((*MI->memoperands_begin())->getPseudoValue()) {
540 // Similarly to getUnderlyingObjectForInstr:
541 // For now, ignore PseudoSourceValues which may alias LLVM IR values
542 // because the code that uses this function has no way to cope with
543 // such aliases.
544 return true;
545 }
546
Andrew Trickda01ba32012-05-15 18:59:41 +0000547 const Value *V = (*MI->memoperands_begin())->getValue();
548 if (!V)
549 return true;
550
Hal Finkel66859ae2012-12-10 18:49:16 +0000551 SmallVector<Value *, 4> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000552 getUnderlyingObjects(V, Objs, DL);
Sanjay Patelf8c028c2015-05-21 17:04:17 +0000553 for (Value *V : Objs) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000554 // Does this pointer refer to a distinct and identifiable object?
Sanjay Patelf8c028c2015-05-21 17:04:17 +0000555 if (!isIdentifiedObject(V))
Andrew Trickda01ba32012-05-15 18:59:41 +0000556 return true;
557 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000558
559 return false;
560}
561
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000562/// This returns true if the two MIs need a chain edge between them.
Andrew Trickda01ba32012-05-15 18:59:41 +0000563/// If these are not even memory operations, we still may need
564/// chain deps between them. The question really is - could
565/// these two MIs be reordered during scheduling from memory dependency
566/// point of view.
567static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000568 const DataLayout &DL, MachineInstr *MIa,
Andrew Trickda01ba32012-05-15 18:59:41 +0000569 MachineInstr *MIb) {
Chad Rosier3528c1e2014-09-08 14:43:48 +0000570 const MachineFunction *MF = MIa->getParent()->getParent();
571 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
572
Andrew Trickda01ba32012-05-15 18:59:41 +0000573 // Cover a trivial case - no edge is need to itself.
574 if (MIa == MIb)
575 return false;
Chad Rosier3528c1e2014-09-08 14:43:48 +0000576
577 // Let the target decide if memory accesses cannot possibly overlap.
578 if ((MIa->mayLoad() || MIa->mayStore()) &&
579 (MIb->mayLoad() || MIb->mayStore()))
580 if (TII->areMemAccessesTriviallyDisjoint(MIa, MIb, AA))
581 return false;
Andrew Trickda01ba32012-05-15 18:59:41 +0000582
Hal Finkel2150e3a2014-01-08 21:52:02 +0000583 // FIXME: Need to handle multiple memory operands to support all targets.
584 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
585 return true;
586
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000587 if (isUnsafeMemoryObject(MIa, MFI, DL) || isUnsafeMemoryObject(MIb, MFI, DL))
Andrew Trickda01ba32012-05-15 18:59:41 +0000588 return true;
589
590 // If we are dealing with two "normal" loads, we do not need an edge
591 // between them - they could be reordered.
592 if (!MIa->mayStore() && !MIb->mayStore())
593 return false;
594
595 // To this point analysis is generic. From here on we do need AA.
596 if (!AA)
597 return true;
598
599 MachineMemOperand *MMOa = *MIa->memoperands_begin();
600 MachineMemOperand *MMOb = *MIb->memoperands_begin();
601
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000602 if (!MMOa->getValue() || !MMOb->getValue())
603 return true;
604
Andrew Trickda01ba32012-05-15 18:59:41 +0000605 // The following interface to AA is fashioned after DAGCombiner::isAlias
606 // and operates with MachineMemOperand offset with some important
607 // assumptions:
608 // - LLVM fundamentally assumes flat address spaces.
609 // - MachineOperand offset can *only* result from legalization and
610 // cannot affect queries other than the trivial case of overlap
611 // checking.
612 // - These offsets never wrap and never step outside
613 // of allocated objects.
614 // - There should never be any negative offsets here.
615 //
616 // FIXME: Modify API to hide this math from "user"
617 // FIXME: Even before we go to AA we can reason locally about some
618 // memory objects. It can save compile time, and possibly catch some
619 // corner cases not currently covered.
620
621 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
622 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
623
624 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
625 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
626 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
627
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000628 AliasResult AAResult =
Chandler Carruthac80dc72015-06-17 07:18:54 +0000629 AA->alias(MemoryLocation(MMOa->getValue(), Overlapa,
630 UseTBAA ? MMOa->getAAInfo() : AAMDNodes()),
631 MemoryLocation(MMOb->getValue(), Overlapb,
632 UseTBAA ? MMOb->getAAInfo() : AAMDNodes()));
Andrew Trickda01ba32012-05-15 18:59:41 +0000633
Chandler Carruthc3f49eb2015-06-22 02:16:51 +0000634 return (AAResult != NoAlias);
Andrew Trickda01ba32012-05-15 18:59:41 +0000635}
636
637/// This recursive function iterates over chain deps of SUb looking for
638/// "latest" node that needs a chain edge to SUa.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000639static unsigned iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
640 const DataLayout &DL, SUnit *SUa, SUnit *SUb,
641 SUnit *ExitSU, unsigned *Depth,
642 SmallPtrSetImpl<const SUnit *> &Visited) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000643 if (!SUa || !SUb || SUb == ExitSU)
644 return *Depth;
645
646 // Remember visited nodes.
David Blaikie70573dc2014-11-19 07:49:26 +0000647 if (!Visited.insert(SUb).second)
Andrew Trickda01ba32012-05-15 18:59:41 +0000648 return *Depth;
649 // If there is _some_ dependency already in place, do not
650 // descend any further.
651 // TODO: Need to make sure that if that dependency got eliminated or ignored
652 // for any reason in the future, we would not violate DAG topology.
653 // Currently it does not happen, but makes an implicit assumption about
654 // future implementation.
655 //
656 // Independently, if we encounter node that is some sort of global
657 // object (like a call) we already have full set of dependencies to it
658 // and we can stop descending.
659 if (SUa->isSucc(SUb) ||
660 isGlobalMemoryObject(AA, SUb->getInstr()))
661 return *Depth;
662
663 // If we do need an edge, or we have exceeded depth budget,
664 // add that edge to the predecessors chain of SUb,
665 // and stop descending.
666 if (*Depth > 200 ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000667 MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000668 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000669 return *Depth;
670 }
671 // Track current depth.
672 (*Depth)++;
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000673 // Iterate over memory dependencies only.
Andrew Trickda01ba32012-05-15 18:59:41 +0000674 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
675 I != E; ++I)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000676 if (I->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000677 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000678 return *Depth;
679}
680
681/// This function assumes that "downward" from SU there exist
682/// tail/leaf of already constructed DAG. It iterates downward and
683/// checks whether SU can be aliasing any node dominated
684/// by it.
685static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000686 const DataLayout &DL, SUnit *SU, SUnit *ExitSU,
687 std::set<SUnit *> &CheckList,
Andrew Trick344fb642012-06-13 02:39:03 +0000688 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000689 if (!SU)
690 return;
691
692 SmallPtrSet<const SUnit*, 16> Visited;
693 unsigned Depth = 0;
694
695 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
696 I != IE; ++I) {
697 if (SU == *I)
698 continue;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000699 if (MIsNeedChainEdge(AA, MFI, DL, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000700 SDep Dep(SU, SDep::MayAliasMem);
701 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
702 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000703 }
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000704
705 // Iterate recursively over all previously added memory chain
706 // successors. Keep track of visited nodes.
Andrew Trickda01ba32012-05-15 18:59:41 +0000707 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
708 JE = (*I)->Succs.end(); J != JE; ++J)
Jonas Paulssonfcf0cba2015-01-07 13:38:29 +0000709 if (J->isNormalMemoryOrBarrier())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000710 iterateChainSucc(AA, MFI, DL, SU, J->getSUnit(), ExitSU, &Depth,
711 Visited);
Andrew Trickda01ba32012-05-15 18:59:41 +0000712 }
713}
714
715/// Check whether two objects need a chain edge, if so, add it
716/// otherwise remember the rejected SU.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000717static inline void addChainDependency(AliasAnalysis *AA,
718 const MachineFrameInfo *MFI,
719 const DataLayout &DL, SUnit *SUa,
720 SUnit *SUb, std::set<SUnit *> &RejectList,
721 unsigned TrueMemOrderLatency = 0,
722 bool isNormalMemory = false) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000723 // If this is a false dependency,
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000724 // do not add the edge, but remember the rejected node.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000725 if (MIsNeedChainEdge(AA, MFI, DL, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000726 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
727 Dep.setLatency(TrueMemOrderLatency);
728 SUb->addPred(Dep);
729 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000730 else {
731 // Duplicate entries should be ignored.
732 RejectList.insert(SUb);
733 DEBUG(dbgs() << "\tReject chain dep between SU("
734 << SUa->NodeNum << ") and SU("
735 << SUb->NodeNum << ")\n");
736 }
737}
738
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000739/// Create an SUnit for each real instruction, numbered in top-down topological
Andrew Trick46cc9a42012-02-22 06:08:11 +0000740/// order. The instruction order A < B, implies that no edge exists from B to A.
741///
742/// Map each real instruction to its SUnit.
743///
Andrew Trick8823dec2012-03-14 04:00:41 +0000744/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
745/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
746/// instead of pointers.
747///
748/// MachineScheduler relies on initSUnits numbering the nodes by their order in
749/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000750void ScheduleDAGInstrs::initSUnits() {
751 // We'll be allocating one SUnit for each real instruction in the region,
752 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000753 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000754
Andrew Trick8c207e42012-03-09 04:29:02 +0000755 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000756 MachineInstr *MI = I;
757 if (MI->isDebugValue())
758 continue;
759
Andrew Trick52226d42012-03-07 23:00:49 +0000760 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000761 MISUnitMap[MI] = SU;
762
763 SU->isCall = MI->isCall();
764 SU->isCommutable = MI->isCommutable();
765
766 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000767 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000768
Andrew Trick1766f932014-04-18 17:35:08 +0000769 // If this SUnit uses a reserved or unbuffered resource, mark it as such.
770 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000771 // Reserved resources block an instruction from issuing and stall the
Andrew Trick1766f932014-04-18 17:35:08 +0000772 // entire pipeline. These are identified by BufferSize=0.
773 //
Alp Tokerbeaca192014-05-15 01:52:21 +0000774 // Unbuffered resources prevent execution of subsequent instructions that
Andrew Trick1766f932014-04-18 17:35:08 +0000775 // require the same resources. This is used for in-order execution pipelines
776 // within an out-of-order core. These are identified by BufferSize=1.
Andrew Trick880e5732013-12-05 17:55:58 +0000777 if (SchedModel.hasInstrSchedModel()) {
778 const MCSchedClassDesc *SC = getSchedClass(SU);
779 for (TargetSchedModel::ProcResIter
780 PI = SchedModel.getWriteProcResBegin(SC),
781 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000782 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
783 case 0:
784 SU->hasReservedResource = true;
785 break;
786 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000787 SU->isUnbuffered = true;
788 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000789 default:
790 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000791 }
792 }
793 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000794 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000795}
796
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000797void ScheduleDAGInstrs::collectVRegUses(SUnit *SU) {
798 const MachineInstr *MI = SU->getInstr();
799 for (const MachineOperand &MO : MI->operands()) {
800 if (!MO.isReg())
801 continue;
802 if (!MO.readsReg())
803 continue;
804 if (TrackLaneMasks && !MO.isUse())
805 continue;
806
807 unsigned Reg = MO.getReg();
808 if (!TargetRegisterInfo::isVirtualRegister(Reg))
809 continue;
810
Matthias Braund4f64092016-01-20 00:23:32 +0000811 // Ignore re-defs.
812 if (TrackLaneMasks) {
813 bool FoundDef = false;
814 for (const MachineOperand &MO2 : MI->operands()) {
815 if (MO2.isReg() && MO2.isDef() && MO2.getReg() == Reg && !MO2.isDead()) {
816 FoundDef = true;
817 break;
818 }
819 }
820 if (FoundDef)
821 continue;
822 }
823
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000824 // Record this local VReg use.
825 VReg2SUnitMultiMap::iterator UI = VRegUses.find(Reg);
826 for (; UI != VRegUses.end(); ++UI) {
827 if (UI->SU == SU)
828 break;
829 }
830 if (UI == VRegUses.end())
831 VRegUses.insert(VReg2SUnit(Reg, 0, SU));
832 }
833}
834
Alp Tokerf907b892013-12-05 05:44:44 +0000835/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000836/// DAG builder is an efficient place to do it because it already visits
837/// operands.
838void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000839 RegPressureTracker *RPTracker,
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000840 PressureDiffs *PDiffs,
Matthias Braund4f64092016-01-20 00:23:32 +0000841 LiveIntervals *LIS,
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000842 bool TrackLaneMasks) {
Eric Christopher2c635492015-01-27 07:54:39 +0000843 const TargetSubtargetInfo &ST = MF.getSubtarget();
Hal Finkelb350ffd2013-08-29 03:25:05 +0000844 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
845 : ST.useAA();
Craig Topperc0196b12014-04-14 00:51:57 +0000846 AliasAnalysis *AAForDep = UseAA ? AA : nullptr;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000847
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000848 this->TrackLaneMasks = TrackLaneMasks;
Andrew Trick310190e2013-09-04 21:00:02 +0000849 MISUnitMap.clear();
850 ScheduleDAG::clearDAG();
851
Andrew Trick46cc9a42012-02-22 06:08:11 +0000852 // Create an SUnit for each real instruction.
853 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000854
Andrew Trick1a831342013-08-30 03:49:48 +0000855 if (PDiffs)
856 PDiffs->init(SUnits.size());
857
Dan Gohman3aab10b2008-12-04 01:35:46 +0000858 // We build scheduling units by walking a block's instruction list from bottom
859 // to top.
860
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000861 // Remember where a generic side-effecting instruction is as we proceed.
Craig Topperc0196b12014-04-14 00:51:57 +0000862 SUnit *BarrierChain = nullptr, *AliasChain = nullptr;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000863
David Goodwind2f9c042009-11-09 19:22:17 +0000864 // Memory references to specific known memory locations are tracked
865 // so that they can be given more precise dependencies. We track
866 // separately the known memory locations that may alias and those
867 // that are known not to alias
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000868 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
869 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000870 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000871
Dale Johannesen49de0602010-03-10 22:13:47 +0000872 // Remove any stale debug info; sometimes BuildSchedGraph is called again
873 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000874 DbgValues.clear();
Craig Topperc0196b12014-04-14 00:51:57 +0000875 FirstDbgValue = nullptr;
Dale Johannesen49de0602010-03-10 22:13:47 +0000876
Andrew Trickd675a4c2012-02-23 01:52:38 +0000877 assert(Defs.empty() && Uses.empty() &&
878 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000879 Defs.setUniverse(TRI->getNumRegs());
880 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000881
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000882 assert(CurrentVRegDefs.empty() && "nobody else should use CurrentVRegDefs");
883 assert(CurrentVRegUses.empty() && "nobody else should use CurrentVRegUses");
884 unsigned NumVirtRegs = MRI.getNumVirtRegs();
885 CurrentVRegDefs.setUniverse(NumVirtRegs);
886 CurrentVRegUses.setUniverse(NumVirtRegs);
887
Andrew Trick8dd26f02013-08-23 17:48:39 +0000888 VRegUses.clear();
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000889 VRegUses.setUniverse(NumVirtRegs);
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000890
Andrew Trickd675a4c2012-02-23 01:52:38 +0000891 // Model data dependencies between instructions being scheduled and the
892 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000893 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000894
Dan Gohmanb9543432009-02-10 23:27:53 +0000895 // Walk the list of instructions, from bottom moving up.
Craig Topperc0196b12014-04-14 00:51:57 +0000896 MachineInstr *DbgMI = nullptr;
Andrew Trick8c207e42012-03-09 04:29:02 +0000897 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000898 MII != MIE; --MII) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000899 MachineInstr *MI = std::prev(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000900 if (MI && DbgMI) {
901 DbgValues.push_back(std::make_pair(DbgMI, MI));
Craig Topperc0196b12014-04-14 00:51:57 +0000902 DbgMI = nullptr;
Devang Patele5feef02011-06-02 20:07:12 +0000903 }
904
Dale Johannesen49de0602010-03-10 22:13:47 +0000905 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000906 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000907 continue;
908 }
Andrew Trick1a831342013-08-30 03:49:48 +0000909 SUnit *SU = MISUnitMap[MI];
910 assert(SU && "No SUnit mapped to this MI");
911
Andrew Trick88639922012-04-24 17:56:43 +0000912 if (RPTracker) {
Matthias Braun97d0ffb2015-12-04 01:51:19 +0000913 collectVRegUses(SU);
Matthias Braunb505c762016-01-12 22:57:35 +0000914
915 RegisterOperands RegOpers;
Matthias Braun5d458612016-01-20 00:23:26 +0000916 RegOpers.collect(*MI, *TRI, MRI, TrackLaneMasks, false);
Matthias Braund4f64092016-01-20 00:23:32 +0000917 if (TrackLaneMasks) {
918 SlotIndex SlotIdx = LIS->getInstructionIndex(MI);
919 RegOpers.adjustLaneLiveness(*LIS, MRI, SlotIdx);
920 }
Matthias Braunb505c762016-01-12 22:57:35 +0000921 if (PDiffs != nullptr)
922 PDiffs->addInstruction(SU->NodeNum, RegOpers, MRI);
923
924 RPTracker->recedeSkipDebugValues();
925 assert(&*RPTracker->getPos() == MI && "RPTracker in sync");
926 RPTracker->recede(RegOpers);
Andrew Trick88639922012-04-24 17:56:43 +0000927 }
Devang Patele5feef02011-06-02 20:07:12 +0000928
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000929 assert(
930 (CanHandleTerminators || (!MI->isTerminator() && !MI->isPosition())) &&
931 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000932
Dan Gohman3aab10b2008-12-04 01:35:46 +0000933 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000934 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000935 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
936 const MachineOperand &MO = MI->getOperand(j);
937 if (!MO.isReg()) continue;
938 unsigned Reg = MO.getReg();
939 if (Reg == 0) continue;
940
Andrew Trickdbee9d82012-01-14 02:17:15 +0000941 if (TRI->isPhysicalRegister(Reg))
942 addPhysRegDeps(SU, j);
943 else {
Andrew Trickec256482012-12-18 20:53:01 +0000944 if (MO.isDef()) {
945 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000946 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000947 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000948 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000949 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000950 }
951 }
Andrew Trickec256482012-12-18 20:53:01 +0000952 // If we haven't seen any uses in this scheduling region, create a
953 // dependence edge to ExitSU to model the live-out latency. This is required
954 // for vreg defs with no in-region use, and prefetches with no vreg def.
955 //
956 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
957 // check currently relies on being called before adding chain deps.
958 if (SU->NumSuccs == 0 && SU->Latency > 1
959 && (HasVRegDef || MI->mayLoad())) {
960 SDep Dep(SU, SDep::Artificial);
961 Dep.setLatency(SU->Latency - 1);
962 ExitSU.addPred(Dep);
963 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000964
965 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000966 // Chain dependencies used to enforce memory order should have
967 // latency of 0 (except for true dependency of Store followed by
968 // aliased Load... we estimate that with a single cycle of latency
969 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000970 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
971 // after stack slots are lowered to actual addresses.
972 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
973 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000974 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000975 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000976 // Be conservative with these and add dependencies on all memory
977 // references, even those that are known to not alias.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000978 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000979 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000980 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
981 I->second[i]->addPred(SDep(SU, SDep::Barrier));
982 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000983 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000984 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000985 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000986 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
987 SDep Dep(SU, SDep::Barrier);
988 Dep.setLatency(TrueMemOrderLatency);
989 I->second[i]->addPred(Dep);
990 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000991 }
David Goodwind2f9c042009-11-09 19:22:17 +0000992 // Add SU to the barrier chain.
993 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000994 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000995 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000996 // This is a barrier event that acts as a pivotal node in the DAG,
997 // so it is safe to clear list of exposed nodes.
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000998 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000999 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +00001000 RejectMemNodes.clear();
1001 NonAliasMemDefs.clear();
1002 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +00001003
1004 // fall-through
1005 new_alias_chain:
Jonas Paulssonbf408bb2015-01-07 13:20:57 +00001006 // Chain all possibly aliasing memory references through SU.
Andrew Trick344fb642012-06-13 02:39:03 +00001007 if (AliasChain) {
1008 unsigned ChainLatency = 0;
1009 if (AliasChain->getInstr()->mayLoad())
1010 ChainLatency = TrueMemOrderLatency;
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001011 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU, AliasChain,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001012 RejectMemNodes, ChainLatency);
Andrew Trick344fb642012-06-13 02:39:03 +00001013 }
David Goodwind2f9c042009-11-09 19:22:17 +00001014 AliasChain = SU;
1015 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001016 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001017 PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +00001018 TrueMemOrderLatency);
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001019 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkela228a812014-01-20 14:03:02 +00001020 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
1021 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001022 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001023 I->second[i], RejectMemNodes);
Hal Finkela228a812014-01-20 14:03:02 +00001024 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001025 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001026 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
1027 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001028 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001029 I->second[i], RejectMemNodes, TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +00001030 }
Geoff Berry12fe2272016-01-06 18:14:26 +00001031 // This call must come after calls to addChainDependency() since it
1032 // consumes the 'RejectMemNodes' list that addChainDependency() possibly
1033 // adds to.
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001034 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +00001035 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +00001036 PendingLoads.clear();
1037 AliasMemDefs.clear();
1038 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +00001039 } else if (MI->mayStore()) {
Tom Stellard3e01d472014-12-08 23:36:48 +00001040 // Add dependence on barrier chain, if needed.
1041 // There is no point to check aliasing on barrier event. Even if
1042 // SU and barrier _could_ be reordered, they should not. In addition,
1043 // we have lost all RejectMemNodes below barrier.
1044 if (BarrierChain)
1045 BarrierChain->addPred(SDep(SU, SDep::Barrier));
1046
Benjamin Kramerfd510922013-06-29 18:41:17 +00001047 UnderlyingObjectsVector Objs;
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001048 getUnderlyingObjectsForInstr(MI, MFI, Objs, MF.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +00001049
1050 if (Objs.empty()) {
1051 // Treat all other stores conservatively.
1052 goto new_alias_chain;
1053 }
1054
1055 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +00001056 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
1057 K != KE; ++K) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001058 ValueType V = K->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001059 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001060 if (ThisMayAlias)
1061 MayAlias = true;
1062
Dan Gohman3aab10b2008-12-04 01:35:46 +00001063 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +00001064 // Record the def in MemDefs, first adding a dep if there is
1065 // an existing def.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001066 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001067 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001068 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001069 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +00001070 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +00001071 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001072 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001073 I->second[i], RejectMemNodes, 0, true);
Hal Finkela228a812014-01-20 14:03:02 +00001074
1075 // If we're not using AA, then we only need one store per object.
1076 if (!AAForDep)
1077 I->second.clear();
1078 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +00001079 } else {
Hal Finkela228a812014-01-20 14:03:02 +00001080 if (ThisMayAlias) {
1081 if (!AAForDep)
1082 AliasMemDefs[V].clear();
1083 AliasMemDefs[V].push_back(SU);
1084 } else {
1085 if (!AAForDep)
1086 NonAliasMemDefs[V].clear();
1087 NonAliasMemDefs[V].push_back(SU);
1088 }
Dan Gohman3aab10b2008-12-04 01:35:46 +00001089 }
1090 // Handle the uses in MemUses, if there are any.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001091 MapVector<ValueType, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +00001092 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001093 MapVector<ValueType, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001094 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +00001095 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001096 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001097 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001098 J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +00001099 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +00001100 J->second.clear();
1101 }
David Goodwin00822aa2009-11-02 17:06:28 +00001102 }
Hal Finkel66859ae2012-12-10 18:49:16 +00001103 if (MayAlias) {
1104 // Add dependencies from all the PendingLoads, i.e. loads
1105 // with no underlying object.
1106 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001107 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001108 PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +00001109 TrueMemOrderLatency);
1110 // Add dependence on alias chain, if needed.
1111 if (AliasChain)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001112 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU, AliasChain,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001113 RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +00001114 }
Geoff Berry12fe2272016-01-06 18:14:26 +00001115 // This call must come after calls to addChainDependency() since it
1116 // consumes the 'RejectMemNodes' list that addChainDependency() possibly
1117 // adds to.
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001118 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU, RejectMemNodes,
Jonas Paulssonafa68132015-02-10 13:03:32 +00001119 TrueMemOrderLatency);
Evan Cheng7f8e5632011-12-07 07:15:52 +00001120 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +00001121 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +00001122 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +00001123 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +00001124 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001125 UnderlyingObjectsVector Objs;
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001126 getUnderlyingObjectsForInstr(MI, MFI, Objs, MF.getDataLayout());
Hal Finkel66859ae2012-12-10 18:49:16 +00001127
1128 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001129 // A load with no underlying object. Depend on all
1130 // potentially aliasing stores.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001131 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001132 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001133 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001134 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001135 I->second[i], RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001136
David Goodwind2f9c042009-11-09 19:22:17 +00001137 PendingLoads.push_back(SU);
1138 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001139 } else {
1140 MayAlias = false;
1141 }
1142
Benjamin Kramerfd510922013-06-29 18:41:17 +00001143 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001144 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001145 ValueType V = J->getPointer();
Benjamin Kramerfd510922013-06-29 18:41:17 +00001146 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001147
1148 if (ThisMayAlias)
1149 MayAlias = true;
1150
1151 // A load from a specific PseudoSourceValue. Add precise dependencies.
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001152 MapVector<ValueType, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001153 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Nick Lewyckyaad475b2014-04-15 07:22:52 +00001154 MapVector<ValueType, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001155 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1156 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001157 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001158 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001159 I->second[i], RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001160 if (ThisMayAlias)
1161 AliasMemUses[V].push_back(SU);
1162 else
1163 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001164 }
David Goodwind2f9c042009-11-09 19:22:17 +00001165 // Add dependencies on alias and barrier chains, if needed.
1166 if (MayAlias && AliasChain)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001167 addChainDependency(AAForDep, MFI, MF.getDataLayout(), SU, AliasChain,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001168 RejectMemNodes);
Geoff Berry12fe2272016-01-06 18:14:26 +00001169 if (MayAlias)
1170 // This call must come after calls to addChainDependency() since it
1171 // consumes the 'RejectMemNodes' list that addChainDependency()
1172 // possibly adds to.
1173 adjustChainDeps(AA, MFI, MF.getDataLayout(), SU, &ExitSU,
1174 RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001175 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001176 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001177 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001178 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001179 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001180 if (DbgMI)
1181 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001182
Andrew Trickd675a4c2012-02-23 01:52:38 +00001183 Defs.clear();
1184 Uses.clear();
Matthias Braun97d0ffb2015-12-04 01:51:19 +00001185 CurrentVRegDefs.clear();
1186 CurrentVRegUses.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001187 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001188}
1189
Andrew Trick6b104f82013-12-28 21:56:55 +00001190/// \brief Initialize register live-range state for updating kills.
1191void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1192 // Start with no live registers.
1193 LiveRegs.reset();
1194
1195 // Examine the live-in regs of all successors.
1196 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1197 SE = BB->succ_end(); SI != SE; ++SI) {
Matthias Braund9da1622015-09-09 18:08:03 +00001198 for (const auto &LI : (*SI)->liveins()) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001199 // Repeat, for reg and all subregs.
Matthias Braund9da1622015-09-09 18:08:03 +00001200 for (MCSubRegIterator SubRegs(LI.PhysReg, TRI, /*IncludeSelf=*/true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001201 SubRegs.isValid(); ++SubRegs)
1202 LiveRegs.set(*SubRegs);
1203 }
1204 }
1205}
1206
Pete Cooper300069a2015-05-04 16:52:06 +00001207/// \brief If we change a kill flag on the bundle instruction implicit register
1208/// operands, then we also need to propagate that to any instructions inside
1209/// the bundle which had the same kill state.
1210static void toggleBundleKillFlag(MachineInstr *MI, unsigned Reg,
1211 bool NewKillState) {
1212 if (MI->getOpcode() != TargetOpcode::BUNDLE)
1213 return;
1214
1215 // Walk backwards from the last instruction in the bundle to the first.
1216 // Once we set a kill flag on an instruction, we bail out, as otherwise we
1217 // might set it on too many operands. We will clear as many flags as we
1218 // can though.
Duncan P. N. Exon Smith6e98cd32015-10-09 21:08:19 +00001219 MachineBasicBlock::instr_iterator Begin = MI->getIterator();
Pete Cooper300069a2015-05-04 16:52:06 +00001220 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1221 while (Begin != End) {
Matthias Braune41e1462015-05-29 02:56:46 +00001222 for (MachineOperand &MO : (--End)->operands()) {
1223 if (!MO.isReg() || MO.isDef() || Reg != MO.getReg())
Pete Cooper300069a2015-05-04 16:52:06 +00001224 continue;
1225
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001226 // DEBUG_VALUE nodes do not contribute to code generation and should
1227 // always be ignored. Failure to do so may result in trying to modify
1228 // KILL flags on DEBUG_VALUE nodes, which is distressing.
Matthias Braune41e1462015-05-29 02:56:46 +00001229 if (MO.isDebug())
Saleem Abdulrasoolee13fbe2015-05-12 23:36:18 +00001230 continue;
1231
Pete Cooper300069a2015-05-04 16:52:06 +00001232 // If the register has the internal flag then it could be killing an
1233 // internal def of the register. In this case, just skip. We only want
1234 // to toggle the flag on operands visible outside the bundle.
Matthias Braune41e1462015-05-29 02:56:46 +00001235 if (MO.isInternalRead())
Pete Cooper300069a2015-05-04 16:52:06 +00001236 continue;
1237
Matthias Braune41e1462015-05-29 02:56:46 +00001238 if (MO.isKill() == NewKillState)
Pete Cooper300069a2015-05-04 16:52:06 +00001239 continue;
Matthias Braune41e1462015-05-29 02:56:46 +00001240 MO.setIsKill(NewKillState);
Pete Cooper300069a2015-05-04 16:52:06 +00001241 if (NewKillState)
1242 return;
1243 }
1244 }
1245}
1246
Andrew Trick6b104f82013-12-28 21:56:55 +00001247bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1248 // Setting kill flag...
1249 if (!MO.isKill()) {
1250 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001251 toggleBundleKillFlag(MI, MO.getReg(), true);
Andrew Trick6b104f82013-12-28 21:56:55 +00001252 return false;
1253 }
1254
1255 // If MO itself is live, clear the kill flag...
1256 if (LiveRegs.test(MO.getReg())) {
1257 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001258 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001259 return false;
1260 }
1261
1262 // If any subreg of MO is live, then create an imp-def for that
1263 // subreg and keep MO marked as killed.
1264 MO.setIsKill(false);
Pete Cooper300069a2015-05-04 16:52:06 +00001265 toggleBundleKillFlag(MI, MO.getReg(), false);
Andrew Trick6b104f82013-12-28 21:56:55 +00001266 bool AllDead = true;
1267 const unsigned SuperReg = MO.getReg();
1268 MachineInstrBuilder MIB(MF, MI);
1269 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1270 if (LiveRegs.test(*SubRegs)) {
1271 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1272 AllDead = false;
1273 }
1274 }
1275
Pete Cooper300069a2015-05-04 16:52:06 +00001276 if(AllDead) {
Andrew Trick6b104f82013-12-28 21:56:55 +00001277 MO.setIsKill(true);
Pete Cooper300069a2015-05-04 16:52:06 +00001278 toggleBundleKillFlag(MI, MO.getReg(), true);
1279 }
Andrew Trick6b104f82013-12-28 21:56:55 +00001280 return false;
1281}
1282
1283// FIXME: Reuse the LivePhysRegs utility for this.
1284void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1285 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1286
1287 LiveRegs.resize(TRI->getNumRegs());
1288 BitVector killedRegs(TRI->getNumRegs());
1289
1290 startBlockForKills(MBB);
1291
1292 // Examine block from end to start...
1293 unsigned Count = MBB->size();
1294 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1295 I != E; --Count) {
1296 MachineInstr *MI = --I;
1297 if (MI->isDebugValue())
1298 continue;
1299
1300 // Update liveness. Registers that are defed but not used in this
1301 // instruction are now dead. Mark register and all subregs as they
1302 // are completely defined.
1303 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1304 MachineOperand &MO = MI->getOperand(i);
1305 if (MO.isRegMask())
1306 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1307 if (!MO.isReg()) continue;
1308 unsigned Reg = MO.getReg();
1309 if (Reg == 0) continue;
1310 if (!MO.isDef()) continue;
1311 // Ignore two-addr defs.
1312 if (MI->isRegTiedToUseOperand(i)) continue;
1313
1314 // Repeat for reg and all subregs.
1315 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1316 SubRegs.isValid(); ++SubRegs)
1317 LiveRegs.reset(*SubRegs);
1318 }
1319
1320 // Examine all used registers and set/clear kill flag. When a
1321 // register is used multiple times we only set the kill flag on
1322 // the first use. Don't set kill flags on undef operands.
1323 killedRegs.reset();
1324 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1325 MachineOperand &MO = MI->getOperand(i);
1326 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1327 unsigned Reg = MO.getReg();
1328 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1329
1330 bool kill = false;
1331 if (!killedRegs.test(Reg)) {
1332 kill = true;
1333 // A register is not killed if any subregs are live...
1334 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1335 if (LiveRegs.test(*SubRegs)) {
1336 kill = false;
1337 break;
1338 }
1339 }
1340
1341 // If subreg is not live, then register is killed if it became
1342 // live in this instruction
1343 if (kill)
1344 kill = !LiveRegs.test(Reg);
1345 }
1346
1347 if (MO.isKill() != kill) {
1348 DEBUG(dbgs() << "Fixing " << MO << " in ");
1349 // Warning: toggleKillFlag may invalidate MO.
1350 toggleKillFlag(MI, MO);
1351 DEBUG(MI->dump());
Pete Cooper300069a2015-05-04 16:52:06 +00001352 DEBUG(if (MI->getOpcode() == TargetOpcode::BUNDLE) {
Duncan P. N. Exon Smith6e98cd32015-10-09 21:08:19 +00001353 MachineBasicBlock::instr_iterator Begin = MI->getIterator();
Pete Cooper300069a2015-05-04 16:52:06 +00001354 MachineBasicBlock::instr_iterator End = getBundleEnd(MI);
1355 while (++Begin != End)
1356 DEBUG(Begin->dump());
1357 });
Andrew Trick6b104f82013-12-28 21:56:55 +00001358 }
1359
1360 killedRegs.set(Reg);
1361 }
1362
1363 // Mark any used register (that is not using undef) and subregs as
1364 // now live...
1365 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1366 MachineOperand &MO = MI->getOperand(i);
1367 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1368 unsigned Reg = MO.getReg();
1369 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1370
1371 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1372 SubRegs.isValid(); ++SubRegs)
1373 LiveRegs.set(*SubRegs);
1374 }
1375 }
1376}
1377
Dan Gohman60cb69e2008-11-19 23:18:57 +00001378void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001379#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001380 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001381#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001382}
1383
1384std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
Alp Tokere69170a2014-06-26 22:52:05 +00001385 std::string s;
1386 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001387 if (SU == &EntrySU)
1388 oss << "<entry>";
1389 else if (SU == &ExitSU)
1390 oss << "<exit>";
1391 else
Eric Christopher1cdefae2015-02-27 00:11:34 +00001392 SU->getInstr()->print(oss, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001393 return oss.str();
1394}
1395
Andrew Trick1b2324d2012-03-07 00:18:22 +00001396/// Return the basic block label. It is not necessarilly unique because a block
1397/// contains multiple scheduling regions. But it is fine for visualization.
1398std::string ScheduleDAGInstrs::getDAGName() const {
1399 return "dag." + BB->getFullName();
1400}
Andrew Trick90f711d2012-10-15 18:02:27 +00001401
Andrew Trick48d392e2012-11-28 05:13:28 +00001402//===----------------------------------------------------------------------===//
1403// SchedDFSResult Implementation
1404//===----------------------------------------------------------------------===//
1405
1406namespace llvm {
1407/// \brief Internal state used to compute SchedDFSResult.
1408class SchedDFSImpl {
1409 SchedDFSResult &R;
1410
1411 /// Join DAG nodes into equivalence classes by their subtree.
1412 IntEqClasses SubtreeClasses;
1413 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1414 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1415
Andrew Trickffc80972013-01-25 06:52:27 +00001416 struct RootData {
1417 unsigned NodeID;
1418 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1419 unsigned SubInstrCount; // Instr count in this tree only, not children.
1420
1421 RootData(unsigned id): NodeID(id),
1422 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1423 SubInstrCount(0) {}
1424
1425 unsigned getSparseSetIndex() const { return NodeID; }
1426 };
1427
1428 SparseSet<RootData> RootSet;
1429
Andrew Trick48d392e2012-11-28 05:13:28 +00001430public:
Andrew Trickffc80972013-01-25 06:52:27 +00001431 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1432 RootSet.setUniverse(R.DFSNodeData.size());
1433 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001434
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001435 /// Return true if this node been visited by the DFS traversal.
1436 ///
1437 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1438 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001439 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001440 return R.DFSNodeData[SU->NodeNum].SubtreeID
1441 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001442 }
1443
1444 /// Initialize this node's instruction count. We don't need to flag the node
1445 /// visited until visitPostorder because the DAG cannot have cycles.
1446 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001447 R.DFSNodeData[SU->NodeNum].InstrCount =
1448 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001449 }
1450
1451 /// Called once for each node after all predecessors are visited. Revisit this
1452 /// node's predecessors and potentially join them now that we know the ILP of
1453 /// the other predecessors.
1454 void visitPostorderNode(const SUnit *SU) {
1455 // Mark this node as the root of a subtree. It may be joined with its
1456 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001457 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1458 RootData RData(SU->NodeNum);
1459 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001460
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001461 // If any predecessors are still in their own subtree, they either cannot be
1462 // joined or are large enough to remain separate. If this parent node's
1463 // total instruction count is not greater than a child subtree by at least
1464 // the subtree limit, then try to join it now since splitting subtrees is
1465 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001466 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001467 for (SUnit::const_pred_iterator
1468 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1469 if (PI->getKind() != SDep::Data)
1470 continue;
1471 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001472 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001473 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001474
1475 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001476 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1477 // If the predecessor's parent is invalid, this is a tree edge and the
1478 // current node is the parent.
1479 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1480 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1481 }
1482 else if (RootSet.count(PredNum)) {
1483 // The predecessor is not a root, but is still in the root set. This
1484 // must be the new parent that it was just joined to. Note that
1485 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1486 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001487 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1488 RootSet.erase(PredNum);
1489 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001490 }
Andrew Trickffc80972013-01-25 06:52:27 +00001491 RootSet[SU->NodeNum] = RData;
1492 }
1493
1494 /// Called once for each tree edge after calling visitPostOrderNode on the
1495 /// predecessor. Increment the parent node's instruction count and
1496 /// preemptively join this subtree to its parent's if it is small enough.
1497 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1498 R.DFSNodeData[Succ->NodeNum].InstrCount
1499 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1500 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001501 }
1502
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001503 /// Add a connection for cross edges.
1504 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001505 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1506 }
1507
1508 /// Set each node's subtree ID to the representative ID and record connections
1509 /// between trees.
1510 void finalize() {
1511 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001512 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1513 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1514 && "number of roots should match trees");
1515 for (SparseSet<RootData>::const_iterator
1516 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1517 unsigned TreeID = SubtreeClasses[RI->NodeID];
1518 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1519 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1520 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001521 // Note that SubInstrCount may be greater than InstrCount if we joined
1522 // subtrees across a cross edge. InstrCount will be attributed to the
1523 // original parent, while SubInstrCount will be attributed to the joined
1524 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001525 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001526 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1527 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1528 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001529 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1530 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001531 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001532 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001533 }
1534 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1535 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1536 I != E; ++I) {
1537 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1538 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1539 if (PredTree == SuccTree)
1540 continue;
1541 unsigned Depth = I->first->getDepth();
1542 addConnection(PredTree, SuccTree, Depth);
1543 addConnection(SuccTree, PredTree, Depth);
1544 }
1545 }
1546
1547protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001548 /// Join the predecessor subtree with the successor that is its DFS
1549 /// parent. Apply some heuristics before joining.
1550 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1551 bool CheckLimit = true) {
1552 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1553
1554 // Check if the predecessor is already joined.
1555 const SUnit *PredSU = PredDep.getSUnit();
1556 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001557 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001558 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001559
1560 // Four is the magic number of successors before a node is considered a
1561 // pinch point.
1562 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001563 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1564 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1565 if (SI->getKind() == SDep::Data) {
1566 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001567 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001568 }
1569 }
Andrew Trickffc80972013-01-25 06:52:27 +00001570 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001571 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001572 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001573 SubtreeClasses.join(Succ->NodeNum, PredNum);
1574 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001575 }
1576
Andrew Trick48d392e2012-11-28 05:13:28 +00001577 /// Called by finalize() to record a connection between trees.
1578 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1579 if (!Depth)
1580 return;
1581
Andrew Trickffc80972013-01-25 06:52:27 +00001582 do {
1583 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1584 R.SubtreeConnections[FromTree];
1585 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1586 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1587 if (I->TreeID == ToTree) {
1588 I->Level = std::max(I->Level, Depth);
1589 return;
1590 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001591 }
Andrew Trickffc80972013-01-25 06:52:27 +00001592 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1593 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1594 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001595 }
1596};
1597} // namespace llvm
1598
Andrew Trick90f711d2012-10-15 18:02:27 +00001599namespace {
1600/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1601class SchedDAGReverseDFS {
1602 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1603public:
1604 bool isComplete() const { return DFSStack.empty(); }
1605
1606 void follow(const SUnit *SU) {
1607 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1608 }
1609 void advance() { ++DFSStack.back().second; }
1610
Andrew Trick48d392e2012-11-28 05:13:28 +00001611 const SDep *backtrack() {
1612 DFSStack.pop_back();
Craig Topperc0196b12014-04-14 00:51:57 +00001613 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
Andrew Trick48d392e2012-11-28 05:13:28 +00001614 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001615
1616 const SUnit *getCurr() const { return DFSStack.back().first; }
1617
1618 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1619
1620 SUnit::const_pred_iterator getPredEnd() const {
1621 return getCurr()->Preds.end();
1622 }
1623};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001624} // anonymous
Andrew Trick90f711d2012-10-15 18:02:27 +00001625
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001626static bool hasDataSucc(const SUnit *SU) {
1627 for (SUnit::const_succ_iterator
1628 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001629 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001630 return true;
1631 }
1632 return false;
1633}
1634
Andrew Trick90f711d2012-10-15 18:02:27 +00001635/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1636/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001637void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001638 if (!IsBottomUp)
1639 llvm_unreachable("Top-down ILP metric is unimplemnted");
1640
Andrew Trick48d392e2012-11-28 05:13:28 +00001641 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001642 for (ArrayRef<SUnit>::const_iterator
1643 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1644 const SUnit *SU = &*SI;
1645 if (Impl.isVisited(SU) || hasDataSucc(SU))
1646 continue;
1647
Andrew Trick48d392e2012-11-28 05:13:28 +00001648 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001649 Impl.visitPreorder(SU);
1650 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001651 for (;;) {
1652 // Traverse the leftmost path as far as possible.
1653 while (DFS.getPred() != DFS.getPredEnd()) {
1654 const SDep &PredDep = *DFS.getPred();
1655 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001656 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001657 if (PredDep.getKind() != SDep::Data
1658 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001659 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001660 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001661 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001662 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001663 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001664 continue;
1665 }
1666 Impl.visitPreorder(PredDep.getSUnit());
1667 DFS.follow(PredDep.getSUnit());
1668 }
1669 // Visit the top of the stack in postorder and backtrack.
1670 const SUnit *Child = DFS.getCurr();
1671 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001672 Impl.visitPostorderNode(Child);
1673 if (PredDep)
1674 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001675 if (DFS.isComplete())
1676 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001677 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001678 }
1679 Impl.finalize();
1680}
1681
1682/// The root of the given SubtreeID was just scheduled. For all subtrees
1683/// connected to this tree, record the depth of the connection so that the
1684/// nearest connected subtrees can be prioritized.
1685void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1686 for (SmallVectorImpl<Connection>::const_iterator
1687 I = SubtreeConnections[SubtreeID].begin(),
1688 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1689 SubtreeConnectLevels[I->TreeID] =
1690 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1691 DEBUG(dbgs() << " Tree: " << I->TreeID
1692 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001693 }
1694}
1695
Alp Tokerd8d510a2014-07-01 21:19:13 +00001696LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001697void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001698 OS << InstrCount << " / " << Length << " = ";
1699 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001700 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001701 else
1702 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001703}
1704
Alp Tokerd8d510a2014-07-01 21:19:13 +00001705LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001706void ILPValue::dump() const {
1707 dbgs() << *this << '\n';
1708}
1709
1710namespace llvm {
1711
Alp Tokerd8d510a2014-07-01 21:19:13 +00001712LLVM_DUMP_METHOD
Andrew Trick90f711d2012-10-15 18:02:27 +00001713raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1714 Val.print(OS);
1715 return OS;
1716}
1717
1718} // namespace llvm