blob: f0de7982b12b25abe045a2df23abf9467823025c [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
Andrew Trick48d392e2012-11-28 05:13:28 +000015#define DEBUG_TYPE "misched"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/CodeGen/ScheduleDAGInstrs.h"
17#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"
Andrew Trick46cc9a42012-02-22 06:08:11 +000022#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000023#include "llvm/CodeGen/MachineFunctionPass.h"
Andrew Trick6b104f82013-12-28 21:56:55 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman48b185d2009-09-25 20:36:54 +000025#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohmandddc1ac2008-12-16 03:25:46 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman3aab10b2008-12-04 01:35:46 +000027#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trick88517f62012-06-06 19:47:35 +000028#include "llvm/CodeGen/RegisterPressure.h"
Andrew Trickcd1c2f92012-11-28 05:13:24 +000029#include "llvm/CodeGen/ScheduleDFS.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Operator.h"
Evan Cheng8264e272011-06-29 01:14:12 +000031#include "llvm/MC/MCInstrItineraries.h"
Andrew Trickda01ba32012-05-15 18:59:41 +000032#include "llvm/Support/CommandLine.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000033#include "llvm/Support/Debug.h"
Andrew Trick90f711d2012-10-15 18:02:27 +000034#include "llvm/Support/Format.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000035#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Target/TargetInstrInfo.h"
37#include "llvm/Target/TargetMachine.h"
38#include "llvm/Target/TargetRegisterInfo.h"
39#include "llvm/Target/TargetSubtargetInfo.h"
Andrew Trickc01b0042013-08-23 17:48:43 +000040#include <queue>
41
Dan Gohman60cb69e2008-11-19 23:18:57 +000042using namespace llvm;
43
Andrew Trickda01ba32012-05-15 18:59:41 +000044static cl::opt<bool> EnableAASchedMI("enable-aa-sched-mi", cl::Hidden,
45 cl::ZeroOrMore, cl::init(false),
46 cl::desc("Enable use of AA during MI GAD construction"));
47
Hal Finkeldbebb522014-01-25 19:24:54 +000048// FIXME: Enable the use of TBAA. There are two known issues preventing this:
49// 1. Stack coloring does not update TBAA when merging allocas
50// 2. CGP inserts ptrtoint/inttoptr pairs when sinking address computations.
51// Because BasicAA does not handle inttoptr, we'll often miss basic type
52// punning idioms that we need to catch so we don't miscompile real-world
53// code.
54static cl::opt<bool> UseTBAA("use-tbaa-in-sched-mi", cl::Hidden,
55 cl::init(false), cl::desc("Enable use of TBAA during MI GAD construction"));
56
Dan Gohman619ef482009-01-15 19:20:50 +000057ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
Dan Gohmandddc1ac2008-12-16 03:25:46 +000058 const MachineLoopInfo &mli,
Andrew Trick1d028a32012-01-14 02:17:12 +000059 const MachineDominatorTree &mdt,
Andrew Trick46cc9a42012-02-22 06:08:11 +000060 bool IsPostRAFlag,
Andrew Trick6b104f82013-12-28 21:56:55 +000061 bool RemoveKillFlags,
Andrew Trick46cc9a42012-02-22 06:08:11 +000062 LiveIntervals *lis)
Andrew Trickdd79f0f2012-10-10 05:43:09 +000063 : ScheduleDAG(mf), MLI(mli), MDT(mdt), MFI(mf.getFrameInfo()), LIS(lis),
Andrew Trick6b104f82013-12-28 21:56:55 +000064 IsPostRA(IsPostRAFlag), RemoveKillFlags(RemoveKillFlags),
65 CanHandleTerminators(false), FirstDbgValue(0) {
Andrew Trick46cc9a42012-02-22 06:08:11 +000066 assert((IsPostRA || LIS) && "PreRA scheduling requires LiveIntervals");
Devang Patele5feef02011-06-02 20:07:12 +000067 DbgValues.clear();
Andrew Trickdb42c6f2012-02-22 06:08:13 +000068 assert(!(IsPostRA && MRI.getNumVirtRegs()) &&
Andrew Trickda84e642012-02-21 04:51:23 +000069 "Virtual registers must be removed prior to PostRA scheduling");
Andrew Trick9b635132012-09-18 18:20:00 +000070
71 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
72 SchedModel.init(*ST.getSchedModel(), &ST, TII);
Evan Chengf0236e02009-10-18 19:58:47 +000073}
Dan Gohman60cb69e2008-11-19 23:18:57 +000074
Dan Gohman1ee0d412009-01-30 02:49:14 +000075/// getUnderlyingObjectFromInt - This is the function that does the work of
76/// looking through basic ptrtoint+arithmetic+inttoptr sequences.
77static const Value *getUnderlyingObjectFromInt(const Value *V) {
78 do {
Dan Gohman58b0e712009-07-17 20:58:59 +000079 if (const Operator *U = dyn_cast<Operator>(V)) {
Dan Gohman1ee0d412009-01-30 02:49:14 +000080 // If we find a ptrtoint, we can transfer control back to the
81 // regular getUnderlyingObjectFromInt.
Dan Gohman58b0e712009-07-17 20:58:59 +000082 if (U->getOpcode() == Instruction::PtrToInt)
Dan Gohman1ee0d412009-01-30 02:49:14 +000083 return U->getOperand(0);
Andrew Trick0be19362012-11-28 03:42:49 +000084 // If we find an add of a constant, a multiplied value, or a phi, it's
Dan Gohman1ee0d412009-01-30 02:49:14 +000085 // likely that the other operand will lead us to the base
86 // object. We don't have to worry about the case where the
Dan Gohman6c0c2192009-08-07 01:26:06 +000087 // object address is somehow being computed by the multiply,
Dan Gohman1ee0d412009-01-30 02:49:14 +000088 // because our callers only care when the result is an
Nick Lewycky1a329542012-10-26 04:27:49 +000089 // identifiable object.
Dan Gohman58b0e712009-07-17 20:58:59 +000090 if (U->getOpcode() != Instruction::Add ||
Dan Gohman1ee0d412009-01-30 02:49:14 +000091 (!isa<ConstantInt>(U->getOperand(1)) &&
Andrew Trick0be19362012-11-28 03:42:49 +000092 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
93 !isa<PHINode>(U->getOperand(1))))
Dan Gohman1ee0d412009-01-30 02:49:14 +000094 return V;
95 V = U->getOperand(0);
96 } else {
97 return V;
98 }
Duncan Sands19d0b472010-02-16 11:11:14 +000099 assert(V->getType()->isIntegerTy() && "Unexpected operand type!");
Dan Gohman1ee0d412009-01-30 02:49:14 +0000100 } while (1);
101}
102
Hal Finkel66859ae2012-12-10 18:49:16 +0000103/// getUnderlyingObjects - This is a wrapper around GetUnderlyingObjects
Dan Gohman1ee0d412009-01-30 02:49:14 +0000104/// and adds support for basic ptrtoint+arithmetic+inttoptr sequences.
Hal Finkel66859ae2012-12-10 18:49:16 +0000105static void getUnderlyingObjects(const Value *V,
106 SmallVectorImpl<Value *> &Objects) {
107 SmallPtrSet<const Value*, 16> Visited;
108 SmallVector<const Value *, 4> Working(1, V);
Dan Gohman1ee0d412009-01-30 02:49:14 +0000109 do {
Hal Finkel66859ae2012-12-10 18:49:16 +0000110 V = Working.pop_back_val();
111
112 SmallVector<Value *, 4> Objs;
113 GetUnderlyingObjects(const_cast<Value *>(V), Objs);
114
Craig Toppere1c1d362013-07-03 05:11:49 +0000115 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
Hal Finkel66859ae2012-12-10 18:49:16 +0000116 I != IE; ++I) {
117 V = *I;
118 if (!Visited.insert(V))
119 continue;
120 if (Operator::getOpcode(V) == Instruction::IntToPtr) {
121 const Value *O =
122 getUnderlyingObjectFromInt(cast<User>(V)->getOperand(0));
123 if (O->getType()->isPointerTy()) {
124 Working.push_back(O);
125 continue;
126 }
127 }
128 Objects.push_back(const_cast<Value *>(V));
129 }
130 } while (!Working.empty());
Dan Gohman1ee0d412009-01-30 02:49:14 +0000131}
132
Benjamin Kramerfd510922013-06-29 18:41:17 +0000133typedef SmallVector<PointerIntPair<const Value *, 1, bool>, 4>
134UnderlyingObjectsVector;
135
Hal Finkel66859ae2012-12-10 18:49:16 +0000136/// getUnderlyingObjectsForInstr - If this machine instr has memory reference
Dan Gohman1ee0d412009-01-30 02:49:14 +0000137/// information and it can be tracked to a normal reference to a known
Hal Finkel66859ae2012-12-10 18:49:16 +0000138/// object, return the Value for that object.
139static void getUnderlyingObjectsForInstr(const MachineInstr *MI,
Benjamin Kramerfd510922013-06-29 18:41:17 +0000140 const MachineFrameInfo *MFI,
141 UnderlyingObjectsVector &Objects) {
Dan Gohman1ee0d412009-01-30 02:49:14 +0000142 if (!MI->hasOneMemOperand() ||
Dan Gohman48b185d2009-09-25 20:36:54 +0000143 !(*MI->memoperands_begin())->getValue() ||
144 (*MI->memoperands_begin())->isVolatile())
Hal Finkel66859ae2012-12-10 18:49:16 +0000145 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000146
Dan Gohman48b185d2009-09-25 20:36:54 +0000147 const Value *V = (*MI->memoperands_begin())->getValue();
Dan Gohman1ee0d412009-01-30 02:49:14 +0000148 if (!V)
Hal Finkel66859ae2012-12-10 18:49:16 +0000149 return;
Dan Gohman1ee0d412009-01-30 02:49:14 +0000150
Hal Finkel66859ae2012-12-10 18:49:16 +0000151 SmallVector<Value *, 4> Objs;
152 getUnderlyingObjects(V, Objs);
Andrew Trick24b1c482011-05-05 19:24:06 +0000153
Craig Toppere1c1d362013-07-03 05:11:49 +0000154 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
155 I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000156 bool MayAlias = true;
157 V = *I;
158
159 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
160 // For now, ignore PseudoSourceValues which may alias LLVM IR values
161 // because the code that uses this function has no way to cope with
162 // such aliases.
163
164 if (PSV->isAliased(MFI)) {
165 Objects.clear();
166 return;
167 }
168
169 MayAlias = PSV->mayAlias(MFI);
170 } else if (!isIdentifiedObject(V)) {
171 Objects.clear();
172 return;
173 }
174
Benjamin Kramerfd510922013-06-29 18:41:17 +0000175 Objects.push_back(UnderlyingObjectsVector::value_type(V, MayAlias));
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000176 }
Dan Gohman1ee0d412009-01-30 02:49:14 +0000177}
178
Andrew Trick7405c6d2012-04-20 20:05:21 +0000179void ScheduleDAGInstrs::startBlock(MachineBasicBlock *bb) {
180 BB = bb;
Dan Gohmanb9543432009-02-10 23:27:53 +0000181}
182
Andrew Trick52226d42012-03-07 23:00:49 +0000183void ScheduleDAGInstrs::finishBlock() {
Andrew Trick51ee9362012-04-20 20:24:33 +0000184 // Subclasses should no longer refer to the old block.
Andrew Trick7405c6d2012-04-20 20:05:21 +0000185 BB = 0;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000186}
187
Andrew Trick60cf03e2012-03-07 05:21:52 +0000188/// Initialize the DAG and common scheduler state for the current scheduling
189/// region. This does not actually create the DAG, only clears it. The
190/// scheduling driver may call BuildSchedGraph multiple times per scheduling
191/// region.
192void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb,
193 MachineBasicBlock::iterator begin,
194 MachineBasicBlock::iterator end,
Andrew Tricka53e1012013-08-23 17:48:33 +0000195 unsigned regioninstrs) {
Andrew Trick7405c6d2012-04-20 20:05:21 +0000196 assert(bb == BB && "startBlock should set BB");
Andrew Trick8c207e42012-03-09 04:29:02 +0000197 RegionBegin = begin;
198 RegionEnd = end;
Andrew Tricka53e1012013-08-23 17:48:33 +0000199 NumRegionInstrs = regioninstrs;
Andrew Trick60cf03e2012-03-07 05:21:52 +0000200}
201
202/// Close the current scheduling region. Don't clear any state in case the
203/// driver wants to refer to the previous scheduling region.
204void ScheduleDAGInstrs::exitRegion() {
205 // Nothing to do.
206}
207
Andrew Trick52226d42012-03-07 23:00:49 +0000208/// addSchedBarrierDeps - Add dependencies from instructions in the current
Evan Cheng15459b62010-10-23 02:10:46 +0000209/// list of instructions being scheduled to scheduling barrier by adding
210/// the exit SU to the register defs and use list. This is because we want to
211/// make sure instructions which define registers that are either used by
212/// the terminator or are live-out are properly scheduled. This is
213/// especially important when the definition latency of the return value(s)
214/// are too high to be hidden by the branch or when the liveout registers
215/// used by instructions in the fallthrough block.
Andrew Trick52226d42012-03-07 23:00:49 +0000216void ScheduleDAGInstrs::addSchedBarrierDeps() {
Andrew Trick8c207e42012-03-09 04:29:02 +0000217 MachineInstr *ExitMI = RegionEnd != BB->end() ? &*RegionEnd : 0;
Evan Cheng15459b62010-10-23 02:10:46 +0000218 ExitSU.setInstr(ExitMI);
219 bool AllDepKnown = ExitMI &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000220 (ExitMI->isCall() || ExitMI->isBarrier());
Evan Cheng15459b62010-10-23 02:10:46 +0000221 if (ExitMI && AllDepKnown) {
222 // If it's a call or a barrier, add dependencies on the defs and uses of
223 // instruction.
224 for (unsigned i = 0, e = ExitMI->getNumOperands(); i != e; ++i) {
225 const MachineOperand &MO = ExitMI->getOperand(i);
226 if (!MO.isReg() || MO.isDef()) continue;
227 unsigned Reg = MO.getReg();
228 if (Reg == 0) continue;
229
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000230 if (TRI->isPhysicalRegister(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000231 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Andrew Tricke6913c72012-03-16 05:04:25 +0000232 else {
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000233 assert(!IsPostRA && "Virtual register encountered after regalloc.");
Andrew Trickd5953622012-12-01 01:22:44 +0000234 if (MO.readsReg()) // ignore undef operands
235 addVRegUseDeps(&ExitSU, i);
Andrew Tricke6913c72012-03-16 05:04:25 +0000236 }
Evan Cheng15459b62010-10-23 02:10:46 +0000237 }
238 } else {
239 // For others, e.g. fallthrough, conditional branch, assume the exit
Evan Chengcbdf7e82010-10-27 23:17:17 +0000240 // uses all the registers that are livein to the successor blocks.
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000241 assert(Uses.empty() && "Uses in set before adding deps?");
Evan Chengcbdf7e82010-10-27 23:17:17 +0000242 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
243 SE = BB->succ_end(); SI != SE; ++SI)
244 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
Andrew Trick24b1c482011-05-05 19:24:06 +0000245 E = (*SI)->livein_end(); I != E; ++I) {
Evan Chengcbdf7e82010-10-27 23:17:17 +0000246 unsigned Reg = *I;
Benjamin Kramer411d5a22012-03-16 17:38:19 +0000247 if (!Uses.contains(Reg))
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000248 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
Evan Chengcbdf7e82010-10-27 23:17:17 +0000249 }
Evan Cheng15459b62010-10-23 02:10:46 +0000250 }
251}
252
Andrew Trickd675a4c2012-02-23 01:52:38 +0000253/// MO is an operand of SU's instruction that defines a physical register. Add
254/// data dependencies from SU to any uses of the physical register.
Andrew Trickae535612012-08-23 00:39:43 +0000255void ScheduleDAGInstrs::addPhysRegDataDeps(SUnit *SU, unsigned OperIdx) {
256 const MachineOperand &MO = SU->getInstr()->getOperand(OperIdx);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000257 assert(MO.isDef() && "expect physreg def");
258
259 // Ask the target if address-backscheduling is desirable, and if so how much.
260 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000261
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000262 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
263 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000264 if (!Uses.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000265 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000266 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
267 SUnit *UseSU = I->SU;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000268 if (UseSU == SU)
269 continue;
Andrew Trick07dced62012-10-08 18:54:00 +0000270
Andrew Trick07dced62012-10-08 18:54:00 +0000271 // Adjust the dependence latency using operand def/use information,
272 // then allow the target to perform its own adjustments.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000273 int UseOp = I->OpIdx;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000274 MachineInstr *RegUse = 0;
275 SDep Dep;
276 if (UseOp < 0)
277 Dep = SDep(SU, SDep::Artificial);
278 else {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000279 // Set the hasPhysRegDefs only for physreg defs that have a use within
280 // the scheduling region.
281 SU->hasPhysRegDefs = true;
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000282 Dep = SDep(SU, SDep::Data, *Alias);
283 RegUse = UseSU->getInstr();
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000284 }
285 Dep.setLatency(
Andrew Trickde2109e2013-06-15 04:49:57 +0000286 SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, RegUse,
287 UseOp));
Andrew Trick45446062012-06-05 21:11:27 +0000288
Andrew Trickf1ff84c2012-11-12 19:28:57 +0000289 ST.adjustSchedDependency(SU, UseSU, Dep);
290 UseSU->addPred(Dep);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000291 }
292 }
293}
294
Andrew Trickdbee9d82012-01-14 02:17:15 +0000295/// addPhysRegDeps - Add register dependencies (data, anti, and output) from
296/// this SUnit to following instructions in the same scheduling region that
297/// depend the physical register referenced at OperIdx.
298void ScheduleDAGInstrs::addPhysRegDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick6b104f82013-12-28 21:56:55 +0000299 MachineInstr *MI = SU->getInstr();
300 MachineOperand &MO = MI->getOperand(OperIdx);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000301
302 // Optionally add output and anti dependencies. For anti
303 // dependencies we use a latency of 0 because for a multi-issue
304 // target we want to allow the defining instruction to issue
305 // in the same cycle as the using instruction.
306 // TODO: Using a latency of 1 here for output dependencies assumes
307 // there's no cost for reusing registers.
308 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000309 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
310 Alias.isValid(); ++Alias) {
Andrew Trick9dbbd3e2012-02-24 07:04:55 +0000311 if (!Defs.contains(*Alias))
Andrew Trickd675a4c2012-02-23 01:52:38 +0000312 continue;
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000313 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
314 SUnit *DefSU = I->SU;
Andrew Trickdbee9d82012-01-14 02:17:15 +0000315 if (DefSU == &ExitSU)
316 continue;
317 if (DefSU != SU &&
318 (Kind != SDep::Output || !MO.isDead() ||
319 !DefSU->getInstr()->registerDefIsDead(*Alias))) {
320 if (Kind == SDep::Anti)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000321 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000322 else {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000323 SDep Dep(SU, Kind, /*Reg=*/*Alias);
Andrew Trickde2109e2013-06-15 04:49:57 +0000324 Dep.setLatency(
325 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000326 DefSU->addPred(Dep);
Andrew Trickdbee9d82012-01-14 02:17:15 +0000327 }
328 }
329 }
330 }
331
Andrew Trickd675a4c2012-02-23 01:52:38 +0000332 if (!MO.isDef()) {
Andrew Tricke833e1c2013-04-13 06:07:40 +0000333 SU->hasPhysRegUses = true;
Andrew Trickd675a4c2012-02-23 01:52:38 +0000334 // Either insert a new Reg2SUnits entry with an empty SUnits list, or
335 // retrieve the existing SUnits list for this register's uses.
336 // Push this SUnit on the use list.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000337 Uses.insert(PhysRegSUOper(SU, OperIdx, MO.getReg()));
Andrew Trick6b104f82013-12-28 21:56:55 +0000338 if (RemoveKillFlags)
339 MO.setIsKill(false);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000340 }
341 else {
Andrew Trickae535612012-08-23 00:39:43 +0000342 addPhysRegDataDeps(SU, OperIdx);
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000343 unsigned Reg = MO.getReg();
Andrew Trickdbee9d82012-01-14 02:17:15 +0000344
Andrew Trickd675a4c2012-02-23 01:52:38 +0000345 // clear this register's use list
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000346 if (Uses.contains(Reg))
347 Uses.eraseAll(Reg);
Andrew Trickd675a4c2012-02-23 01:52:38 +0000348
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000349 if (!MO.isDead()) {
350 Defs.eraseAll(Reg);
351 } else if (SU->isCall) {
352 // Calls will not be reordered because of chain dependencies (see
353 // below). Since call operands are dead, calls may continue to be added
354 // to the DefList making dependence checking quadratic in the size of
355 // the block. Instead, we leave only one call at the back of the
356 // DefList.
357 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
358 Reg2SUnitsMap::iterator B = P.first;
359 Reg2SUnitsMap::iterator I = P.second;
360 for (bool isBegin = I == B; !isBegin; /* empty */) {
361 isBegin = (--I) == B;
362 if (!I->SU->isCall)
363 break;
364 I = Defs.erase(I);
365 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000366 }
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000367
Andrew Trickd675a4c2012-02-23 01:52:38 +0000368 // Defs are pushed in the order they are visited and never reordered.
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000369 Defs.insert(PhysRegSUOper(SU, OperIdx, Reg));
Andrew Trickdbee9d82012-01-14 02:17:15 +0000370 }
371}
372
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000373/// addVRegDefDeps - Add register output and data dependencies from this SUnit
374/// to instructions that occur later in the same scheduling region if they read
375/// from or write to the virtual register defined at OperIdx.
376///
377/// TODO: Hoist loop induction variable increments. This has to be
378/// reevaluated. Generally, IV scheduling should be done before coalescing.
379void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
380 const MachineInstr *MI = SU->getInstr();
381 unsigned Reg = MI->getOperand(OperIdx).getReg();
382
Andrew Trick94053432012-07-28 01:48:15 +0000383 // Singly defined vregs do not have output/anti dependencies.
Andrew Trick64ca16e2012-02-22 18:34:49 +0000384 // The current operand is a def, so we have at least one.
Andrew Trick94053432012-07-28 01:48:15 +0000385 // Check here if there are any others...
Andrew Trick79795892012-07-30 23:48:17 +0000386 if (MRI.hasOneDef(Reg))
Andrew Trick94053432012-07-28 01:48:15 +0000387 return;
Andrew Trickdb42c6f2012-02-22 06:08:13 +0000388
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000389 // Add output dependence to the next nearest def of this vreg.
390 //
391 // Unless this definition is dead, the output dependence should be
392 // transitively redundant with antidependencies from this definition's
393 // uses. We're conservative for now until we have a way to guarantee the uses
394 // are not eliminated sometime during scheduling. The output dependence edge
395 // is also useful if output latency exceeds def-use latency.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000396 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000397 if (DefI == VRegDefs.end())
398 VRegDefs.insert(VReg2SUnit(Reg, SU));
399 else {
400 SUnit *DefSU = DefI->SU;
401 if (DefSU != SU && DefSU != &ExitSU) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000402 SDep Dep(SU, SDep::Output, Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000403 Dep.setLatency(
404 SchedModel.computeOutputLatency(MI, OperIdx, DefSU->getInstr()));
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000405 DefSU->addPred(Dep);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000406 }
407 DefI->SU = SU;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000408 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000409}
410
Andrew Trick46cc9a42012-02-22 06:08:11 +0000411/// addVRegUseDeps - Add a register data dependency if the instruction that
412/// defines the virtual register used at OperIdx is mapped to an SUnit. Add a
413/// register antidependency from this SUnit to instructions that occur later in
414/// the same scheduling region if they write the virtual register.
415///
416/// TODO: Handle ExitSU "uses" properly.
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000417void ScheduleDAGInstrs::addVRegUseDeps(SUnit *SU, unsigned OperIdx) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000418 MachineInstr *MI = SU->getInstr();
419 unsigned Reg = MI->getOperand(OperIdx).getReg();
420
Andrew Trick8dd26f02013-08-23 17:48:39 +0000421 // Record this local VReg use.
Andrew Trick2bc74c22013-08-30 04:36:57 +0000422 VReg2UseMap::iterator UI = VRegUses.find(Reg);
423 for (; UI != VRegUses.end(); ++UI) {
424 if (UI->SU == SU)
425 break;
426 }
427 if (UI == VRegUses.end())
428 VRegUses.insert(VReg2SUnit(Reg, SU));
Andrew Trick8dd26f02013-08-23 17:48:39 +0000429
Andrew Trick46cc9a42012-02-22 06:08:11 +0000430 // Lookup this operand's reaching definition.
431 assert(LIS && "vreg dependencies requires LiveIntervals");
Matthias Braun88dd0ab2013-10-10 21:28:52 +0000432 LiveQueryResult LRQ
433 = LIS->getInterval(Reg).Query(LIS->getInstructionIndex(MI));
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000434 VNInfo *VNI = LRQ.valueIn();
Andrew Trick9e9a9f12012-04-24 18:04:41 +0000435
Andrew Trickda6a15d2012-02-23 03:16:24 +0000436 // VNI will be valid because MachineOperand::readsReg() is checked by caller.
Jakob Stoklund Olesenabc8c3d2012-05-20 02:44:38 +0000437 assert(VNI && "No value to read by operand");
Andrew Trick46cc9a42012-02-22 06:08:11 +0000438 MachineInstr *Def = LIS->getInstructionFromIndex(VNI->def);
Andrew Trickda6a15d2012-02-23 03:16:24 +0000439 // Phis and other noninstructions (after coalescing) have a NULL Def.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000440 if (Def) {
441 SUnit *DefSU = getSUnit(Def);
442 if (DefSU) {
443 // The reaching Def lives within this scheduling region.
444 // Create a data dependence.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000445 SDep dep(DefSU, SDep::Data, Reg);
Andrew Trick09650df2012-10-08 18:53:57 +0000446 // Adjust the dependence latency using operand def/use information, then
447 // allow the target to perform its own adjustments.
448 int DefOp = Def->findRegisterDefOperandIdx(Reg);
Andrew Trickde2109e2013-06-15 04:49:57 +0000449 dep.setLatency(SchedModel.computeOperandLatency(Def, DefOp, MI, OperIdx));
Andrew Trick45446062012-06-05 21:11:27 +0000450
Andrew Trick09650df2012-10-08 18:53:57 +0000451 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
452 ST.adjustSchedDependency(DefSU, SU, const_cast<SDep &>(dep));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000453 SU->addPred(dep);
454 }
455 }
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000456
457 // Add antidependence to the following def of the vreg it uses.
Andrew Trick1eb4a0d2012-04-20 20:05:28 +0000458 VReg2SUnitMap::iterator DefI = VRegDefs.find(Reg);
Andrew Trickd458e2d2012-02-22 21:59:00 +0000459 if (DefI != VRegDefs.end() && DefI->SU != SU)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000460 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
Andrew Trick46cc9a42012-02-22 06:08:11 +0000461}
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000462
Andrew Trickda01ba32012-05-15 18:59:41 +0000463/// Return true if MI is an instruction we are unable to reason about
464/// (like a call or something with unmodeled side effects).
465static inline bool isGlobalMemoryObject(AliasAnalysis *AA, MachineInstr *MI) {
466 if (MI->isCall() || MI->hasUnmodeledSideEffects() ||
Jakob Stoklund Olesencea3e772012-08-29 21:19:21 +0000467 (MI->hasOrderedMemoryRef() &&
Andrew Trickda01ba32012-05-15 18:59:41 +0000468 (!MI->mayLoad() || !MI->isInvariantLoad(AA))))
469 return true;
470 return false;
471}
472
473// This MI might have either incomplete info, or known to be unsafe
474// to deal with (i.e. volatile object).
475static inline bool isUnsafeMemoryObject(MachineInstr *MI,
476 const MachineFrameInfo *MFI) {
477 if (!MI || MI->memoperands_empty())
478 return true;
479 // We purposefully do no check for hasOneMemOperand() here
480 // in hope to trigger an assert downstream in order to
481 // finish implementation.
482 if ((*MI->memoperands_begin())->isVolatile() ||
483 MI->hasUnmodeledSideEffects())
484 return true;
Andrew Trickda01ba32012-05-15 18:59:41 +0000485 const Value *V = (*MI->memoperands_begin())->getValue();
486 if (!V)
487 return true;
488
Hal Finkel66859ae2012-12-10 18:49:16 +0000489 SmallVector<Value *, 4> Objs;
490 getUnderlyingObjects(V, Objs);
Craig Toppere1c1d362013-07-03 05:11:49 +0000491 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(),
492 IE = Objs.end(); I != IE; ++I) {
Hal Finkel66859ae2012-12-10 18:49:16 +0000493 V = *I;
494
495 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
496 // Similarly to getUnderlyingObjectForInstr:
497 // For now, ignore PseudoSourceValues which may alias LLVM IR values
498 // because the code that uses this function has no way to cope with
499 // such aliases.
500 if (PSV->isAliased(MFI))
501 return true;
502 }
503
504 // Does this pointer refer to a distinct and identifiable object?
505 if (!isIdentifiedObject(V))
Andrew Trickda01ba32012-05-15 18:59:41 +0000506 return true;
507 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000508
509 return false;
510}
511
512/// This returns true if the two MIs need a chain edge betwee them.
513/// If these are not even memory operations, we still may need
514/// chain deps between them. The question really is - could
515/// these two MIs be reordered during scheduling from memory dependency
516/// point of view.
517static bool MIsNeedChainEdge(AliasAnalysis *AA, const MachineFrameInfo *MFI,
518 MachineInstr *MIa,
519 MachineInstr *MIb) {
520 // Cover a trivial case - no edge is need to itself.
521 if (MIa == MIb)
522 return false;
523
Hal Finkel2150e3a2014-01-08 21:52:02 +0000524 // FIXME: Need to handle multiple memory operands to support all targets.
525 if (!MIa->hasOneMemOperand() || !MIb->hasOneMemOperand())
526 return true;
527
Andrew Trickda01ba32012-05-15 18:59:41 +0000528 if (isUnsafeMemoryObject(MIa, MFI) || isUnsafeMemoryObject(MIb, MFI))
529 return true;
530
531 // If we are dealing with two "normal" loads, we do not need an edge
532 // between them - they could be reordered.
533 if (!MIa->mayStore() && !MIb->mayStore())
534 return false;
535
536 // To this point analysis is generic. From here on we do need AA.
537 if (!AA)
538 return true;
539
540 MachineMemOperand *MMOa = *MIa->memoperands_begin();
541 MachineMemOperand *MMOb = *MIb->memoperands_begin();
542
Andrew Trickda01ba32012-05-15 18:59:41 +0000543 // The following interface to AA is fashioned after DAGCombiner::isAlias
544 // and operates with MachineMemOperand offset with some important
545 // assumptions:
546 // - LLVM fundamentally assumes flat address spaces.
547 // - MachineOperand offset can *only* result from legalization and
548 // cannot affect queries other than the trivial case of overlap
549 // checking.
550 // - These offsets never wrap and never step outside
551 // of allocated objects.
552 // - There should never be any negative offsets here.
553 //
554 // FIXME: Modify API to hide this math from "user"
555 // FIXME: Even before we go to AA we can reason locally about some
556 // memory objects. It can save compile time, and possibly catch some
557 // corner cases not currently covered.
558
559 assert ((MMOa->getOffset() >= 0) && "Negative MachineMemOperand offset");
560 assert ((MMOb->getOffset() >= 0) && "Negative MachineMemOperand offset");
561
562 int64_t MinOffset = std::min(MMOa->getOffset(), MMOb->getOffset());
563 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
564 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
565
566 AliasAnalysis::AliasResult AAResult = AA->alias(
567 AliasAnalysis::Location(MMOa->getValue(), Overlapa,
Hal Finkeldbebb522014-01-25 19:24:54 +0000568 UseTBAA ? MMOa->getTBAAInfo() : 0),
Andrew Trickda01ba32012-05-15 18:59:41 +0000569 AliasAnalysis::Location(MMOb->getValue(), Overlapb,
Hal Finkeldbebb522014-01-25 19:24:54 +0000570 UseTBAA ? MMOb->getTBAAInfo() : 0));
Andrew Trickda01ba32012-05-15 18:59:41 +0000571
572 return (AAResult != AliasAnalysis::NoAlias);
573}
574
575/// This recursive function iterates over chain deps of SUb looking for
576/// "latest" node that needs a chain edge to SUa.
577static unsigned
578iterateChainSucc(AliasAnalysis *AA, const MachineFrameInfo *MFI,
579 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
580 SmallPtrSet<const SUnit*, 16> &Visited) {
581 if (!SUa || !SUb || SUb == ExitSU)
582 return *Depth;
583
584 // Remember visited nodes.
585 if (!Visited.insert(SUb))
586 return *Depth;
587 // If there is _some_ dependency already in place, do not
588 // descend any further.
589 // TODO: Need to make sure that if that dependency got eliminated or ignored
590 // for any reason in the future, we would not violate DAG topology.
591 // Currently it does not happen, but makes an implicit assumption about
592 // future implementation.
593 //
594 // Independently, if we encounter node that is some sort of global
595 // object (like a call) we already have full set of dependencies to it
596 // and we can stop descending.
597 if (SUa->isSucc(SUb) ||
598 isGlobalMemoryObject(AA, SUb->getInstr()))
599 return *Depth;
600
601 // If we do need an edge, or we have exceeded depth budget,
602 // add that edge to the predecessors chain of SUb,
603 // and stop descending.
604 if (*Depth > 200 ||
605 MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000606 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
Andrew Trickda01ba32012-05-15 18:59:41 +0000607 return *Depth;
608 }
609 // Track current depth.
610 (*Depth)++;
611 // Iterate over chain dependencies only.
612 for (SUnit::const_succ_iterator I = SUb->Succs.begin(), E = SUb->Succs.end();
613 I != E; ++I)
614 if (I->isCtrl())
615 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited);
616 return *Depth;
617}
618
619/// This function assumes that "downward" from SU there exist
620/// tail/leaf of already constructed DAG. It iterates downward and
621/// checks whether SU can be aliasing any node dominated
622/// by it.
623static void adjustChainDeps(AliasAnalysis *AA, const MachineFrameInfo *MFI,
Andrew Trick344fb642012-06-13 02:39:03 +0000624 SUnit *SU, SUnit *ExitSU, std::set<SUnit *> &CheckList,
625 unsigned LatencyToLoad) {
Andrew Trickda01ba32012-05-15 18:59:41 +0000626 if (!SU)
627 return;
628
629 SmallPtrSet<const SUnit*, 16> Visited;
630 unsigned Depth = 0;
631
632 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end();
633 I != IE; ++I) {
634 if (SU == *I)
635 continue;
Andrew Trick344fb642012-06-13 02:39:03 +0000636 if (MIsNeedChainEdge(AA, MFI, SU->getInstr(), (*I)->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000637 SDep Dep(SU, SDep::MayAliasMem);
638 Dep.setLatency(((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0);
639 (*I)->addPred(Dep);
Andrew Trick344fb642012-06-13 02:39:03 +0000640 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000641 // Now go through all the chain successors and iterate from them.
642 // Keep track of visited nodes.
643 for (SUnit::const_succ_iterator J = (*I)->Succs.begin(),
644 JE = (*I)->Succs.end(); J != JE; ++J)
645 if (J->isCtrl())
646 iterateChainSucc (AA, MFI, SU, J->getSUnit(),
647 ExitSU, &Depth, Visited);
648 }
649}
650
651/// Check whether two objects need a chain edge, if so, add it
652/// otherwise remember the rejected SU.
653static inline
654void addChainDependency (AliasAnalysis *AA, const MachineFrameInfo *MFI,
655 SUnit *SUa, SUnit *SUb,
656 std::set<SUnit *> &RejectList,
657 unsigned TrueMemOrderLatency = 0,
658 bool isNormalMemory = false) {
659 // If this is a false dependency,
660 // do not add the edge, but rememeber the rejected node.
Hal Finkelb350ffd2013-08-29 03:25:05 +0000661 if (!AA || MIsNeedChainEdge(AA, MFI, SUa->getInstr(), SUb->getInstr())) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000662 SDep Dep(SUa, isNormalMemory ? SDep::MayAliasMem : SDep::Barrier);
663 Dep.setLatency(TrueMemOrderLatency);
664 SUb->addPred(Dep);
665 }
Andrew Trickda01ba32012-05-15 18:59:41 +0000666 else {
667 // Duplicate entries should be ignored.
668 RejectList.insert(SUb);
669 DEBUG(dbgs() << "\tReject chain dep between SU("
670 << SUa->NodeNum << ") and SU("
671 << SUb->NodeNum << ")\n");
672 }
673}
674
Andrew Trick46cc9a42012-02-22 06:08:11 +0000675/// Create an SUnit for each real instruction, numbered in top-down toplological
676/// order. The instruction order A < B, implies that no edge exists from B to A.
677///
678/// Map each real instruction to its SUnit.
679///
Andrew Trick8823dec2012-03-14 04:00:41 +0000680/// After initSUnits, the SUnits vector cannot be resized and the scheduler may
681/// hang onto SUnit pointers. We may relax this in the future by using SUnit IDs
682/// instead of pointers.
683///
684/// MachineScheduler relies on initSUnits numbering the nodes by their order in
685/// the original instruction list.
Andrew Trick46cc9a42012-02-22 06:08:11 +0000686void ScheduleDAGInstrs::initSUnits() {
687 // We'll be allocating one SUnit for each real instruction in the region,
688 // which is contained within a basic block.
Andrew Tricka53e1012013-08-23 17:48:33 +0000689 SUnits.reserve(NumRegionInstrs);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000690
Andrew Trick8c207e42012-03-09 04:29:02 +0000691 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
Andrew Trick46cc9a42012-02-22 06:08:11 +0000692 MachineInstr *MI = I;
693 if (MI->isDebugValue())
694 continue;
695
Andrew Trick52226d42012-03-07 23:00:49 +0000696 SUnit *SU = newSUnit(MI);
Andrew Trick46cc9a42012-02-22 06:08:11 +0000697 MISUnitMap[MI] = SU;
698
699 SU->isCall = MI->isCall();
700 SU->isCommutable = MI->isCommutable();
701
702 // Assign the Latency field of SU using target-provided information.
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000703 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
Andrew Trick880e5732013-12-05 17:55:58 +0000704
705 // If this SUnit uses an unbuffered resource, mark it as such.
706 // These resources are used for in-order execution pipelines within an
707 // out-of-order core and are identified by BufferSize=1. BufferSize=0 is
708 // used for dispatch/issue groups and is not considered here.
709 if (SchedModel.hasInstrSchedModel()) {
710 const MCSchedClassDesc *SC = getSchedClass(SU);
711 for (TargetSchedModel::ProcResIter
712 PI = SchedModel.getWriteProcResBegin(SC),
713 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
Andrew Trick5a22df42013-12-05 17:56:02 +0000714 switch (SchedModel.getProcResource(PI->ProcResourceIdx)->BufferSize) {
715 case 0:
716 SU->hasReservedResource = true;
717 break;
718 case 1:
Andrew Trick880e5732013-12-05 17:55:58 +0000719 SU->isUnbuffered = true;
720 break;
Andrew Trick5a22df42013-12-05 17:56:02 +0000721 default:
722 break;
Andrew Trick880e5732013-12-05 17:55:58 +0000723 }
724 }
725 }
Andrew Trick46cc9a42012-02-22 06:08:11 +0000726 }
Andrew Trickdbee9d82012-01-14 02:17:15 +0000727}
728
Alp Tokerf907b892013-12-05 05:44:44 +0000729/// If RegPressure is non-null, compute register pressure as a side effect. The
Andrew Trick88639922012-04-24 17:56:43 +0000730/// DAG builder is an efficient place to do it because it already visits
731/// operands.
732void ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA,
Andrew Trick1a831342013-08-30 03:49:48 +0000733 RegPressureTracker *RPTracker,
734 PressureDiffs *PDiffs) {
Hal Finkelb350ffd2013-08-29 03:25:05 +0000735 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>();
736 bool UseAA = EnableAASchedMI.getNumOccurrences() > 0 ? EnableAASchedMI
737 : ST.useAA();
738 AliasAnalysis *AAForDep = UseAA ? AA : 0;
739
Andrew Trick310190e2013-09-04 21:00:02 +0000740 MISUnitMap.clear();
741 ScheduleDAG::clearDAG();
742
Andrew Trick46cc9a42012-02-22 06:08:11 +0000743 // Create an SUnit for each real instruction.
744 initSUnits();
Dan Gohman60cb69e2008-11-19 23:18:57 +0000745
Andrew Trick1a831342013-08-30 03:49:48 +0000746 if (PDiffs)
747 PDiffs->init(SUnits.size());
748
Dan Gohman3aab10b2008-12-04 01:35:46 +0000749 // We build scheduling units by walking a block's instruction list from bottom
750 // to top.
751
David Goodwind2f9c042009-11-09 19:22:17 +0000752 // Remember where a generic side-effecting instruction is as we procede.
753 SUnit *BarrierChain = 0, *AliasChain = 0;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000754
David Goodwind2f9c042009-11-09 19:22:17 +0000755 // Memory references to specific known memory locations are tracked
756 // so that they can be given more precise dependencies. We track
757 // separately the known memory locations that may alias and those
758 // that are known not to alias
Hal Finkela228a812014-01-20 14:03:02 +0000759 MapVector<const Value *, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs;
Sergei Larine8221482012-11-15 17:45:50 +0000760 MapVector<const Value *, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses;
Andrew Trickda01ba32012-05-15 18:59:41 +0000761 std::set<SUnit*> RejectMemNodes;
Dan Gohman3aab10b2008-12-04 01:35:46 +0000762
Dale Johannesen49de0602010-03-10 22:13:47 +0000763 // Remove any stale debug info; sometimes BuildSchedGraph is called again
764 // without emitting the info from the previous call.
Devang Patele5feef02011-06-02 20:07:12 +0000765 DbgValues.clear();
766 FirstDbgValue = NULL;
Dale Johannesen49de0602010-03-10 22:13:47 +0000767
Andrew Trickd675a4c2012-02-23 01:52:38 +0000768 assert(Defs.empty() && Uses.empty() &&
769 "Only BuildGraph should update Defs/Uses");
Michael Ilseman3e3194f2013-01-21 18:18:53 +0000770 Defs.setUniverse(TRI->getNumRegs());
771 Uses.setUniverse(TRI->getNumRegs());
Andrew Trick2e116a42011-05-06 21:52:52 +0000772
Andrew Trickd458e2d2012-02-22 21:59:00 +0000773 assert(VRegDefs.empty() && "Only BuildSchedGraph may access VRegDefs");
Andrew Trick8dd26f02013-08-23 17:48:39 +0000774 VRegUses.clear();
Andrew Trickd458e2d2012-02-22 21:59:00 +0000775 VRegDefs.setUniverse(MRI.getNumVirtRegs());
Andrew Trick8dd26f02013-08-23 17:48:39 +0000776 VRegUses.setUniverse(MRI.getNumVirtRegs());
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000777
Andrew Trickd675a4c2012-02-23 01:52:38 +0000778 // Model data dependencies between instructions being scheduled and the
779 // ExitSU.
Andrew Trick52226d42012-03-07 23:00:49 +0000780 addSchedBarrierDeps();
Andrew Trickd675a4c2012-02-23 01:52:38 +0000781
Dan Gohmanb9543432009-02-10 23:27:53 +0000782 // Walk the list of instructions, from bottom moving up.
Andrew Trickb767d1e2012-12-01 01:22:49 +0000783 MachineInstr *DbgMI = NULL;
Andrew Trick8c207e42012-03-09 04:29:02 +0000784 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000785 MII != MIE; --MII) {
786 MachineInstr *MI = prior(MII);
Andrew Trickb767d1e2012-12-01 01:22:49 +0000787 if (MI && DbgMI) {
788 DbgValues.push_back(std::make_pair(DbgMI, MI));
789 DbgMI = NULL;
Devang Patele5feef02011-06-02 20:07:12 +0000790 }
791
Dale Johannesen49de0602010-03-10 22:13:47 +0000792 if (MI->isDebugValue()) {
Andrew Trickb767d1e2012-12-01 01:22:49 +0000793 DbgMI = MI;
Dale Johannesen49de0602010-03-10 22:13:47 +0000794 continue;
795 }
Andrew Trick1a831342013-08-30 03:49:48 +0000796 SUnit *SU = MISUnitMap[MI];
797 assert(SU && "No SUnit mapped to this MI");
798
Andrew Trick88639922012-04-24 17:56:43 +0000799 if (RPTracker) {
Andrew Trick1a831342013-08-30 03:49:48 +0000800 PressureDiff *PDiff = PDiffs ? &(*PDiffs)[SU->NodeNum] : 0;
Andrew Trick2bc74c22013-08-30 04:36:57 +0000801 RPTracker->recede(/*LiveUses=*/0, PDiff);
Andrew Trick88639922012-04-24 17:56:43 +0000802 assert(RPTracker->getPos() == prior(MII) && "RPTracker can't find MI");
803 }
Devang Patele5feef02011-06-02 20:07:12 +0000804
Sergei Larin5e76aa92013-02-12 16:36:03 +0000805 assert((CanHandleTerminators || (!MI->isTerminator() && !MI->isLabel())) &&
Dan Gohmanb9543432009-02-10 23:27:53 +0000806 "Cannot schedule terminators or labels!");
Dan Gohman60cb69e2008-11-19 23:18:57 +0000807
Dan Gohman3aab10b2008-12-04 01:35:46 +0000808 // Add register-based dependencies (data, anti, and output).
Andrew Trickec256482012-12-18 20:53:01 +0000809 bool HasVRegDef = false;
Dan Gohman60cb69e2008-11-19 23:18:57 +0000810 for (unsigned j = 0, n = MI->getNumOperands(); j != n; ++j) {
811 const MachineOperand &MO = MI->getOperand(j);
812 if (!MO.isReg()) continue;
813 unsigned Reg = MO.getReg();
814 if (Reg == 0) continue;
815
Andrew Trickdbee9d82012-01-14 02:17:15 +0000816 if (TRI->isPhysicalRegister(Reg))
817 addPhysRegDeps(SU, j);
818 else {
819 assert(!IsPostRA && "Virtual register encountered!");
Andrew Trickec256482012-12-18 20:53:01 +0000820 if (MO.isDef()) {
821 HasVRegDef = true;
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000822 addVRegDefDeps(SU, j);
Andrew Trickec256482012-12-18 20:53:01 +0000823 }
Andrew Trickda6a15d2012-02-23 03:16:24 +0000824 else if (MO.readsReg()) // ignore undef operands
Andrew Trick59ac4fb2012-01-14 02:17:18 +0000825 addVRegUseDeps(SU, j);
Dan Gohman60cb69e2008-11-19 23:18:57 +0000826 }
827 }
Andrew Trickec256482012-12-18 20:53:01 +0000828 // If we haven't seen any uses in this scheduling region, create a
829 // dependence edge to ExitSU to model the live-out latency. This is required
830 // for vreg defs with no in-region use, and prefetches with no vreg def.
831 //
832 // FIXME: NumDataSuccs would be more precise than NumSuccs here. This
833 // check currently relies on being called before adding chain deps.
834 if (SU->NumSuccs == 0 && SU->Latency > 1
835 && (HasVRegDef || MI->mayLoad())) {
836 SDep Dep(SU, SDep::Artificial);
837 Dep.setLatency(SU->Latency - 1);
838 ExitSU.addPred(Dep);
839 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000840
841 // Add chain dependencies.
David Goodwin00822aa2009-11-02 17:06:28 +0000842 // Chain dependencies used to enforce memory order should have
843 // latency of 0 (except for true dependency of Store followed by
844 // aliased Load... we estimate that with a single cycle of latency
845 // assuming the hardware will bypass)
Dan Gohman3aab10b2008-12-04 01:35:46 +0000846 // Note that isStoreToStackSlot and isLoadFromStackSLot are not usable
847 // after stack slots are lowered to actual addresses.
848 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
849 // produce more precise dependence information.
Andrew Trick344fb642012-06-13 02:39:03 +0000850 unsigned TrueMemOrderLatency = MI->mayStore() ? 1 : 0;
Andrew Trickda01ba32012-05-15 18:59:41 +0000851 if (isGlobalMemoryObject(AA, MI)) {
David Goodwind2f9c042009-11-09 19:22:17 +0000852 // Be conservative with these and add dependencies on all memory
853 // references, even those that are known to not alias.
Hal Finkela228a812014-01-20 14:03:02 +0000854 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000855 NonAliasMemDefs.begin(), E = NonAliasMemDefs.end(); I != E; ++I) {
Hal Finkela228a812014-01-20 14:03:02 +0000856 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
857 I->second[i]->addPred(SDep(SU, SDep::Barrier));
858 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000859 }
Sergei Larine8221482012-11-15 17:45:50 +0000860 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000861 NonAliasMemUses.begin(), E = NonAliasMemUses.end(); I != E; ++I) {
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000862 for (unsigned i = 0, e = I->second.size(); i != e; ++i) {
863 SDep Dep(SU, SDep::Barrier);
864 Dep.setLatency(TrueMemOrderLatency);
865 I->second[i]->addPred(Dep);
866 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000867 }
David Goodwind2f9c042009-11-09 19:22:17 +0000868 // Add SU to the barrier chain.
869 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000870 BarrierChain->addPred(SDep(SU, SDep::Barrier));
David Goodwind2f9c042009-11-09 19:22:17 +0000871 BarrierChain = SU;
Andrew Trickda01ba32012-05-15 18:59:41 +0000872 // This is a barrier event that acts as a pivotal node in the DAG,
873 // so it is safe to clear list of exposed nodes.
Andrew Trick344fb642012-06-13 02:39:03 +0000874 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
875 TrueMemOrderLatency);
Andrew Trickda01ba32012-05-15 18:59:41 +0000876 RejectMemNodes.clear();
877 NonAliasMemDefs.clear();
878 NonAliasMemUses.clear();
David Goodwind2f9c042009-11-09 19:22:17 +0000879
880 // fall-through
881 new_alias_chain:
882 // Chain all possibly aliasing memory references though SU.
Andrew Trick344fb642012-06-13 02:39:03 +0000883 if (AliasChain) {
884 unsigned ChainLatency = 0;
885 if (AliasChain->getInstr()->mayLoad())
886 ChainLatency = TrueMemOrderLatency;
Hal Finkelb350ffd2013-08-29 03:25:05 +0000887 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes,
Andrew Trick344fb642012-06-13 02:39:03 +0000888 ChainLatency);
889 }
David Goodwind2f9c042009-11-09 19:22:17 +0000890 AliasChain = SU;
891 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000892 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000893 TrueMemOrderLatency);
Hal Finkela228a812014-01-20 14:03:02 +0000894 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
895 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I) {
896 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
897 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes);
898 }
Sergei Larine8221482012-11-15 17:45:50 +0000899 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +0000900 AliasMemUses.begin(), E = AliasMemUses.end(); I != E; ++I) {
901 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000902 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000903 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000904 }
Andrew Trick344fb642012-06-13 02:39:03 +0000905 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
906 TrueMemOrderLatency);
David Goodwind2f9c042009-11-09 19:22:17 +0000907 PendingLoads.clear();
908 AliasMemDefs.clear();
909 AliasMemUses.clear();
Evan Cheng7f8e5632011-12-07 07:15:52 +0000910 } else if (MI->mayStore()) {
Benjamin Kramerfd510922013-06-29 18:41:17 +0000911 UnderlyingObjectsVector Objs;
Hal Finkel66859ae2012-12-10 18:49:16 +0000912 getUnderlyingObjectsForInstr(MI, MFI, Objs);
913
914 if (Objs.empty()) {
915 // Treat all other stores conservatively.
916 goto new_alias_chain;
917 }
918
919 bool MayAlias = false;
Benjamin Kramerfd510922013-06-29 18:41:17 +0000920 for (UnderlyingObjectsVector::iterator K = Objs.begin(), KE = Objs.end();
921 K != KE; ++K) {
922 const Value *V = K->getPointer();
923 bool ThisMayAlias = K->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +0000924 if (ThisMayAlias)
925 MayAlias = true;
926
Dan Gohman3aab10b2008-12-04 01:35:46 +0000927 // A store to a specific PseudoSourceValue. Add precise dependencies.
David Goodwind2f9c042009-11-09 19:22:17 +0000928 // Record the def in MemDefs, first adding a dep if there is
929 // an existing def.
Hal Finkela228a812014-01-20 14:03:02 +0000930 MapVector<const Value *, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +0000931 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Hal Finkela228a812014-01-20 14:03:02 +0000932 MapVector<const Value *, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000933 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000934 if (I != IE) {
Hal Finkela228a812014-01-20 14:03:02 +0000935 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
936 addChainDependency(AAForDep, MFI, SU, I->second[i], RejectMemNodes,
937 0, true);
938
939 // If we're not using AA, then we only need one store per object.
940 if (!AAForDep)
941 I->second.clear();
942 I->second.push_back(SU);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000943 } else {
Hal Finkela228a812014-01-20 14:03:02 +0000944 if (ThisMayAlias) {
945 if (!AAForDep)
946 AliasMemDefs[V].clear();
947 AliasMemDefs[V].push_back(SU);
948 } else {
949 if (!AAForDep)
950 NonAliasMemDefs[V].clear();
951 NonAliasMemDefs[V].push_back(SU);
952 }
Dan Gohman3aab10b2008-12-04 01:35:46 +0000953 }
954 // Handle the uses in MemUses, if there are any.
Sergei Larine8221482012-11-15 17:45:50 +0000955 MapVector<const Value *, std::vector<SUnit *> >::iterator J =
Hal Finkel66859ae2012-12-10 18:49:16 +0000956 ((ThisMayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V));
Sergei Larine8221482012-11-15 17:45:50 +0000957 MapVector<const Value *, std::vector<SUnit *> >::iterator JE =
Hal Finkel66859ae2012-12-10 18:49:16 +0000958 ((ThisMayAlias) ? AliasMemUses.end() : NonAliasMemUses.end());
David Goodwind2f9c042009-11-09 19:22:17 +0000959 if (J != JE) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000960 for (unsigned i = 0, e = J->second.size(); i != e; ++i)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000961 addChainDependency(AAForDep, MFI, SU, J->second[i], RejectMemNodes,
Andrew Trickda01ba32012-05-15 18:59:41 +0000962 TrueMemOrderLatency, true);
Dan Gohman3aab10b2008-12-04 01:35:46 +0000963 J->second.clear();
964 }
David Goodwin00822aa2009-11-02 17:06:28 +0000965 }
Hal Finkel66859ae2012-12-10 18:49:16 +0000966 if (MayAlias) {
967 // Add dependencies from all the PendingLoads, i.e. loads
968 // with no underlying object.
969 for (unsigned k = 0, m = PendingLoads.size(); k != m; ++k)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000970 addChainDependency(AAForDep, MFI, SU, PendingLoads[k], RejectMemNodes,
Hal Finkel66859ae2012-12-10 18:49:16 +0000971 TrueMemOrderLatency);
972 // Add dependence on alias chain, if needed.
973 if (AliasChain)
Hal Finkelb350ffd2013-08-29 03:25:05 +0000974 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
Hal Finkel66859ae2012-12-10 18:49:16 +0000975 // But we also should check dependent instructions for the
976 // SU in question.
977 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes,
978 TrueMemOrderLatency);
979 }
980 // Add dependence on barrier chain, if needed.
981 // There is no point to check aliasing on barrier event. Even if
982 // SU and barrier _could_ be reordered, they should not. In addition,
983 // we have lost all RejectMemNodes below barrier.
984 if (BarrierChain)
985 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Evan Cheng15459b62010-10-23 02:10:46 +0000986
987 if (!ExitSU.isPred(SU))
988 // Push store's up a bit to avoid them getting in between cmp
989 // and branches.
Andrew Trickbaeaabb2012-11-06 03:13:46 +0000990 ExitSU.addPred(SDep(SU, SDep::Artificial));
Evan Cheng7f8e5632011-12-07 07:15:52 +0000991 } else if (MI->mayLoad()) {
David Goodwina86f9192009-11-03 20:15:00 +0000992 bool MayAlias = true;
Dan Gohman87b02d52009-10-09 23:27:56 +0000993 if (MI->isInvariantLoad(AA)) {
Dan Gohman3aab10b2008-12-04 01:35:46 +0000994 // Invariant load, no chain dependencies needed!
David Goodwin28ba4f22009-11-05 00:16:44 +0000995 } else {
Benjamin Kramerfd510922013-06-29 18:41:17 +0000996 UnderlyingObjectsVector Objs;
Hal Finkel66859ae2012-12-10 18:49:16 +0000997 getUnderlyingObjectsForInstr(MI, MFI, Objs);
998
999 if (Objs.empty()) {
David Goodwind2f9c042009-11-09 19:22:17 +00001000 // A load with no underlying object. Depend on all
1001 // potentially aliasing stores.
Hal Finkela228a812014-01-20 14:03:02 +00001002 for (MapVector<const Value *, std::vector<SUnit *> >::iterator I =
David Goodwind2f9c042009-11-09 19:22:17 +00001003 AliasMemDefs.begin(), E = AliasMemDefs.end(); I != E; ++I)
Hal Finkela228a812014-01-20 14:03:02 +00001004 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
1005 addChainDependency(AAForDep, MFI, SU, I->second[i],
1006 RejectMemNodes);
Andrew Trick24b1c482011-05-05 19:24:06 +00001007
David Goodwind2f9c042009-11-09 19:22:17 +00001008 PendingLoads.push_back(SU);
1009 MayAlias = true;
Hal Finkel66859ae2012-12-10 18:49:16 +00001010 } else {
1011 MayAlias = false;
1012 }
1013
Benjamin Kramerfd510922013-06-29 18:41:17 +00001014 for (UnderlyingObjectsVector::iterator
Hal Finkel66859ae2012-12-10 18:49:16 +00001015 J = Objs.begin(), JE = Objs.end(); J != JE; ++J) {
Benjamin Kramerfd510922013-06-29 18:41:17 +00001016 const Value *V = J->getPointer();
1017 bool ThisMayAlias = J->getInt();
Hal Finkel66859ae2012-12-10 18:49:16 +00001018
1019 if (ThisMayAlias)
1020 MayAlias = true;
1021
1022 // A load from a specific PseudoSourceValue. Add precise dependencies.
Hal Finkela228a812014-01-20 14:03:02 +00001023 MapVector<const Value *, std::vector<SUnit *> >::iterator I =
Hal Finkel66859ae2012-12-10 18:49:16 +00001024 ((ThisMayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
Hal Finkela228a812014-01-20 14:03:02 +00001025 MapVector<const Value *, std::vector<SUnit *> >::iterator IE =
Hal Finkel66859ae2012-12-10 18:49:16 +00001026 ((ThisMayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
1027 if (I != IE)
Hal Finkela228a812014-01-20 14:03:02 +00001028 for (unsigned i = 0, e = I->second.size(); i != e; ++i)
1029 addChainDependency(AAForDep, MFI, SU, I->second[i],
1030 RejectMemNodes, 0, true);
Hal Finkel66859ae2012-12-10 18:49:16 +00001031 if (ThisMayAlias)
1032 AliasMemUses[V].push_back(SU);
1033 else
1034 NonAliasMemUses[V].push_back(SU);
David Goodwina86f9192009-11-03 20:15:00 +00001035 }
Andrew Trickda01ba32012-05-15 18:59:41 +00001036 if (MayAlias)
Andrew Trick344fb642012-06-13 02:39:03 +00001037 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, /*Latency=*/0);
David Goodwind2f9c042009-11-09 19:22:17 +00001038 // Add dependencies on alias and barrier chains, if needed.
1039 if (MayAlias && AliasChain)
Hal Finkelb350ffd2013-08-29 03:25:05 +00001040 addChainDependency(AAForDep, MFI, SU, AliasChain, RejectMemNodes);
David Goodwind2f9c042009-11-09 19:22:17 +00001041 if (BarrierChain)
Andrew Trickbaeaabb2012-11-06 03:13:46 +00001042 BarrierChain->addPred(SDep(SU, SDep::Barrier));
Andrew Trick24b1c482011-05-05 19:24:06 +00001043 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001044 }
Dan Gohman60cb69e2008-11-19 23:18:57 +00001045 }
Andrew Trickb767d1e2012-12-01 01:22:49 +00001046 if (DbgMI)
1047 FirstDbgValue = DbgMI;
Dan Gohman619ef482009-01-15 19:20:50 +00001048
Andrew Trickd675a4c2012-02-23 01:52:38 +00001049 Defs.clear();
1050 Uses.clear();
Andrew Trick59ac4fb2012-01-14 02:17:18 +00001051 VRegDefs.clear();
Dan Gohman619ef482009-01-15 19:20:50 +00001052 PendingLoads.clear();
Dan Gohman60cb69e2008-11-19 23:18:57 +00001053}
1054
Andrew Trick6b104f82013-12-28 21:56:55 +00001055/// \brief Initialize register live-range state for updating kills.
1056void ScheduleDAGInstrs::startBlockForKills(MachineBasicBlock *BB) {
1057 // Start with no live registers.
1058 LiveRegs.reset();
1059
1060 // Examine the live-in regs of all successors.
1061 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1062 SE = BB->succ_end(); SI != SE; ++SI) {
1063 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
1064 E = (*SI)->livein_end(); I != E; ++I) {
1065 unsigned Reg = *I;
1066 // Repeat, for reg and all subregs.
1067 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1068 SubRegs.isValid(); ++SubRegs)
1069 LiveRegs.set(*SubRegs);
1070 }
1071 }
1072}
1073
1074bool ScheduleDAGInstrs::toggleKillFlag(MachineInstr *MI, MachineOperand &MO) {
1075 // Setting kill flag...
1076 if (!MO.isKill()) {
1077 MO.setIsKill(true);
1078 return false;
1079 }
1080
1081 // If MO itself is live, clear the kill flag...
1082 if (LiveRegs.test(MO.getReg())) {
1083 MO.setIsKill(false);
1084 return false;
1085 }
1086
1087 // If any subreg of MO is live, then create an imp-def for that
1088 // subreg and keep MO marked as killed.
1089 MO.setIsKill(false);
1090 bool AllDead = true;
1091 const unsigned SuperReg = MO.getReg();
1092 MachineInstrBuilder MIB(MF, MI);
1093 for (MCSubRegIterator SubRegs(SuperReg, TRI); SubRegs.isValid(); ++SubRegs) {
1094 if (LiveRegs.test(*SubRegs)) {
1095 MIB.addReg(*SubRegs, RegState::ImplicitDefine);
1096 AllDead = false;
1097 }
1098 }
1099
1100 if(AllDead)
1101 MO.setIsKill(true);
1102 return false;
1103}
1104
1105// FIXME: Reuse the LivePhysRegs utility for this.
1106void ScheduleDAGInstrs::fixupKills(MachineBasicBlock *MBB) {
1107 DEBUG(dbgs() << "Fixup kills for BB#" << MBB->getNumber() << '\n');
1108
1109 LiveRegs.resize(TRI->getNumRegs());
1110 BitVector killedRegs(TRI->getNumRegs());
1111
1112 startBlockForKills(MBB);
1113
1114 // Examine block from end to start...
1115 unsigned Count = MBB->size();
1116 for (MachineBasicBlock::iterator I = MBB->end(), E = MBB->begin();
1117 I != E; --Count) {
1118 MachineInstr *MI = --I;
1119 if (MI->isDebugValue())
1120 continue;
1121
1122 // Update liveness. Registers that are defed but not used in this
1123 // instruction are now dead. Mark register and all subregs as they
1124 // are completely defined.
1125 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1126 MachineOperand &MO = MI->getOperand(i);
1127 if (MO.isRegMask())
1128 LiveRegs.clearBitsNotInMask(MO.getRegMask());
1129 if (!MO.isReg()) continue;
1130 unsigned Reg = MO.getReg();
1131 if (Reg == 0) continue;
1132 if (!MO.isDef()) continue;
1133 // Ignore two-addr defs.
1134 if (MI->isRegTiedToUseOperand(i)) continue;
1135
1136 // Repeat for reg and all subregs.
1137 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1138 SubRegs.isValid(); ++SubRegs)
1139 LiveRegs.reset(*SubRegs);
1140 }
1141
1142 // Examine all used registers and set/clear kill flag. When a
1143 // register is used multiple times we only set the kill flag on
1144 // the first use. Don't set kill flags on undef operands.
1145 killedRegs.reset();
1146 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1147 MachineOperand &MO = MI->getOperand(i);
1148 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1149 unsigned Reg = MO.getReg();
1150 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1151
1152 bool kill = false;
1153 if (!killedRegs.test(Reg)) {
1154 kill = true;
1155 // A register is not killed if any subregs are live...
1156 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
1157 if (LiveRegs.test(*SubRegs)) {
1158 kill = false;
1159 break;
1160 }
1161 }
1162
1163 // If subreg is not live, then register is killed if it became
1164 // live in this instruction
1165 if (kill)
1166 kill = !LiveRegs.test(Reg);
1167 }
1168
1169 if (MO.isKill() != kill) {
1170 DEBUG(dbgs() << "Fixing " << MO << " in ");
1171 // Warning: toggleKillFlag may invalidate MO.
1172 toggleKillFlag(MI, MO);
1173 DEBUG(MI->dump());
1174 }
1175
1176 killedRegs.set(Reg);
1177 }
1178
1179 // Mark any used register (that is not using undef) and subregs as
1180 // now live...
1181 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1182 MachineOperand &MO = MI->getOperand(i);
1183 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
1184 unsigned Reg = MO.getReg();
1185 if ((Reg == 0) || MRI.isReserved(Reg)) continue;
1186
1187 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
1188 SubRegs.isValid(); ++SubRegs)
1189 LiveRegs.set(*SubRegs);
1190 }
1191 }
1192}
1193
Dan Gohman60cb69e2008-11-19 23:18:57 +00001194void ScheduleDAGInstrs::dumpNode(const SUnit *SU) const {
Manman Ren19f49ac2012-09-11 22:23:19 +00001195#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman60cb69e2008-11-19 23:18:57 +00001196 SU->getInstr()->dump();
Manman Ren742534c2012-09-06 19:06:06 +00001197#endif
Dan Gohman60cb69e2008-11-19 23:18:57 +00001198}
1199
1200std::string ScheduleDAGInstrs::getGraphNodeLabel(const SUnit *SU) const {
1201 std::string s;
1202 raw_string_ostream oss(s);
Dan Gohmanb9543432009-02-10 23:27:53 +00001203 if (SU == &EntrySU)
1204 oss << "<entry>";
1205 else if (SU == &ExitSU)
1206 oss << "<exit>";
1207 else
Andrew Trickb36388a2013-01-25 07:45:25 +00001208 SU->getInstr()->print(oss, &TM, /*SkipOpers=*/true);
Dan Gohman60cb69e2008-11-19 23:18:57 +00001209 return oss.str();
1210}
1211
Andrew Trick1b2324d2012-03-07 00:18:22 +00001212/// Return the basic block label. It is not necessarilly unique because a block
1213/// contains multiple scheduling regions. But it is fine for visualization.
1214std::string ScheduleDAGInstrs::getDAGName() const {
1215 return "dag." + BB->getFullName();
1216}
Andrew Trick90f711d2012-10-15 18:02:27 +00001217
Andrew Trick48d392e2012-11-28 05:13:28 +00001218//===----------------------------------------------------------------------===//
1219// SchedDFSResult Implementation
1220//===----------------------------------------------------------------------===//
1221
1222namespace llvm {
1223/// \brief Internal state used to compute SchedDFSResult.
1224class SchedDFSImpl {
1225 SchedDFSResult &R;
1226
1227 /// Join DAG nodes into equivalence classes by their subtree.
1228 IntEqClasses SubtreeClasses;
1229 /// List PredSU, SuccSU pairs that represent data edges between subtrees.
1230 std::vector<std::pair<const SUnit*, const SUnit*> > ConnectionPairs;
1231
Andrew Trickffc80972013-01-25 06:52:27 +00001232 struct RootData {
1233 unsigned NodeID;
1234 unsigned ParentNodeID; // Parent node (member of the parent subtree).
1235 unsigned SubInstrCount; // Instr count in this tree only, not children.
1236
1237 RootData(unsigned id): NodeID(id),
1238 ParentNodeID(SchedDFSResult::InvalidSubtreeID),
1239 SubInstrCount(0) {}
1240
1241 unsigned getSparseSetIndex() const { return NodeID; }
1242 };
1243
1244 SparseSet<RootData> RootSet;
1245
Andrew Trick48d392e2012-11-28 05:13:28 +00001246public:
Andrew Trickffc80972013-01-25 06:52:27 +00001247 SchedDFSImpl(SchedDFSResult &r): R(r), SubtreeClasses(R.DFSNodeData.size()) {
1248 RootSet.setUniverse(R.DFSNodeData.size());
1249 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001250
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001251 /// Return true if this node been visited by the DFS traversal.
1252 ///
1253 /// During visitPostorderNode the Node's SubtreeID is assigned to the Node
1254 /// ID. Later, SubtreeID is updated but remains valid.
Andrew Trick48d392e2012-11-28 05:13:28 +00001255 bool isVisited(const SUnit *SU) const {
Andrew Trickffc80972013-01-25 06:52:27 +00001256 return R.DFSNodeData[SU->NodeNum].SubtreeID
1257 != SchedDFSResult::InvalidSubtreeID;
Andrew Trick48d392e2012-11-28 05:13:28 +00001258 }
1259
1260 /// Initialize this node's instruction count. We don't need to flag the node
1261 /// visited until visitPostorder because the DAG cannot have cycles.
1262 void visitPreorder(const SUnit *SU) {
Andrew Trickffc80972013-01-25 06:52:27 +00001263 R.DFSNodeData[SU->NodeNum].InstrCount =
1264 SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001265 }
1266
1267 /// Called once for each node after all predecessors are visited. Revisit this
1268 /// node's predecessors and potentially join them now that we know the ILP of
1269 /// the other predecessors.
1270 void visitPostorderNode(const SUnit *SU) {
1271 // Mark this node as the root of a subtree. It may be joined with its
1272 // successors later.
Andrew Trickffc80972013-01-25 06:52:27 +00001273 R.DFSNodeData[SU->NodeNum].SubtreeID = SU->NodeNum;
1274 RootData RData(SU->NodeNum);
1275 RData.SubInstrCount = SU->getInstr()->isTransient() ? 0 : 1;
Andrew Trick48d392e2012-11-28 05:13:28 +00001276
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001277 // If any predecessors are still in their own subtree, they either cannot be
1278 // joined or are large enough to remain separate. If this parent node's
1279 // total instruction count is not greater than a child subtree by at least
1280 // the subtree limit, then try to join it now since splitting subtrees is
1281 // only useful if multiple high-pressure paths are possible.
Andrew Trickffc80972013-01-25 06:52:27 +00001282 unsigned InstrCount = R.DFSNodeData[SU->NodeNum].InstrCount;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001283 for (SUnit::const_pred_iterator
1284 PI = SU->Preds.begin(), PE = SU->Preds.end(); PI != PE; ++PI) {
1285 if (PI->getKind() != SDep::Data)
1286 continue;
1287 unsigned PredNum = PI->getSUnit()->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001288 if ((InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001289 joinPredSubtree(*PI, SU, /*CheckLimit=*/false);
Andrew Trickffc80972013-01-25 06:52:27 +00001290
1291 // Either link or merge the TreeData entry from the child to the parent.
Andrew Trick646eeb62013-01-25 06:52:30 +00001292 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1293 // If the predecessor's parent is invalid, this is a tree edge and the
1294 // current node is the parent.
1295 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1296 RootSet[PredNum].ParentNodeID = SU->NodeNum;
1297 }
1298 else if (RootSet.count(PredNum)) {
1299 // The predecessor is not a root, but is still in the root set. This
1300 // must be the new parent that it was just joined to. Note that
1301 // RootSet[PredNum].ParentNodeID may either be invalid or may still be
1302 // set to the original parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001303 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1304 RootSet.erase(PredNum);
1305 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001306 }
Andrew Trickffc80972013-01-25 06:52:27 +00001307 RootSet[SU->NodeNum] = RData;
1308 }
1309
1310 /// Called once for each tree edge after calling visitPostOrderNode on the
1311 /// predecessor. Increment the parent node's instruction count and
1312 /// preemptively join this subtree to its parent's if it is small enough.
1313 void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ) {
1314 R.DFSNodeData[Succ->NodeNum].InstrCount
1315 += R.DFSNodeData[PredDep.getSUnit()->NodeNum].InstrCount;
1316 joinPredSubtree(PredDep, Succ);
Andrew Trick48d392e2012-11-28 05:13:28 +00001317 }
1318
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001319 /// Add a connection for cross edges.
1320 void visitCrossEdge(const SDep &PredDep, const SUnit *Succ) {
Andrew Trick48d392e2012-11-28 05:13:28 +00001321 ConnectionPairs.push_back(std::make_pair(PredDep.getSUnit(), Succ));
1322 }
1323
1324 /// Set each node's subtree ID to the representative ID and record connections
1325 /// between trees.
1326 void finalize() {
1327 SubtreeClasses.compress();
Andrew Trickffc80972013-01-25 06:52:27 +00001328 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1329 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1330 && "number of roots should match trees");
1331 for (SparseSet<RootData>::const_iterator
1332 RI = RootSet.begin(), RE = RootSet.end(); RI != RE; ++RI) {
1333 unsigned TreeID = SubtreeClasses[RI->NodeID];
1334 if (RI->ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1335 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[RI->ParentNodeID];
1336 R.DFSTreeData[TreeID].SubInstrCount = RI->SubInstrCount;
Andrew Trick646eeb62013-01-25 06:52:30 +00001337 // Note that SubInstrCount may be greater than InstrCount if we joined
1338 // subtrees across a cross edge. InstrCount will be attributed to the
1339 // original parent, while SubInstrCount will be attributed to the joined
1340 // parent.
Andrew Trickffc80972013-01-25 06:52:27 +00001341 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001342 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1343 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1344 DEBUG(dbgs() << R.getNumSubtrees() << " subtrees:\n");
Andrew Trickffc80972013-01-25 06:52:27 +00001345 for (unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1346 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
Andrew Trick48d392e2012-11-28 05:13:28 +00001347 DEBUG(dbgs() << " SU(" << Idx << ") in tree "
Andrew Trickffc80972013-01-25 06:52:27 +00001348 << R.DFSNodeData[Idx].SubtreeID << '\n');
Andrew Trick48d392e2012-11-28 05:13:28 +00001349 }
1350 for (std::vector<std::pair<const SUnit*, const SUnit*> >::const_iterator
1351 I = ConnectionPairs.begin(), E = ConnectionPairs.end();
1352 I != E; ++I) {
1353 unsigned PredTree = SubtreeClasses[I->first->NodeNum];
1354 unsigned SuccTree = SubtreeClasses[I->second->NodeNum];
1355 if (PredTree == SuccTree)
1356 continue;
1357 unsigned Depth = I->first->getDepth();
1358 addConnection(PredTree, SuccTree, Depth);
1359 addConnection(SuccTree, PredTree, Depth);
1360 }
1361 }
1362
1363protected:
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001364 /// Join the predecessor subtree with the successor that is its DFS
1365 /// parent. Apply some heuristics before joining.
1366 bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ,
1367 bool CheckLimit = true) {
1368 assert(PredDep.getKind() == SDep::Data && "Subtrees are for data edges");
1369
1370 // Check if the predecessor is already joined.
1371 const SUnit *PredSU = PredDep.getSUnit();
1372 unsigned PredNum = PredSU->NodeNum;
Andrew Trickffc80972013-01-25 06:52:27 +00001373 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001374 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001375
1376 // Four is the magic number of successors before a node is considered a
1377 // pinch point.
1378 unsigned NumDataSucs = 0;
Andrew Trickb52a8562013-01-25 00:12:57 +00001379 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(),
1380 SE = PredSU->Succs.end(); SI != SE; ++SI) {
1381 if (SI->getKind() == SDep::Data) {
1382 if (++NumDataSucs >= 4)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001383 return false;
Andrew Trickb52a8562013-01-25 00:12:57 +00001384 }
1385 }
Andrew Trickffc80972013-01-25 06:52:27 +00001386 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001387 return false;
Andrew Trickffc80972013-01-25 06:52:27 +00001388 R.DFSNodeData[PredNum].SubtreeID = Succ->NodeNum;
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001389 SubtreeClasses.join(Succ->NodeNum, PredNum);
1390 return true;
Andrew Trickb52a8562013-01-25 00:12:57 +00001391 }
1392
Andrew Trick48d392e2012-11-28 05:13:28 +00001393 /// Called by finalize() to record a connection between trees.
1394 void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth) {
1395 if (!Depth)
1396 return;
1397
Andrew Trickffc80972013-01-25 06:52:27 +00001398 do {
1399 SmallVectorImpl<SchedDFSResult::Connection> &Connections =
1400 R.SubtreeConnections[FromTree];
1401 for (SmallVectorImpl<SchedDFSResult::Connection>::iterator
1402 I = Connections.begin(), E = Connections.end(); I != E; ++I) {
1403 if (I->TreeID == ToTree) {
1404 I->Level = std::max(I->Level, Depth);
1405 return;
1406 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001407 }
Andrew Trickffc80972013-01-25 06:52:27 +00001408 Connections.push_back(SchedDFSResult::Connection(ToTree, Depth));
1409 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1410 } while (FromTree != SchedDFSResult::InvalidSubtreeID);
Andrew Trick48d392e2012-11-28 05:13:28 +00001411 }
1412};
1413} // namespace llvm
1414
Andrew Trick90f711d2012-10-15 18:02:27 +00001415namespace {
1416/// \brief Manage the stack used by a reverse depth-first search over the DAG.
1417class SchedDAGReverseDFS {
1418 std::vector<std::pair<const SUnit*, SUnit::const_pred_iterator> > DFSStack;
1419public:
1420 bool isComplete() const { return DFSStack.empty(); }
1421
1422 void follow(const SUnit *SU) {
1423 DFSStack.push_back(std::make_pair(SU, SU->Preds.begin()));
1424 }
1425 void advance() { ++DFSStack.back().second; }
1426
Andrew Trick48d392e2012-11-28 05:13:28 +00001427 const SDep *backtrack() {
1428 DFSStack.pop_back();
1429 return DFSStack.empty() ? 0 : llvm::prior(DFSStack.back().second);
1430 }
Andrew Trick90f711d2012-10-15 18:02:27 +00001431
1432 const SUnit *getCurr() const { return DFSStack.back().first; }
1433
1434 SUnit::const_pred_iterator getPred() const { return DFSStack.back().second; }
1435
1436 SUnit::const_pred_iterator getPredEnd() const {
1437 return getCurr()->Preds.end();
1438 }
1439};
1440} // anonymous
1441
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001442static bool hasDataSucc(const SUnit *SU) {
1443 for (SUnit::const_succ_iterator
1444 SI = SU->Succs.begin(), SE = SU->Succs.end(); SI != SE; ++SI) {
Andrew Trick646eeb62013-01-25 06:52:30 +00001445 if (SI->getKind() == SDep::Data && !SI->getSUnit()->isBoundaryNode())
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001446 return true;
1447 }
1448 return false;
1449}
1450
Andrew Trick90f711d2012-10-15 18:02:27 +00001451/// Compute an ILP metric for all nodes in the subDAG reachable via depth-first
1452/// search from this root.
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001453void SchedDFSResult::compute(ArrayRef<SUnit> SUnits) {
Andrew Trick90f711d2012-10-15 18:02:27 +00001454 if (!IsBottomUp)
1455 llvm_unreachable("Top-down ILP metric is unimplemnted");
1456
Andrew Trick48d392e2012-11-28 05:13:28 +00001457 SchedDFSImpl Impl(*this);
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001458 for (ArrayRef<SUnit>::const_iterator
1459 SI = SUnits.begin(), SE = SUnits.end(); SI != SE; ++SI) {
1460 const SUnit *SU = &*SI;
1461 if (Impl.isVisited(SU) || hasDataSucc(SU))
1462 continue;
1463
Andrew Trick48d392e2012-11-28 05:13:28 +00001464 SchedDAGReverseDFS DFS;
Andrew Tricke2c3f5c2013-01-25 06:33:57 +00001465 Impl.visitPreorder(SU);
1466 DFS.follow(SU);
Andrew Trick48d392e2012-11-28 05:13:28 +00001467 for (;;) {
1468 // Traverse the leftmost path as far as possible.
1469 while (DFS.getPred() != DFS.getPredEnd()) {
1470 const SDep &PredDep = *DFS.getPred();
1471 DFS.advance();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001472 // Ignore non-data edges.
Andrew Trick646eeb62013-01-25 06:52:30 +00001473 if (PredDep.getKind() != SDep::Data
1474 || PredDep.getSUnit()->isBoundaryNode()) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001475 continue;
Andrew Trick646eeb62013-01-25 06:52:30 +00001476 }
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001477 // An already visited edge is a cross edge, assuming an acyclic DAG.
Andrew Trick48d392e2012-11-28 05:13:28 +00001478 if (Impl.isVisited(PredDep.getSUnit())) {
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001479 Impl.visitCrossEdge(PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001480 continue;
1481 }
1482 Impl.visitPreorder(PredDep.getSUnit());
1483 DFS.follow(PredDep.getSUnit());
1484 }
1485 // Visit the top of the stack in postorder and backtrack.
1486 const SUnit *Child = DFS.getCurr();
1487 const SDep *PredDep = DFS.backtrack();
Andrew Trick5b07eeb2013-01-25 06:02:44 +00001488 Impl.visitPostorderNode(Child);
1489 if (PredDep)
1490 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
Andrew Trick48d392e2012-11-28 05:13:28 +00001491 if (DFS.isComplete())
1492 break;
Andrew Trick90f711d2012-10-15 18:02:27 +00001493 }
Andrew Trick48d392e2012-11-28 05:13:28 +00001494 }
1495 Impl.finalize();
1496}
1497
1498/// The root of the given SubtreeID was just scheduled. For all subtrees
1499/// connected to this tree, record the depth of the connection so that the
1500/// nearest connected subtrees can be prioritized.
1501void SchedDFSResult::scheduleTree(unsigned SubtreeID) {
1502 for (SmallVectorImpl<Connection>::const_iterator
1503 I = SubtreeConnections[SubtreeID].begin(),
1504 E = SubtreeConnections[SubtreeID].end(); I != E; ++I) {
1505 SubtreeConnectLevels[I->TreeID] =
1506 std::max(SubtreeConnectLevels[I->TreeID], I->Level);
1507 DEBUG(dbgs() << " Tree: " << I->TreeID
1508 << " @" << SubtreeConnectLevels[I->TreeID] << '\n');
Andrew Trick90f711d2012-10-15 18:02:27 +00001509 }
1510}
1511
1512#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1513void ILPValue::print(raw_ostream &OS) const {
Andrew Trick48d392e2012-11-28 05:13:28 +00001514 OS << InstrCount << " / " << Length << " = ";
1515 if (!Length)
Andrew Trick90f711d2012-10-15 18:02:27 +00001516 OS << "BADILP";
Andrew Trick48d392e2012-11-28 05:13:28 +00001517 else
1518 OS << format("%g", ((double)InstrCount / Length));
Andrew Trick90f711d2012-10-15 18:02:27 +00001519}
1520
1521void ILPValue::dump() const {
1522 dbgs() << *this << '\n';
1523}
1524
1525namespace llvm {
1526
1527raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val) {
1528 Val.print(OS);
1529 return OS;
1530}
1531
1532} // namespace llvm
1533#endif // !NDEBUG || LLVM_ENABLE_DUMP