2012-07-07 04:00:00 +00:00
|
|
|
//===-- llvm/MC/MCSchedule.h - Scheduling -----------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the classes used to describe a subtarget's machine model
|
|
|
|
// for scheduling and other instruction cost heuristics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_MC_MCSCHEDULE_H
|
|
|
|
#define LLVM_MC_MCSCHEDULE_H
|
2012-07-07 04:00:00 +00:00
|
|
|
|
|
|
|
#include "llvm/Support/DataTypes.h"
|
2012-09-14 20:26:41 +00:00
|
|
|
#include <cassert>
|
2012-07-07 04:00:00 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
struct InstrItinerary;
|
|
|
|
|
2012-09-14 20:26:41 +00:00
|
|
|
/// Define a kind of processor resource that will be modeled by the scheduler.
|
|
|
|
struct MCProcResourceDesc {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
const char *Name;
|
|
|
|
#endif
|
2012-10-10 05:43:04 +00:00
|
|
|
unsigned NumUnits; // Number of resource of this kind
|
2012-09-14 20:26:41 +00:00
|
|
|
unsigned SuperIdx; // Index of the resources kind that contains this kind.
|
|
|
|
|
2013-06-15 04:49:57 +00:00
|
|
|
// Number of resources that may be buffered.
|
|
|
|
//
|
|
|
|
// Buffered resources (BufferSize > 0 || BufferSize == -1) may be consumed at
|
|
|
|
// some indeterminate cycle after dispatch (e.g. for instructions that may
|
|
|
|
// issue out-of-order). Unbuffered resources (BufferSize == 0) always consume
|
|
|
|
// their resource some fixed number of cycles after dispatch (e.g. for
|
|
|
|
// instruction interlocking that may stall the pipeline).
|
|
|
|
int BufferSize;
|
2012-10-10 05:43:04 +00:00
|
|
|
|
2012-09-14 20:26:41 +00:00
|
|
|
bool operator==(const MCProcResourceDesc &Other) const {
|
2012-10-10 05:43:04 +00:00
|
|
|
return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
|
2013-06-15 04:49:57 +00:00
|
|
|
&& BufferSize == Other.BufferSize;
|
2012-09-14 20:26:41 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Identify one of the processor resource kinds consumed by a particular
|
|
|
|
/// scheduling class for the specified number of cycles.
|
|
|
|
struct MCWriteProcResEntry {
|
|
|
|
unsigned ProcResourceIdx;
|
|
|
|
unsigned Cycles;
|
|
|
|
|
|
|
|
bool operator==(const MCWriteProcResEntry &Other) const {
|
|
|
|
return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Specify the latency in cpu cycles for a particular scheduling class and def
|
2012-10-17 17:27:10 +00:00
|
|
|
/// index. -1 indicates an invalid latency. Heuristics would typically consider
|
|
|
|
/// an instruction with invalid latency to have infinite latency. Also identify
|
|
|
|
/// the WriteResources of this def. When the operand expands to a sequence of
|
|
|
|
/// writes, this ID is the last write in the sequence.
|
2012-09-14 20:26:41 +00:00
|
|
|
struct MCWriteLatencyEntry {
|
2012-10-17 17:27:10 +00:00
|
|
|
int Cycles;
|
2012-09-14 20:26:41 +00:00
|
|
|
unsigned WriteResourceID;
|
|
|
|
|
|
|
|
bool operator==(const MCWriteLatencyEntry &Other) const {
|
|
|
|
return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Specify the number of cycles allowed after instruction issue before a
|
|
|
|
/// particular use operand reads its registers. This effectively reduces the
|
|
|
|
/// write's latency. Here we allow negative cycles for corner cases where
|
|
|
|
/// latency increases. This rule only applies when the entry's WriteResource
|
|
|
|
/// matches the write's WriteResource.
|
|
|
|
///
|
|
|
|
/// MCReadAdvanceEntries are sorted first by operand index (UseIdx), then by
|
|
|
|
/// WriteResourceIdx.
|
|
|
|
struct MCReadAdvanceEntry {
|
|
|
|
unsigned UseIdx;
|
|
|
|
unsigned WriteResourceID;
|
|
|
|
int Cycles;
|
|
|
|
|
|
|
|
bool operator==(const MCReadAdvanceEntry &Other) const {
|
|
|
|
return UseIdx == Other.UseIdx && WriteResourceID == Other.WriteResourceID
|
|
|
|
&& Cycles == Other.Cycles;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Summarize the scheduling resources required for an instruction of a
|
|
|
|
/// particular scheduling class.
|
|
|
|
///
|
|
|
|
/// Defined as an aggregate struct for creating tables with initializer lists.
|
|
|
|
struct MCSchedClassDesc {
|
|
|
|
static const unsigned short InvalidNumMicroOps = UINT16_MAX;
|
|
|
|
static const unsigned short VariantNumMicroOps = UINT16_MAX - 1;
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
const char* Name;
|
|
|
|
#endif
|
|
|
|
unsigned short NumMicroOps;
|
|
|
|
bool BeginGroup;
|
|
|
|
bool EndGroup;
|
|
|
|
unsigned WriteProcResIdx; // First index into WriteProcResTable.
|
|
|
|
unsigned NumWriteProcResEntries;
|
|
|
|
unsigned WriteLatencyIdx; // First index into WriteLatencyTable.
|
|
|
|
unsigned NumWriteLatencyEntries;
|
|
|
|
unsigned ReadAdvanceIdx; // First index into ReadAdvanceTable.
|
|
|
|
unsigned NumReadAdvanceEntries;
|
|
|
|
|
|
|
|
bool isValid() const {
|
|
|
|
return NumMicroOps != InvalidNumMicroOps;
|
|
|
|
}
|
|
|
|
bool isVariant() const {
|
|
|
|
return NumMicroOps == VariantNumMicroOps;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-07-07 04:00:00 +00:00
|
|
|
/// Machine model for scheduling, bundling, and heuristics.
|
|
|
|
///
|
|
|
|
/// The machine model directly provides basic information about the
|
|
|
|
/// microarchitecture to the scheduler in the form of properties. It also
|
2012-09-14 20:26:41 +00:00
|
|
|
/// optionally refers to scheduler resource tables and itinerary
|
|
|
|
/// tables. Scheduler resource tables model the latency and cost for each
|
2013-10-22 15:18:03 +00:00
|
|
|
/// instruction type. Itinerary tables are an independent mechanism that
|
2012-07-07 04:00:00 +00:00
|
|
|
/// provides a detailed reservation table describing each cycle of instruction
|
|
|
|
/// execution. Subtargets may define any or all of the above categories of data
|
|
|
|
/// depending on the type of CPU and selected scheduler.
|
|
|
|
class MCSchedModel {
|
|
|
|
public:
|
|
|
|
static MCSchedModel DefaultSchedModel; // For unknown processors.
|
|
|
|
|
|
|
|
// IssueWidth is the maximum number of instructions that may be scheduled in
|
|
|
|
// the same per-cycle group.
|
|
|
|
unsigned IssueWidth;
|
|
|
|
static const unsigned DefaultIssueWidth = 1;
|
|
|
|
|
2013-06-15 04:49:57 +00:00
|
|
|
// MicroOpBufferSize is the number of micro-ops that the processor may buffer
|
|
|
|
// for out-of-order execution.
|
2012-07-07 04:00:00 +00:00
|
|
|
//
|
2013-06-15 04:49:57 +00:00
|
|
|
// "0" means operations that are not ready in this cycle are not considered
|
|
|
|
// for scheduling (they go in the pending queue). Latency is paramount. This
|
|
|
|
// may be more efficient if many instructions are pending in a schedule.
|
2012-07-07 04:00:00 +00:00
|
|
|
//
|
2013-06-15 04:49:57 +00:00
|
|
|
// "1" means all instructions are considered for scheduling regardless of
|
|
|
|
// whether they are ready in this cycle. Latency still causes issue stalls,
|
|
|
|
// but we balance those stalls against other heuristics.
|
2012-07-07 04:00:00 +00:00
|
|
|
//
|
2013-06-15 04:49:57 +00:00
|
|
|
// "> 1" means the processor is out-of-order. This is a machine independent
|
2013-12-05 17:55:47 +00:00
|
|
|
// estimate of highly machine specific characteristics such as the register
|
2013-06-15 04:49:57 +00:00
|
|
|
// renaming pool and reorder buffer.
|
|
|
|
unsigned MicroOpBufferSize;
|
|
|
|
static const unsigned DefaultMicroOpBufferSize = 0;
|
2012-07-07 04:00:00 +00:00
|
|
|
|
|
|
|
// LoadLatency is the expected latency of load instructions.
|
|
|
|
//
|
|
|
|
// If MinLatency >= 0, this may be overriden for individual load opcodes by
|
|
|
|
// InstrItinerary OperandCycles.
|
|
|
|
unsigned LoadLatency;
|
|
|
|
static const unsigned DefaultLoadLatency = 4;
|
|
|
|
|
|
|
|
// HighLatency is the expected latency of "very high latency" operations.
|
|
|
|
// See TargetInstrInfo::isHighLatencyDef().
|
|
|
|
// By default, this is set to an arbitrarily high number of cycles
|
|
|
|
// likely to have some impact on scheduling heuristics.
|
|
|
|
// If MinLatency >= 0, this may be overriden by InstrItinData OperandCycles.
|
|
|
|
unsigned HighLatency;
|
|
|
|
static const unsigned DefaultHighLatency = 10;
|
|
|
|
|
2012-08-08 02:44:16 +00:00
|
|
|
// MispredictPenalty is the typical number of extra cycles the processor
|
|
|
|
// takes to recover from a branch misprediction.
|
|
|
|
unsigned MispredictPenalty;
|
|
|
|
static const unsigned DefaultMispredictPenalty = 10;
|
|
|
|
|
2013-09-25 18:14:12 +00:00
|
|
|
bool CompleteModel;
|
|
|
|
|
2012-07-07 04:00:00 +00:00
|
|
|
private:
|
2012-09-14 20:26:41 +00:00
|
|
|
unsigned ProcID;
|
|
|
|
const MCProcResourceDesc *ProcResourceTable;
|
|
|
|
const MCSchedClassDesc *SchedClassTable;
|
|
|
|
unsigned NumProcResourceKinds;
|
|
|
|
unsigned NumSchedClasses;
|
2012-07-07 04:00:00 +00:00
|
|
|
// Instruction itinerary tables used by InstrItineraryData.
|
|
|
|
friend class InstrItineraryData;
|
|
|
|
const InstrItinerary *InstrItineraries;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Default's must be specified as static const literals so that tablegenerated
|
|
|
|
// target code can use it in static initializers. The defaults need to be
|
|
|
|
// initialized in this default ctor because some clients directly instantiate
|
|
|
|
// MCSchedModel instead of using a generated itinerary.
|
2012-08-06 22:34:51 +00:00
|
|
|
MCSchedModel(): IssueWidth(DefaultIssueWidth),
|
2013-06-15 04:49:57 +00:00
|
|
|
MicroOpBufferSize(DefaultMicroOpBufferSize),
|
2012-07-07 04:00:00 +00:00
|
|
|
LoadLatency(DefaultLoadLatency),
|
|
|
|
HighLatency(DefaultHighLatency),
|
2012-08-08 02:44:16 +00:00
|
|
|
MispredictPenalty(DefaultMispredictPenalty),
|
2013-09-25 18:14:12 +00:00
|
|
|
CompleteModel(true),
|
2012-09-18 03:18:56 +00:00
|
|
|
ProcID(0), ProcResourceTable(0), SchedClassTable(0),
|
|
|
|
NumProcResourceKinds(0), NumSchedClasses(0),
|
|
|
|
InstrItineraries(0) {
|
|
|
|
(void)NumProcResourceKinds;
|
|
|
|
(void)NumSchedClasses;
|
|
|
|
}
|
2012-07-07 04:00:00 +00:00
|
|
|
|
|
|
|
// Table-gen driven ctor.
|
2013-06-15 04:49:57 +00:00
|
|
|
MCSchedModel(unsigned iw, int mbs, unsigned ll, unsigned hl,
|
2013-09-25 18:14:12 +00:00
|
|
|
unsigned mp, bool cm, unsigned pi, const MCProcResourceDesc *pr,
|
2012-09-18 03:18:56 +00:00
|
|
|
const MCSchedClassDesc *sc, unsigned npr, unsigned nsc,
|
2012-07-07 04:00:00 +00:00
|
|
|
const InstrItinerary *ii):
|
2013-06-15 04:49:57 +00:00
|
|
|
IssueWidth(iw), MicroOpBufferSize(mbs), LoadLatency(ll), HighLatency(hl),
|
2013-09-25 18:14:12 +00:00
|
|
|
MispredictPenalty(mp), CompleteModel(cm), ProcID(pi),
|
|
|
|
ProcResourceTable(pr), SchedClassTable(sc), NumProcResourceKinds(npr),
|
|
|
|
NumSchedClasses(nsc), InstrItineraries(ii) {}
|
2012-09-14 20:26:41 +00:00
|
|
|
|
2012-09-14 20:26:46 +00:00
|
|
|
unsigned getProcessorID() const { return ProcID; }
|
|
|
|
|
2012-09-14 20:26:41 +00:00
|
|
|
/// Does this machine model include instruction-level scheduling.
|
2012-09-18 04:18:39 +00:00
|
|
|
bool hasInstrSchedModel() const { return SchedClassTable; }
|
2012-09-14 20:26:41 +00:00
|
|
|
|
2013-09-25 18:14:12 +00:00
|
|
|
/// Return true if this machine model data for all instructions with a
|
|
|
|
/// scheduling class (itinerary class or SchedRW list).
|
|
|
|
bool isComplete() const { return CompleteModel; }
|
|
|
|
|
2012-11-06 07:10:38 +00:00
|
|
|
unsigned getNumProcResourceKinds() const {
|
|
|
|
return NumProcResourceKinds;
|
|
|
|
}
|
|
|
|
|
2012-09-14 20:26:41 +00:00
|
|
|
const MCProcResourceDesc *getProcResource(unsigned ProcResourceIdx) const {
|
|
|
|
assert(hasInstrSchedModel() && "No scheduling machine model");
|
|
|
|
|
|
|
|
assert(ProcResourceIdx < NumProcResourceKinds && "bad proc resource idx");
|
|
|
|
return &ProcResourceTable[ProcResourceIdx];
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCSchedClassDesc *getSchedClassDesc(unsigned SchedClassIdx) const {
|
|
|
|
assert(hasInstrSchedModel() && "No scheduling machine model");
|
|
|
|
|
|
|
|
assert(SchedClassIdx < NumSchedClasses && "bad scheduling class idx");
|
|
|
|
return &SchedClassTable[SchedClassIdx];
|
|
|
|
}
|
2012-07-07 04:00:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|