blob: 3d240a997331a3939c20a1ed84be1ac2ea6cd2e4 [file] [log] [blame]
Andrew Trickd2a19da2012-09-14 20:26:46 +00001//===-- llvm/Target/TargetSchedule.cpp - Sched Machine Model ----*- C++ -*-===//
2//
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//
10// This file implements a wrapper around MCSchedModel that allows the interface
11// to benefit from information currently only available in TargetInstrInfo.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/CodeGen/TargetSchedule.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/Support/CommandLine.h"
17#include "llvm/Support/raw_ostream.h"
Andrew Trickd2a19da2012-09-14 20:26:46 +000018#include "llvm/Target/TargetInstrInfo.h"
Andrew Trickdd79f0f2012-10-10 05:43:09 +000019#include "llvm/Target/TargetMachine.h"
Andrew Trick6e6d5972012-09-18 04:03:34 +000020#include "llvm/Target/TargetRegisterInfo.h"
Andrew Trickd2a19da2012-09-14 20:26:46 +000021#include "llvm/Target/TargetSubtargetInfo.h"
Andrew Trickd2a19da2012-09-14 20:26:46 +000022
23using namespace llvm;
24
Andrew Trick8abcf4d2012-10-04 00:24:34 +000025static cl::opt<bool> EnableSchedModel("schedmodel", cl::Hidden, cl::init(true),
Andrew Trickd2a19da2012-09-14 20:26:46 +000026 cl::desc("Use TargetSchedModel for latency lookup"));
27
Andrew Trick6e6d5972012-09-18 04:03:34 +000028static cl::opt<bool> EnableSchedItins("scheditins", cl::Hidden, cl::init(true),
29 cl::desc("Use InstrItineraryData for latency lookup"));
30
Andrew Trickcfcf5202012-10-09 23:44:26 +000031bool TargetSchedModel::hasInstrSchedModel() const {
32 return EnableSchedModel && SchedModel.hasInstrSchedModel();
33}
34
35bool TargetSchedModel::hasInstrItineraries() const {
36 return EnableSchedItins && !InstrItins.isEmpty();
37}
38
Andrew Tricke96390e2012-11-06 07:10:38 +000039static unsigned gcd(unsigned Dividend, unsigned Divisor) {
40 // Dividend and Divisor will be naturally swapped as needed.
41 while(Divisor) {
42 unsigned Rem = Dividend % Divisor;
43 Dividend = Divisor;
44 Divisor = Rem;
45 };
46 return Dividend;
47}
48static unsigned lcm(unsigned A, unsigned B) {
49 unsigned LCM = (uint64_t(A) * B) / gcd(A, B);
50 assert((LCM >= A && LCM >= B) && "LCM overflow");
51 return LCM;
52}
53
Andrew Trickd2a19da2012-09-14 20:26:46 +000054void TargetSchedModel::init(const MCSchedModel &sm,
55 const TargetSubtargetInfo *sti,
56 const TargetInstrInfo *tii) {
57 SchedModel = sm;
58 STI = sti;
59 TII = tii;
60 STI->initInstrItins(InstrItins);
Andrew Tricke96390e2012-11-06 07:10:38 +000061
62 unsigned NumRes = SchedModel.getNumProcResourceKinds();
63 ResourceFactors.resize(NumRes);
64 ResourceLCM = SchedModel.IssueWidth;
65 for (unsigned Idx = 0; Idx < NumRes; ++Idx) {
66 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits;
67 if (NumUnits > 0)
68 ResourceLCM = lcm(ResourceLCM, NumUnits);
69 }
70 MicroOpFactor = ResourceLCM / SchedModel.IssueWidth;
71 for (unsigned Idx = 0; Idx < NumRes; ++Idx) {
72 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits;
73 ResourceFactors[Idx] = NumUnits ? (ResourceLCM / NumUnits) : 0;
74 }
Andrew Trickd2a19da2012-09-14 20:26:46 +000075}
Andrew Trick6e6d5972012-09-18 04:03:34 +000076
Andrew Tricke96390e2012-11-06 07:10:38 +000077unsigned TargetSchedModel::getNumMicroOps(const MachineInstr *MI,
78 const MCSchedClassDesc *SC) const {
Andrew Trickdd79f0f2012-10-10 05:43:09 +000079 if (hasInstrItineraries()) {
80 int UOps = InstrItins.getNumMicroOps(MI->getDesc().getSchedClass());
81 return (UOps >= 0) ? UOps : TII->getNumMicroOps(&InstrItins, MI);
82 }
Andrew Trick5f35afb2012-10-11 05:37:06 +000083 if (hasInstrSchedModel()) {
Andrew Tricke96390e2012-11-06 07:10:38 +000084 if (!SC)
85 SC = resolveSchedClass(MI);
86 if (SC->isValid())
87 return SC->NumMicroOps;
Andrew Trick5f35afb2012-10-11 05:37:06 +000088 }
89 return MI->isTransient() ? 0 : 1;
Andrew Trickdd79f0f2012-10-10 05:43:09 +000090}
91
Andrew Trick0b1d8d02012-10-17 17:27:10 +000092// The machine model may explicitly specify an invalid latency, which
93// effectively means infinite latency. Since users of the TargetSchedule API
94// don't know how to handle this, we convert it to a very large latency that is
95// easy to distinguish when debugging the DAG but won't induce overflow.
Andrew Trickde2109e2013-06-15 04:49:57 +000096static unsigned capLatency(int Cycles) {
Andrew Trick0b1d8d02012-10-17 17:27:10 +000097 return Cycles >= 0 ? Cycles : 1000;
98}
99
Andrew Trick6e6d5972012-09-18 04:03:34 +0000100/// Return the MCSchedClassDesc for this instruction. Some SchedClasses require
101/// evaluation of predicates that depend on instruction operands or flags.
102const MCSchedClassDesc *TargetSchedModel::
103resolveSchedClass(const MachineInstr *MI) const {
104
105 // Get the definition's scheduling class descriptor from this machine model.
106 unsigned SchedClass = MI->getDesc().getSchedClass();
107 const MCSchedClassDesc *SCDesc = SchedModel.getSchedClassDesc(SchedClass);
Andrew Trickbe2bccb2013-04-13 06:07:45 +0000108 if (!SCDesc->isValid())
109 return SCDesc;
Andrew Trick6e6d5972012-09-18 04:03:34 +0000110
111#ifndef NDEBUG
112 unsigned NIter = 0;
113#endif
114 while (SCDesc->isVariant()) {
115 assert(++NIter < 6 && "Variants are nested deeper than the magic number");
116
117 SchedClass = STI->resolveSchedClass(SchedClass, MI, this);
118 SCDesc = SchedModel.getSchedClassDesc(SchedClass);
119 }
120 return SCDesc;
121}
122
123/// Find the def index of this operand. This index maps to the machine model and
124/// is independent of use operands. Def operands may be reordered with uses or
125/// merged with uses without affecting the def index (e.g. before/after
126/// regalloc). However, an instruction's def operands must never be reordered
127/// with respect to each other.
128static unsigned findDefIdx(const MachineInstr *MI, unsigned DefOperIdx) {
129 unsigned DefIdx = 0;
130 for (unsigned i = 0; i != DefOperIdx; ++i) {
131 const MachineOperand &MO = MI->getOperand(i);
132 if (MO.isReg() && MO.isDef())
133 ++DefIdx;
134 }
135 return DefIdx;
136}
137
138/// Find the use index of this operand. This is independent of the instruction's
139/// def operands.
Andrew Trickf2b70d92012-09-18 18:20:02 +0000140///
141/// Note that uses are not determined by the operand's isUse property, which
142/// is simply the inverse of isDef. Here we consider any readsReg operand to be
143/// a "use". The machine model allows an operand to be both a Def and Use.
Andrew Trick6e6d5972012-09-18 04:03:34 +0000144static unsigned findUseIdx(const MachineInstr *MI, unsigned UseOperIdx) {
145 unsigned UseIdx = 0;
146 for (unsigned i = 0; i != UseOperIdx; ++i) {
147 const MachineOperand &MO = MI->getOperand(i);
Andrew Trickf2b70d92012-09-18 18:20:02 +0000148 if (MO.isReg() && MO.readsReg())
Andrew Trick6e6d5972012-09-18 04:03:34 +0000149 ++UseIdx;
150 }
151 return UseIdx;
152}
153
154// Top-level API for clients that know the operand indices.
155unsigned TargetSchedModel::computeOperandLatency(
156 const MachineInstr *DefMI, unsigned DefOperIdx,
Andrew Trickde2109e2013-06-15 04:49:57 +0000157 const MachineInstr *UseMI, unsigned UseOperIdx) const {
Andrew Trick6e6d5972012-09-18 04:03:34 +0000158
Andrew Trickde2109e2013-06-15 04:49:57 +0000159 if (!hasInstrSchedModel() && !hasInstrItineraries())
160 return TII->defaultDefLatency(&SchedModel, DefMI);
Andrew Trick6e6d5972012-09-18 04:03:34 +0000161
Andrew Trickcfcf5202012-10-09 23:44:26 +0000162 if (hasInstrItineraries()) {
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000163 int OperLatency = 0;
164 if (UseMI) {
Andrew Trickde2109e2013-06-15 04:49:57 +0000165 OperLatency = TII->getOperandLatency(&InstrItins, DefMI, DefOperIdx,
166 UseMI, UseOperIdx);
Andrew Trick6e6d5972012-09-18 04:03:34 +0000167 }
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000168 else {
169 unsigned DefClass = DefMI->getDesc().getSchedClass();
170 OperLatency = InstrItins.getOperandCycle(DefClass, DefOperIdx);
171 }
172 if (OperLatency >= 0)
173 return OperLatency;
174
175 // No operand latency was found.
176 unsigned InstrLatency = TII->getInstrLatency(&InstrItins, DefMI);
177
178 // Expected latency is the max of the stage latency and itinerary props.
Andrew Trick780fae82012-10-09 23:44:32 +0000179 // Rather than directly querying InstrItins stage latency, we call a TII
180 // hook to allow subtargets to specialize latency. This hook is only
181 // applicable to the InstrItins model. InstrSchedModel should model all
182 // special cases without TII hooks.
Andrew Trickde2109e2013-06-15 04:49:57 +0000183 InstrLatency = std::max(InstrLatency,
184 TII->defaultDefLatency(&SchedModel, DefMI));
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000185 return InstrLatency;
186 }
Andrew Trickde2109e2013-06-15 04:49:57 +0000187 // hasInstrSchedModel()
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000188 const MCSchedClassDesc *SCDesc = resolveSchedClass(DefMI);
189 unsigned DefIdx = findDefIdx(DefMI, DefOperIdx);
190 if (DefIdx < SCDesc->NumWriteLatencyEntries) {
191 // Lookup the definition's write latency in SubtargetInfo.
192 const MCWriteLatencyEntry *WLEntry =
193 STI->getWriteLatencyEntry(SCDesc, DefIdx);
194 unsigned WriteID = WLEntry->WriteResourceID;
Andrew Trickde2109e2013-06-15 04:49:57 +0000195 unsigned Latency = capLatency(WLEntry->Cycles);
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000196 if (!UseMI)
197 return Latency;
198
199 // Lookup the use's latency adjustment in SubtargetInfo.
200 const MCSchedClassDesc *UseDesc = resolveSchedClass(UseMI);
201 if (UseDesc->NumReadAdvanceEntries == 0)
202 return Latency;
203 unsigned UseIdx = findUseIdx(UseMI, UseOperIdx);
Andrew Trick5d4861862013-06-17 21:45:18 +0000204 int Advance = STI->getReadAdvanceCycles(UseDesc, UseIdx, WriteID);
205 if (Advance > 0 && (unsigned)Advance > Latency) // unsigned wrap
206 return 0;
207 return Latency - Advance;
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000208 }
209 // If DefIdx does not exist in the model (e.g. implicit defs), then return
210 // unit latency (defaultDefLatency may be too conservative).
Andrew Trickf2b70d92012-09-18 18:20:02 +0000211#ifndef NDEBUG
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000212 if (SCDesc->isValid() && !DefMI->getOperand(DefOperIdx).isImplicit()
Andrew Trickb6854d82013-09-25 18:14:12 +0000213 && !DefMI->getDesc().OpInfo[DefOperIdx].isOptionalDef()
214 && SchedModel.isComplete()) {
Alp Tokere69170a2014-06-26 22:52:05 +0000215 std::string Err;
216 raw_string_ostream ss(Err);
217 ss << "DefIdx " << DefIdx << " exceeds machine model writes for "
218 << *DefMI;
219 report_fatal_error(ss.str());
Andrew Trick8abcf4d2012-10-04 00:24:34 +0000220 }
Andrew Trickf2b70d92012-09-18 18:20:02 +0000221#endif
Andrew Trick60570172013-03-16 18:58:57 +0000222 // FIXME: Automatically giving all implicit defs defaultDefLatency is
223 // undesirable. We should only do it for defs that are known to the MC
224 // desc like flags. Truly implicit defs should get 1 cycle latency.
225 return DefMI->isTransient() ? 0 : TII->defaultDefLatency(&SchedModel, DefMI);
Andrew Trick6e6d5972012-09-18 04:03:34 +0000226}
Andrew Trick780fae82012-10-09 23:44:32 +0000227
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000228unsigned TargetSchedModel::computeInstrLatency(unsigned Opcode) const {
229 assert(hasInstrSchedModel() && "Only call this function with a SchedModel");
230
231 unsigned SCIdx = TII->get(Opcode).getSchedClass();
232 const MCSchedClassDesc *SCDesc = SchedModel.getSchedClassDesc(SCIdx);
233 unsigned Latency = 0;
234
235 if (SCDesc->isValid() && !SCDesc->isVariant()) {
236 for (unsigned DefIdx = 0, DefEnd = SCDesc->NumWriteLatencyEntries;
237 DefIdx != DefEnd; ++DefIdx) {
238 // Lookup the definition's write latency in SubtargetInfo.
239 const MCWriteLatencyEntry *WLEntry =
240 STI->getWriteLatencyEntry(SCDesc, DefIdx);
241 Latency = std::max(Latency, capLatency(WLEntry->Cycles));
242 }
243 return Latency;
244 }
245
246 assert(Latency && "No MI sched latency");
247 return 0;
248}
249
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +0000250unsigned
251TargetSchedModel::computeInstrLatency(const MachineInstr *MI,
252 bool UseDefaultDefLatency) const {
Andrew Trickc334bd42012-10-10 05:43:18 +0000253 // For the itinerary model, fall back to the old subtarget hook.
254 // Allow subtargets to compute Bundle latencies outside the machine model.
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +0000255 if (hasInstrItineraries() || MI->isBundle() ||
256 (!hasInstrSchedModel() && !UseDefaultDefLatency))
Andrew Trick780fae82012-10-09 23:44:32 +0000257 return TII->getInstrLatency(&InstrItins, MI);
Andrew Trickc334bd42012-10-10 05:43:18 +0000258
Andrew Trick780fae82012-10-09 23:44:32 +0000259 if (hasInstrSchedModel()) {
Andrew Trick780fae82012-10-09 23:44:32 +0000260 const MCSchedClassDesc *SCDesc = resolveSchedClass(MI);
Andrew Trick5f35afb2012-10-11 05:37:06 +0000261 if (SCDesc->isValid()) {
262 unsigned Latency = 0;
263 for (unsigned DefIdx = 0, DefEnd = SCDesc->NumWriteLatencyEntries;
264 DefIdx != DefEnd; ++DefIdx) {
265 // Lookup the definition's write latency in SubtargetInfo.
266 const MCWriteLatencyEntry *WLEntry =
267 STI->getWriteLatencyEntry(SCDesc, DefIdx);
Andrew Trickde2109e2013-06-15 04:49:57 +0000268 Latency = std::max(Latency, capLatency(WLEntry->Cycles));
Andrew Trick5f35afb2012-10-11 05:37:06 +0000269 }
270 return Latency;
Andrew Trick780fae82012-10-09 23:44:32 +0000271 }
Andrew Trick780fae82012-10-09 23:44:32 +0000272 }
273 return TII->defaultDefLatency(&SchedModel, MI);
274}
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000275
276unsigned TargetSchedModel::
277computeOutputLatency(const MachineInstr *DefMI, unsigned DefOperIdx,
278 const MachineInstr *DepMI) const {
Andrew Trickde2109e2013-06-15 04:49:57 +0000279 if (SchedModel.MicroOpBufferSize <= 1)
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000280 return 1;
281
Andrew Trickde2109e2013-06-15 04:49:57 +0000282 // MicroOpBufferSize > 1 indicates an out-of-order processor that can dispatch
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000283 // WAW dependencies in the same cycle.
284
285 // Treat predication as a data dependency for out-of-order cpus. In-order
286 // cpus do not need to treat predicated writes specially.
287 //
288 // TODO: The following hack exists because predication passes do not
289 // correctly append imp-use operands, and readsReg() strangely returns false
290 // for predicated defs.
291 unsigned Reg = DefMI->getOperand(DefOperIdx).getReg();
292 const MachineFunction &MF = *DefMI->getParent()->getParent();
Eric Christopherfc6de422014-08-05 02:39:49 +0000293 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000294 if (!DepMI->readsRegister(Reg, TRI) && TII->isPredicated(DepMI))
295 return computeInstrLatency(DefMI);
296
297 // If we have a per operand scheduling model, check if this def is writing
298 // an unbuffered resource. If so, it treated like an in-order cpu.
299 if (hasInstrSchedModel()) {
300 const MCSchedClassDesc *SCDesc = resolveSchedClass(DefMI);
Andrew Trick5f35afb2012-10-11 05:37:06 +0000301 if (SCDesc->isValid()) {
302 for (const MCWriteProcResEntry *PRI = STI->getWriteProcResBegin(SCDesc),
303 *PRE = STI->getWriteProcResEnd(SCDesc); PRI != PRE; ++PRI) {
Andrew Trickde2109e2013-06-15 04:49:57 +0000304 if (!SchedModel.getProcResource(PRI->ProcResourceIdx)->BufferSize)
Andrew Trick5f35afb2012-10-11 05:37:06 +0000305 return 1;
306 }
Andrew Trickdd79f0f2012-10-10 05:43:09 +0000307 }
308 }
309 return 0;
310}