41#include "llvm/Config/llvm-config.h"
63#define DEBUG_TYPE "machine-scheduler"
67 cl::desc(
"Enable use of AA during MI DAG construction"));
74 cl::desc(
"Use TargetSchedModel for latency lookup"));
78 cl::desc(
"Use InstrItineraryData for latency lookup"));
88 cl::desc(
"The limit to use while constructing the DAG "
89 "prior to scheduling, at which point a trade-off "
90 "is made to avoid excessive compile time."));
92#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
95 cl::desc(
"Report top/bottom cycles when dumping SUnit instances"));
99#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
101 for (
const SUnit *SU : L) {
102 dbgs() <<
"SU(" << SU->NodeNum <<
")";
131 bool AllObjectsIdentified =
true;
135 if (MMO->isVolatile() || MMO->isAtomic()) {
136 AllObjectsIdentified =
false;
147 AllObjectsIdentified =
false;
148 }
else if (PSV->isAliased(&MFI)) {
152 AllObjectsIdentified =
false;
156 }
else if (
const Value *V = MMO->getValue()) {
159 AllObjectsIdentified &= ObjectsIdentified;
161 for (
Value *V : Objs) {
166 AllObjectsIdentified =
false;
170 return AllObjectsIdentified;
185 unsigned regioninstrs) {
186 assert(bb ==
BB &&
"startBlock should set BB");
206 unsigned OpIdx = MO.getOperandNo();
208 if (Reg.isPhysical()) {
219 for (MCRegUnit Unit :
TRI->regunits(Reg))
221 }
else if (Reg.isVirtual() && MO.readsReg()) {
230 for (
const auto &LI : Succ->liveins()) {
232 auto [Unit, Mask] = *U;
233 if ((Mask & LI.LaneMask).any() && !
Uses.contains(Unit))
254 bool ImplicitPseudoDef = (OperIdx >= DefMIDesc.
getNumOperands() &&
256 for (MCRegUnit Unit :
TRI->regunits(Reg)) {
266 int UseOpIdx =
I->OpIdx;
267 bool ImplicitPseudoUse =
false;
279 ImplicitPseudoUse = UseOpIdx >= ((int)UseMIDesc.
getNumOperands()) &&
284 if (!ImplicitPseudoDef && !ImplicitPseudoUse) {
286 UseInstr, UseOpIdx));
290 ST.adjustSchedDependency(SU, OperIdx, UseSU, UseOpIdx, Dep, &
SchedModel);
304 if (
MRI.isConstantPhysReg(Reg))
316 for (MCRegUnit Unit :
TRI->regunits(Reg)) {
329 SchedModel.computeOutputLatency(
MI, OperIdx, DefInstr));
331 ST.adjustSchedDependency(SU, OperIdx, DefSU,
I->OpIdx, Dep,
343 for (MCRegUnit Unit :
TRI->regunits(Reg))
351 for (MCRegUnit Unit :
TRI->regunits(Reg)) {
363 for (MCRegUnit Unit :
TRI->regunits(Reg)) {
367 for (
bool isBegin =
I ==
B; !isBegin; ) {
368 isBegin = (--
I) ==
B;
377 for (MCRegUnit Unit :
TRI->regunits(Reg))
393 return TRI->getSubRegIndexLaneMask(SubReg);
430 if (OtherMO.isReg() && OtherMO.isDef() && OtherMO.getReg() == Reg)
451 if ((LaneMask & KillLaneMask).
none()) {
456 if ((LaneMask & DefLaneMask).any()) {
462 ST.adjustSchedDependency(SU, OperIdx, UseSU,
I->OperandIndex, Dep,
467 LaneMask &= ~KillLaneMask;
469 if (LaneMask.
any()) {
470 I->LaneMask = LaneMask;
478 if (
MRI.hasOneDef(Reg))
492 if ((V2SU.LaneMask & LaneMask).none())
495 SUnit *DefSU = V2SU.SU;
511 LaneBitmask OverlapMask = V2SU.LaneMask & LaneMask;
512 LaneBitmask NonOverlapMask = V2SU.LaneMask & ~LaneMask;
514 V2SU.LaneMask = OverlapMask;
515 if (NonOverlapMask.
any())
531 assert(!
MI->isDebugOrPseudoInstr());
546 if ((PrevDefLaneMask & LaneMask).
none())
583 if (
MI.isDebugOrPseudoInstr())
608 switch (
SchedModel.getResourceBufferSize(PRE.ProcResourceIdx)) {
626 unsigned NumNodes = 0;
629 unsigned TrueMemOrderLatency;
650 assert(NumNodes >= Itr->second.size());
651 NumNodes -= Itr->second.size();
663 unsigned inline size()
const {
return NumNodes; }
668 for (
auto &
I : *
this)
669 NumNodes +=
I.second.size();
673 return TrueMemOrderLatency;
681 for (
auto &
I : Val2SUsMap)
690 if (Itr != Val2SUsMap.
end())
698 for (
auto &[V, SUs] : map) {
755 "Only BuildGraph should update Defs/Uses");
756 Defs.setUniverse(
TRI->getNumRegs());
757 Uses.setUniverse(
TRI->getNumRegs());
761 unsigned NumVirtRegs =
MRI.getNumVirtRegs();
779 if (
MI.isDebugValue() ||
MI.isDebugPHI()) {
784 if (
MI.isDebugLabel() ||
MI.isDebugRef() ||
MI.isPseudoProbe())
788 assert(SU &&
"No SUnit mapped to this MI");
797 if (PDiffs !=
nullptr)
803 RPTracker->
recede(RegOpers);
808 "Cannot schedule terminators or labels!");
815 bool HasVRegDef =
false;
816 for (
unsigned j = 0, n =
MI.getNumOperands(); j != n; ++j) {
821 if (Reg.isPhysical()) {
823 }
else if (Reg.isVirtual()) {
829 for (
unsigned j = 0, n =
MI.getNumOperands(); j != n; ++j) {
838 if (Reg.isPhysical()) {
840 }
else if (Reg.isVirtual() && MO.
readsReg()) {
863 if (
TII->isGlobalMemoryObject(&
MI)) {
870 LLVM_DEBUG(
dbgs() <<
"Global memory object and new barrier chain: SU("
883 if (
MI.mayRaiseFPException()) {
890 <<
"Creating barrier chain and clearing FPExceptions map.\n");
899 if (!
MI.mayStore() &&
900 !(
MI.mayLoad() && !
MI.isDereferenceableInvariantLoad()))
911 LLVM_DEBUG(
dbgs() <<
"Creating barrier chain and clearing maps.\n");
926 bool ObjsIdentified =
930 if (!ObjsIdentified) {
956 if (!ObjsIdentified) {
989 PSV->printCustom(OS);
994 for (
const auto &[ValType, SUs] : *
this) {
1000 V->printAsOperand(
dbgs());
1014 if (!MO.isReg() || !MO.readsReg())
1038 if (
MI.isDebugOrPseudoInstr())
1059 if (!
MI.isBundled()) {
1070 while (
I->isBundledWithSucc())
1073 if (!
I->isDebugOrPseudoInstr())
1076 }
while (
I != Bundle);
1082#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1093#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1094 if (
EntrySU.getInstr() !=
nullptr)
1098 if (
ExitSU.getInstr() !=
nullptr)
1118 return "dag." +
BB->getFullName();
1122 return SuccSU == &
ExitSU || !
Topo.IsReachable(PredSU, SuccSU);
1151 std::vector<std::pair<const SUnit *, const SUnit*>> ConnectionPairs;
1155 unsigned ParentNodeID;
1156 unsigned SubInstrCount = 0;
1159 RootData(
unsigned id): NodeID(
id),
1160 ParentNodeID(SchedDFSResult::InvalidSubtreeID) {}
1162 unsigned getSparseSetIndex()
const {
return NodeID; }
1169 RootSet.setUniverse(R.DFSNodeData.size());
1177 return R.DFSNodeData[SU->
NodeNum].SubtreeID
1178 != SchedDFSResult::InvalidSubtreeID;
1184 R.DFSNodeData[SU->
NodeNum].InstrCount =
1208 if ((
InstrCount - R.DFSNodeData[PredNum].InstrCount) < R.SubtreeLimit)
1212 if (R.DFSNodeData[PredNum].SubtreeID == PredNum) {
1215 if (RootSet[PredNum].ParentNodeID == SchedDFSResult::InvalidSubtreeID)
1216 RootSet[PredNum].ParentNodeID = SU->
NodeNum;
1218 else if (RootSet.count(PredNum)) {
1223 RData.SubInstrCount += RootSet[PredNum].SubInstrCount;
1224 RootSet.erase(PredNum);
1234 R.DFSNodeData[Succ->
NodeNum].InstrCount
1241 ConnectionPairs.emplace_back(PredDep.
getSUnit(), Succ);
1247 SubtreeClasses.compress();
1248 R.DFSTreeData.resize(SubtreeClasses.getNumClasses());
1249 assert(SubtreeClasses.getNumClasses() == RootSet.size()
1250 &&
"number of roots should match trees");
1251 for (
const RootData &Root : RootSet) {
1252 unsigned TreeID = SubtreeClasses[Root.NodeID];
1253 if (Root.ParentNodeID != SchedDFSResult::InvalidSubtreeID)
1254 R.DFSTreeData[TreeID].ParentTreeID = SubtreeClasses[Root.ParentNodeID];
1255 R.DFSTreeData[TreeID].SubInstrCount = Root.SubInstrCount;
1261 R.SubtreeConnections.resize(SubtreeClasses.getNumClasses());
1262 R.SubtreeConnectLevels.resize(SubtreeClasses.getNumClasses());
1264 for (
unsigned Idx = 0, End = R.DFSNodeData.size(); Idx != End; ++Idx) {
1265 R.DFSNodeData[Idx].SubtreeID = SubtreeClasses[Idx];
1267 << R.DFSNodeData[Idx].SubtreeID <<
'\n');
1269 for (
const auto &[Pred, Succ] : ConnectionPairs) {
1270 unsigned PredTree = SubtreeClasses[Pred->NodeNum];
1271 unsigned SuccTree = SubtreeClasses[Succ->NodeNum];
1272 if (PredTree == SuccTree)
1274 unsigned Depth = Pred->getDepth();
1284 bool CheckLimit =
true) {
1289 unsigned PredNum = PredSU->
NodeNum;
1290 if (R.DFSNodeData[PredNum].SubtreeID != PredNum)
1295 unsigned NumDataSucs = 0;
1296 for (
const SDep &SuccDep : PredSU->
Succs) {
1298 if (++NumDataSucs >= 4)
1302 if (CheckLimit && R.DFSNodeData[PredNum].InstrCount > R.SubtreeLimit)
1304 R.DFSNodeData[PredNum].SubtreeID = Succ->
NodeNum;
1305 SubtreeClasses.join(Succ->
NodeNum, PredNum);
1316 R.SubtreeConnections[FromTree];
1317 for (SchedDFSResult::Connection &
C : Connections) {
1318 if (
C.TreeID == ToTree) {
1319 C.Level = std::max(
C.Level,
Depth);
1323 Connections.
push_back(SchedDFSResult::Connection(ToTree,
Depth));
1324 FromTree = R.DFSTreeData[FromTree].ParentTreeID;
1325 }
while (FromTree != SchedDFSResult::InvalidSubtreeID);
1334class SchedDAGReverseDFS {
1335 std::vector<std::pair<const SUnit *, SUnit::const_pred_iterator>> DFSStack;
1338 bool isComplete()
const {
return DFSStack.empty(); }
1340 void follow(
const SUnit *SU) {
1341 DFSStack.emplace_back(SU, SU->
Preds.begin());
1343 void advance() { ++DFSStack.back().second; }
1345 const SDep *backtrack() {
1346 DFSStack.pop_back();
1347 return DFSStack.empty() ? nullptr : std::prev(DFSStack.back().second);
1350 const SUnit *getCurr()
const {
return DFSStack.back().first; }
1355 return getCurr()->Preds.
end();
1381 SchedDAGReverseDFS DFS;
1382 Impl.visitPreorder(&SU);
1386 while (DFS.getPred() != DFS.getPredEnd()) {
1387 const SDep &PredDep = *DFS.getPred();
1395 if (Impl.isVisited(PredDep.
getSUnit())) {
1396 Impl.visitCrossEdge(PredDep, DFS.getCurr());
1399 Impl.visitPreorder(PredDep.
getSUnit());
1403 const SUnit *Child = DFS.getCurr();
1404 const SDep *PredDep = DFS.backtrack();
1405 Impl.visitPostorderNode(Child);
1407 Impl.visitPostorderEdge(*PredDep, DFS.getCurr());
1408 if (DFS.isComplete())
1419 for (
const Connection &
C : SubtreeConnections[SubtreeID]) {
1420 SubtreeConnectLevels[
C.TreeID] =
1421 std::max(SubtreeConnectLevels[
C.TreeID],
C.Level);
1423 << SubtreeConnectLevels[
C.TreeID] <<
'\n');
1427#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1437 dbgs() << *
this <<
'\n';
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static cl::opt< bool > UseAA("aarch64-use-aa", cl::init(true), cl::desc("Enable the use of AA during codegen."))
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static unsigned InstrCount
static Register UseReg(const MachineOperand &MO)
Equivalence classes for small integers.
A common definition of LaneBitmask for use in TableGen and CodeGen.
This file implements the LivePhysRegs utility for tracking liveness of physical registers.
This file implements a map that provides insertion order iteration.
Func getContext().diagnose(DiagnosticInfoUnsupported(Func
static void toggleKills(const MachineRegisterInfo &MRI, LiveRegUnits &LiveRegs, MachineInstr &MI, bool addToLiveRegs)
static bool getUnderlyingObjectsForInstr(const MachineInstr *MI, const MachineFrameInfo &MFI, UnderlyingObjectsVector &Objects, const DataLayout &DL)
If this machine instruction has memory reference information, collect the list of underlying objects ...
static bool hasDataSucc(const SUnit *SU)
static cl::opt< bool > EnableSchedModel("schedmodel", cl::Hidden, cl::init(true), cl::desc("Use TargetSchedModel for latency lookup"))
static cl::opt< bool > EnableAASchedMI("enable-aa-sched-mi", cl::Hidden, cl::desc("Enable use of AA during MI DAG construction"))
static void dumpSUList(const ScheduleDAGInstrs::SUList &L)
static cl::opt< bool > UseTBAA("use-tbaa-in-sched-mi", cl::Hidden, cl::init(true), cl::desc("Enable use of TBAA during MI DAG construction"))
static cl::opt< unsigned > HugeRegion("dag-maps-huge-region", cl::Hidden, cl::init(500), cl::desc("The limit to use while constructing the DAG " "prior to scheduling, at which point a trade-off " "is made to avoid excessive compile time."))
static cl::opt< bool > EnableSchedItins("scheditins", cl::Hidden, cl::init(true), cl::desc("Use InstrItineraryData for latency lookup"))
static cl::opt< bool > SchedPrintCycles("sched-print-cycles", cl::Hidden, cl::init(false), cl::desc("Report top/bottom cycles when dumping SUnit instances"))
This file defines the SmallVector class.
This file defines the SparseSet class derived from the version described in Briggs,...
static Function * getFunction(FunctionType *Ty, const Twine &Name, Module *M)
void reComputeSize()
Counts the number of SUs in this map after a reduction.
void insert(SUnit *SU, ValueType V)
Adds SU to the SUList of V.
void clear()
Clears map from all contents.
Value2SUsMap(unsigned lat=0)
void clearList(ValueType V)
Clears the list of SUs mapped to V.
ValueType & operator[](const SUList &Key)
To keep NumNodes up to date, insert() is used instead of this operator w/ push_back().
unsigned getTrueMemOrderLatency() const
Represent a constant reference to an array (0 or more elements consecutively in memory),...
ConstMIBundleOperands - Iterate over all operands in a const bundle of machine instructions.
A parsed version of the target data layout string in and methods for querying it.
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
A set of register units used to track register liveness.
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
bool hasImplicitUseOfPhysReg(MCRegister Reg) const
Return true if this instruction implicitly uses the specified physical register.
LLVM_ABI bool hasImplicitDefOfPhysReg(MCRegister Reg, const MCRegisterInfo *MRI=nullptr) const
Return true if this instruction implicitly defines the specified physical register.
MCRegUnitMaskIterator enumerates a list of register units and their associated lane masks for Reg.
bool isValid() const
Returns true if this iterator is not yet at the end.
LaneBitmask getLaneMask() const
Returns the combination of all lane masks of register in this class.
const bool HasDisjunctSubRegs
Whether the class supports two (or more) disjunct subregister indices.
Instructions::iterator instr_iterator
MachineInstrBundleIterator< MachineInstr > iterator
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
bool hasTailCall() const
Returns true if the function contains a tail call.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Representation of each machine instruction.
bool isBarrier(QueryType Type=AnyInBundle) const
Returns true if the specified instruction stops control flow from executing the instruction immediate...
bool isCall(QueryType Type=AnyInBundle) const
LLVM_ABI bool mayAlias(BatchAAResults *AA, const MachineInstr &Other, bool UseTBAA) const
Returns true if this instruction's memory access aliases the memory access of Other.
const MCInstrDesc & getDesc() const
Returns the target instruction descriptor of this MachineInstr.
LLVM_ABI void print(raw_ostream &OS, bool IsStandalone=true, bool SkipOpers=false, bool SkipDebugLoc=false, bool AddNewLine=true, const TargetInstrInfo *TII=nullptr) const
Print this MI to OS.
filtered_mop_range all_uses()
Returns an iterator range over all operands that are (explicit or implicit) register uses.
bool isTransient() const
Return true if this is a transient instruction that is either very likely to be eliminated during reg...
LLVM_ABI void dump() const
const MachineOperand & getOperand(unsigned i) const
A description of a memory reference used in the backend.
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
bool readsReg() const
readsReg - Returns true if this operand reads the previous value of its register.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
bool isRegMask() const
isRegMask - Tests if this is a MO_RegisterMask operand.
void setIsKill(bool Val=true)
void setIsUndef(bool Val=true)
Register getReg() const
getReg - Returns the register number.
const uint32_t * getRegMask() const
getRegMask - Returns a bit mask of registers preserved by this RegMask operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
bool isReserved(MCRegister PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.
iterator find(const ValueType &Key)
typename SmallVector< std::pair< ValueType, SUList >, N >::iterator iterator
ValueT & operator[](const KeyT &Key)
LLVM_ABI void addInstruction(unsigned Idx, const RegisterOperands &RegOpers, const MachineRegisterInfo &MRI)
Record pressure difference induced by the given operand list to node with index Idx.
LLVM_ABI void init(unsigned N)
Initialize an array of N PressureDiffs.
Special value supplied for machine level alias analysis.
Track the current register pressure at some position in the instruction stream, and remember the high...
LLVM_ABI void recede(SmallVectorImpl< VRegMaskOrUnit > *LiveUses=nullptr)
Recede across the previous instruction.
LLVM_ABI void recedeSkipDebugValues()
Recede until we find an instruction which is not a DebugValue.
MachineBasicBlock::const_iterator getPos() const
Get the MI position corresponding to this register pressure.
List of registers defined and used by a machine instruction.
LLVM_ABI void adjustLaneLiveness(const LiveIntervals &LIS, const MachineRegisterInfo &MRI, SlotIndex Pos)
Use liveness information to find out which uses/defs are partially undefined/dead at Pos and adjust t...
LLVM_ABI void collect(const MachineInstr &MI, const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, bool TrackLaneMasks, bool IgnoreDead)
Analyze the given instruction MI and fill in the Uses, Defs and DeadDefs list based on the MachineOpe...
Wrapper class representing virtual and physical registers.
Kind getKind() const
Returns an enum value representing the kind of the dependence.
Kind
These are the different kinds of scheduling dependencies.
@ Output
A register output-dependence (aka WAW).
@ Anti
A register anti-dependence (aka WAR).
@ Data
Regular data dependence (aka true-dependence).
void setLatency(unsigned Lat)
Sets the latency for this edge.
@ Artificial
Arbitrary strong DAG edge (no real dependence).
@ MayAliasMem
Nonvolatile load/Store instructions that may alias.
bool isArtificial() const
Tests if this is an Order dependence that is marked as "artificial", meaning it isn't necessary for c...
Scheduling unit. This is a node in the scheduling DAG.
bool isCall
Is a function call.
unsigned TopReadyCycle
Cycle relative to start when node is ready.
unsigned NodeNum
Entry # of node in the node vector.
bool isUnbuffered
Uses an unbuffered resource.
SmallVectorImpl< SDep >::const_iterator const_pred_iterator
unsigned short Latency
Node latency.
bool isBoundaryNode() const
Boundary nodes are placeholders for the boundary of the scheduling region.
bool hasPhysRegDefs
Has physreg defs that are being used.
unsigned BotReadyCycle
Cycle relative to end when node is ready.
SmallVector< SDep, 4 > Succs
All sunit successors.
bool hasReservedResource
Uses a reserved resource.
bool isCommutable
Is a commutable instruction.
bool hasPhysRegUses
Has physreg uses.
SmallVector< SDep, 4 > Preds
All sunit predecessors.
LLVM_ABI bool addPred(const SDep &D, bool Required=true)
Adds the specified edge as a pred of the current node if not already.
MachineInstr * getInstr() const
Returns the representative MachineInstr for this SUnit.
void visitPostorderNode(const SUnit *SU)
Called once for each node after all predecessors are visited.
bool joinPredSubtree(const SDep &PredDep, const SUnit *Succ, bool CheckLimit=true)
Joins the predecessor subtree with the successor that is its DFS parent.
void addConnection(unsigned FromTree, unsigned ToTree, unsigned Depth)
Called by finalize() to record a connection between trees.
void finalize()
Sets each node's subtree ID to the representative ID and record connections between trees.
void visitCrossEdge(const SDep &PredDep, const SUnit *Succ)
Adds a connection for cross edges.
void visitPostorderEdge(const SDep &PredDep, const SUnit *Succ)
Called once for each tree edge after calling visitPostOrderNode on the predecessor.
void visitPreorder(const SUnit *SU)
Initializes this node's instruction count.
bool isVisited(const SUnit *SU) const
Returns true if this node been visited by the DFS traversal.
SchedDFSImpl(SchedDFSResult &r)
Compute the values of each DAG node for various metrics during DFS.
friend class SchedDFSImpl
LLVM_ABI void compute(ArrayRef< SUnit > SUnits)
Compute various metrics for the DAG with given roots.
LLVM_ABI void scheduleTree(unsigned SubtreeID)
Scheduler callback to update SubtreeConnectLevels when a tree is initially scheduled.
LiveRegUnits LiveRegs
Set of live physical registers for updating kill flags.
DenseMap< MachineInstr *, SUnit * > MISUnitMap
After calling BuildSchedGraph, each machine instruction in the current scheduling region is mapped to...
void addVRegUseDeps(SUnit *SU, unsigned OperIdx)
Adds a register data dependency if the instruction that defines the virtual register used at OperIdx ...
void addVRegDefDeps(SUnit *SU, unsigned OperIdx)
Adds register output and data dependencies from this SUnit to instructions that occur later in the sa...
virtual void finishBlock()
Cleans up after scheduling in the given block.
MachineBasicBlock::iterator end() const
Returns an iterator to the bottom of the current scheduling region.
std::string getDAGName() const override
Returns a label for the region of code covered by the DAG.
MachineBasicBlock * BB
The block in which to insert instructions.
MachineInstr * FirstDbgValue
virtual void startBlock(MachineBasicBlock *BB)
Prepares to perform scheduling in the given block.
bool CanHandleTerminators
The standard DAG builder does not normally include terminators as DAG nodes because it does not creat...
void addBarrierChain(Value2SUsMap &map)
Adds barrier chain edges from all SUs in map, and then clear the map.
void addPhysRegDeps(SUnit *SU, unsigned OperIdx)
Adds register dependencies (data, anti, and output) from this SUnit to following instructions in the ...
MachineBasicBlock::iterator RegionEnd
The end of the range to be scheduled.
VReg2SUnitOperIdxMultiMap CurrentVRegUses
Tracks the last instructions in this region using each virtual register.
void addChainDependencies(SUnit *SU, SUList &SUs, unsigned Latency)
Adds dependencies as needed from all SUs in list to SU.
const MCSchedClassDesc * getSchedClass(SUnit *SU) const
Resolves and cache a resolved scheduling class for an SUnit.
void fixupKills(MachineBasicBlock &MBB)
Fixes register kill flags that scheduling has made invalid.
void addPhysRegDataDeps(SUnit *SU, unsigned OperIdx)
MO is an operand of SU's instruction that defines a physical register.
ScheduleDAGInstrs(MachineFunction &mf, const MachineLoopInfo *mli, bool RemoveKillFlags=false)
LaneBitmask getLaneMaskForMO(const MachineOperand &MO) const
Returns a mask for which lanes get read/written by the given (register) machine operand.
DbgValueVector DbgValues
Remember instruction that precedes DBG_VALUE.
SUnit * newSUnit(MachineInstr *MI)
Creates a new SUnit and return a ptr to it.
void initSUnits()
Creates an SUnit for each real instruction, numbered in top-down topological order.
bool addEdge(SUnit *SuccSU, const SDep &PredDep)
Add a DAG edge to the given SU with the given predecessor dependence data.
ScheduleDAGTopologicalSort Topo
Topo - A topological ordering for SUnits which permits fast IsReachable and similar queries.
std::list< SUnit * > SUList
A list of SUnits, used in Value2SUsMap, during DAG construction.
SUnit * BarrierChain
Remember a generic side-effecting instruction as we proceed.
BatchAAResults * getAAForDep() const
Returns a (possibly null) pointer to the current BatchAAResults.
bool TrackLaneMasks
Whether lane masks should get tracked.
void dumpNode(const SUnit &SU) const override
RegUnit2SUnitsMap Defs
Defs, Uses - Remember where defs and uses of each register are as we iterate upward through the instr...
UndefValue * UnknownValue
For an unanalyzable memory access, this Value is used in maps.
VReg2SUnitMultiMap CurrentVRegDefs
Tracks the last instruction(s) in this region defining each virtual register.
MachineBasicBlock::iterator begin() const
Returns an iterator to the top of the current scheduling region.
void buildSchedGraph(AAResults *AA, RegPressureTracker *RPTracker=nullptr, PressureDiffs *PDiffs=nullptr, LiveIntervals *LIS=nullptr, bool TrackLaneMasks=false)
Builds SUnits for the current region.
TargetSchedModel SchedModel
TargetSchedModel provides an interface to the machine model.
virtual void exitRegion()
Called when the scheduler has finished scheduling the current region.
bool canAddEdge(SUnit *SuccSU, SUnit *PredSU)
True if an edge can be added from PredSU to SuccSU without creating a cycle.
const MachineLoopInfo * MLI
bool RemoveKillFlags
True if the DAG builder should remove kill flags (in preparation for rescheduling).
std::optional< BatchAAResults > AAForDep
MachineBasicBlock::iterator RegionBegin
The beginning of the range to be scheduled.
void addSchedBarrierDeps()
Adds dependencies from instructions in the current list of instructions being scheduled to scheduling...
virtual void enterRegion(MachineBasicBlock *bb, MachineBasicBlock::iterator begin, MachineBasicBlock::iterator end, unsigned regioninstrs)
Initialize the DAG and common scheduler state for a new scheduling region.
void dump() const override
void addChainDependency(SUnit *SUa, SUnit *SUb, unsigned Latency=0)
Adds a chain edge between SUa and SUb, but only if both AAResults and Target fail to deny the depende...
unsigned NumRegionInstrs
Instructions in this region (distance(RegionBegin, RegionEnd)).
const MachineFrameInfo & MFI
bool deadDefHasNoUse(const MachineOperand &MO)
Returns true if the def register in MO has no uses.
std::string getGraphNodeLabel(const SUnit *SU) const override
Returns a label for a DAG node that points to an instruction.
MachineRegisterInfo & MRI
Virtual/real register map.
void clearDAG()
Clears the DAG state (between regions).
const TargetInstrInfo * TII
Target instruction information.
std::vector< SUnit > SUnits
The scheduling units.
const TargetRegisterInfo * TRI
Target processor register info.
SUnit EntrySU
Special node for the region entry.
MachineFunction & MF
Machine function.
ScheduleDAG(const ScheduleDAG &)=delete
void dumpNodeAll(const SUnit &SU) const
void dumpNodeName(const SUnit &SU) const
SUnit ExitSU
Special node for the region exit.
SlotIndex - An opaque wrapper around machine indexes.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
std::pair< iterator, iterator > RangePair
iterator_base< SparseMultiSet * > iterator
SparseSet - Fast set implementation for objects that can be identified by small unsigned keys.
TargetInstrInfo - Interface to description of machine instruction set.
TargetSubtargetInfo - Generic base class for all target subtargets.
The instances of the Type class are immutable: once they are created, they are never changed.
'undef' values are things that do not have specified contents.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an std::string.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Abstract Attribute helper functions.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
SmallVector< ValueType, 4 > UnderlyingObjectsVector
LLVM_ABI bool getUnderlyingObjectsForCodeGen(const Value *V, SmallVectorImpl< Value * > &Objects)
This is a wrapper around getUnderlyingObjects and adds support for basic ptrtoint+arithmetic+inttoptr...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
auto reverse(ContainerTy &&C)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
IterT skipDebugInstructionsBackward(IterT It, IterT Begin, bool SkipPseudoOp=true)
Decrement It until it points to a non-debug instruction or to Begin and return the resulting iterator...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
PointerUnion< const Value *, const PseudoSourceValue * > ValueType
LLVM_ABI bool isIdentifiedObject(const Value *V)
Return true if this pointer refers to a distinct and identifiable object.
LLVM_ABI Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
MCRegisterClass TargetRegisterClass
Represent the ILP of the subDAG rooted at a DAG node.
unsigned Length
Length may either correspond to depth or height, depending on direction, and cycles or nodes dependin...
LLVM_ABI void dump() const
LLVM_ABI void print(raw_ostream &OS) const
static constexpr LaneBitmask getAll()
constexpr bool any() const
Summarize the scheduling resources required for an instruction of a particular scheduling class.
Identify one of the processor resource kinds consumed by a particular scheduling class for the specif...
Record a physical register access.
A MapVector that performs no allocations if smaller than a certain size.
Mapping from virtual register to SUnit including an operand index.
An individual mapping from virtual register number to SUnit.