blob: 52b5b9f00807b8893bf5cfbc59c44ee73537312b [file] [log] [blame]
Vikram S. Adve851d44c2001-09-18 12:49:39 +00001// -*-C++-*-
2//***************************************************************************
3// File:
4// SchedPriorities.h
5//
6// Purpose:
7// Encapsulate heuristics for instruction scheduling.
8//
9// Strategy:
10// Priority ordering rules:
11// (1) Max delay, which is the order of the heap S.candsAsHeap.
12// (2) Instruction that frees up a register.
13// (3) Instruction that has the maximum number of dependent instructions.
14// Note that rules 2 and 3 are only used if issue conflicts prevent
15// choosing a higher priority instruction by rule 1.
16//
17// History:
18// 7/30/01 - Vikram Adve - Created
19//**************************************************************************/
Vikram S. Adve37866b32001-08-28 23:06:49 +000020
21#ifndef LLVM_CODEGEN_SCHEDPRIORITIES_H
22#define LLVM_CODEGEN_SCHEDPRIORITIES_H
23
Chris Lattner46cbff62001-09-14 16:56:32 +000024#include "SchedGraph.h"
Chris Lattnerdcd2fb52001-09-07 21:18:16 +000025#include "llvm/CodeGen/InstrScheduling.h"
Vikram S. Adve851d44c2001-09-18 12:49:39 +000026#include "llvm/Target/MachineSchedInfo.h"
Chris Lattner77f66c12002-02-04 02:44:20 +000027#include "Support/CommandLine.h"
Chris Lattner3ff43872001-09-28 22:56:31 +000028#include <list>
Chris Lattnerdfb8b952002-02-24 23:01:50 +000029#include <ext/hash_set>
30#include <ostream>
Vikram S. Adve37866b32001-08-28 23:06:49 +000031class Method;
32class MachineInstr;
33class SchedulingManager;
Chris Lattner9adb7ad2002-02-04 20:02:16 +000034class MethodLiveVarInfo;
Vikram S. Adve37866b32001-08-28 23:06:49 +000035
Chris Lattnerb99bd2b2002-02-04 05:55:42 +000036//---------------------------------------------------------------------------
Chris Lattner77f66c12002-02-04 02:44:20 +000037// Debug option levels for instruction scheduling
Chris Lattnerb99bd2b2002-02-04 05:55:42 +000038
Chris Lattner77f66c12002-02-04 02:44:20 +000039enum SchedDebugLevel_t {
40 Sched_NoDebugInfo,
41 Sched_PrintMachineCode,
42 Sched_PrintSchedTrace,
43 Sched_PrintSchedGraphs,
44};
45
46extern cl::Enum<SchedDebugLevel_t> SchedDebugLevel;
Vikram S. Adve37866b32001-08-28 23:06:49 +000047
Chris Lattnerb99bd2b2002-02-04 05:55:42 +000048//---------------------------------------------------------------------------
49// Function: instrIsFeasible
50//
51// Purpose:
52// Used by the priority analysis to filter out instructions
53// that are not feasible to issue in the current cycle.
54// Should only be used during schedule construction..
55//---------------------------------------------------------------------------
56
57bool instrIsFeasible(const SchedulingManager &S, MachineOpCode opCode);
58
59
60
Vikram S. Adve37866b32001-08-28 23:06:49 +000061struct NodeDelayPair {
62 const SchedGraphNode* node;
63 cycles_t delay;
64 NodeDelayPair(const SchedGraphNode* n, cycles_t d) : node(n), delay(d) {}
Chris Lattner697954c2002-01-20 22:54:45 +000065 inline bool operator<(const NodeDelayPair& np) { return delay < np.delay; }
Vikram S. Adve37866b32001-08-28 23:06:49 +000066};
67
68inline bool
69NDPLessThan(const NodeDelayPair* np1, const NodeDelayPair* np2)
70{
Chris Lattner697954c2002-01-20 22:54:45 +000071 return np1->delay < np2->delay;
Vikram S. Adve37866b32001-08-28 23:06:49 +000072}
73
Chris Lattner697954c2002-01-20 22:54:45 +000074class NodeHeap: public std::list<NodeDelayPair*>, public NonCopyable {
Vikram S. Adve37866b32001-08-28 23:06:49 +000075public:
Chris Lattner697954c2002-01-20 22:54:45 +000076 typedef std::list<NodeDelayPair*>::iterator iterator;
77 typedef std::list<NodeDelayPair*>::const_iterator const_iterator;
Vikram S. Adve37866b32001-08-28 23:06:49 +000078
79public:
Chris Lattnerf35f2fb2002-02-04 16:35:45 +000080 NodeHeap() : _size(0) {}
Vikram S. Adve37866b32001-08-28 23:06:49 +000081
Chris Lattnerf35f2fb2002-02-04 16:35:45 +000082 inline unsigned size() const { return _size; }
Vikram S. Adve37866b32001-08-28 23:06:49 +000083
84 const SchedGraphNode* getNode (const_iterator i) const { return (*i)->node; }
85 cycles_t getDelay(const_iterator i) const { return (*i)->delay;}
86
87 inline void makeHeap() {
88 // make_heap(begin(), end(), NDPLessThan);
89 }
90
91 inline iterator findNode(const SchedGraphNode* node) {
92 for (iterator I=begin(); I != end(); ++I)
93 if (getNode(I) == node)
94 return I;
95 return end();
96 }
97
98 inline void removeNode (const SchedGraphNode* node) {
99 iterator ndpPtr = findNode(node);
100 if (ndpPtr != end())
101 {
102 delete *ndpPtr;
103 erase(ndpPtr);
104 --_size;
105 }
106 };
107
108 void insert(const SchedGraphNode* node, cycles_t delay) {
109 NodeDelayPair* ndp = new NodeDelayPair(node, delay);
110 if (_size == 0 || front()->delay < delay)
111 push_front(ndp);
112 else
113 {
114 iterator I=begin();
115 for ( ; I != end() && getDelay(I) >= delay; ++I)
116 ;
Chris Lattner697954c2002-01-20 22:54:45 +0000117 std::list<NodeDelayPair*>::insert(I, ndp);
Vikram S. Adve37866b32001-08-28 23:06:49 +0000118 }
119 _size++;
120 }
121private:
122 unsigned int _size;
123};
124
125
126class SchedPriorities: public NonCopyable {
127public:
Chris Lattner9adb7ad2002-02-04 20:02:16 +0000128 SchedPriorities(const Method *M, const SchedGraph *G, MethodLiveVarInfo &LVI);
129
Vikram S. Adve37866b32001-08-28 23:06:49 +0000130
131 // This must be called before scheduling begins.
132 void initialize ();
133
134 cycles_t getTime () const { return curTime; }
135 cycles_t getEarliestReadyTime () const { return earliestReadyTime; }
136 unsigned getNumReady () const { return candsAsHeap.size(); }
137 bool nodeIsReady (const SchedGraphNode* node) const {
138 return (candsAsSet.find(node) != candsAsSet.end());
139 }
140
141 void issuedReadyNodeAt (cycles_t curTime,
142 const SchedGraphNode* node);
143
144 void insertReady (const SchedGraphNode* node);
145
146 void updateTime (cycles_t /*unused*/);
147
148 const SchedGraphNode* getNextHighest (const SchedulingManager& S,
149 cycles_t curTime);
150 // choose next highest priority instr
151
152private:
153 typedef NodeHeap::iterator candIndex;
154
155private:
156 cycles_t curTime;
157 const SchedGraph* graph;
Chris Lattner9adb7ad2002-02-04 20:02:16 +0000158 MethodLiveVarInfo &methodLiveVarInfo;
Chris Lattner697954c2002-01-20 22:54:45 +0000159 std::hash_map<const MachineInstr*, bool> lastUseMap;
160 std::vector<cycles_t> nodeDelayVec;
161 std::vector<cycles_t> earliestForNode;
Vikram S. Adve37866b32001-08-28 23:06:49 +0000162 cycles_t earliestReadyTime;
163 NodeHeap candsAsHeap; // candidate nodes, ready to go
Chris Lattner697954c2002-01-20 22:54:45 +0000164 std::hash_set<const SchedGraphNode*> candsAsSet;//same entries as candsAsHeap,
Vikram S. Adve37866b32001-08-28 23:06:49 +0000165 // but as set for fast lookup
Chris Lattner697954c2002-01-20 22:54:45 +0000166 std::vector<candIndex> mcands; // holds pointers into cands
Vikram S. Adve37866b32001-08-28 23:06:49 +0000167 candIndex nextToTry; // next cand after the last
168 // one tried in this cycle
169
Chris Lattner697954c2002-01-20 22:54:45 +0000170 int chooseByRule1 (std::vector<candIndex>& mcands);
171 int chooseByRule2 (std::vector<candIndex>& mcands);
172 int chooseByRule3 (std::vector<candIndex>& mcands);
Vikram S. Adve37866b32001-08-28 23:06:49 +0000173
Chris Lattner697954c2002-01-20 22:54:45 +0000174 void findSetWithMaxDelay (std::vector<candIndex>& mcands,
Vikram S. Adve37866b32001-08-28 23:06:49 +0000175 const SchedulingManager& S);
176
177 void computeDelays (const SchedGraph* graph);
178
179 void initializeReadyHeap (const SchedGraph* graph);
180
181 bool instructionHasLastUse (MethodLiveVarInfo& methodLiveVarInfo,
182 const SchedGraphNode* graphNode);
183
184 // NOTE: The next two return references to the actual vector entries.
185 // Use with care.
186 cycles_t& getNodeDelayRef (const SchedGraphNode* node) {
187 assert(node->getNodeId() < nodeDelayVec.size());
188 return nodeDelayVec[node->getNodeId()];
189 }
190 cycles_t& getEarliestForNodeRef (const SchedGraphNode* node) {
191 assert(node->getNodeId() < earliestForNode.size());
192 return earliestForNode[node->getNodeId()];
193 }
194};
195
196
Chris Lattnerdcd2fb52001-09-07 21:18:16 +0000197inline void SchedPriorities::updateTime(cycles_t c) {
Vikram S. Adve37866b32001-08-28 23:06:49 +0000198 curTime = c;
199 nextToTry = candsAsHeap.begin();
200 mcands.clear();
201}
202
Chris Lattner697954c2002-01-20 22:54:45 +0000203inline std::ostream &operator<<(std::ostream &os, const NodeDelayPair* nd) {
Chris Lattnerdcd2fb52001-09-07 21:18:16 +0000204 return os << "Delay for node " << nd->node->getNodeId()
Chris Lattner697954c2002-01-20 22:54:45 +0000205 << " = " << (long)nd->delay << "\n";
Vikram S. Adve37866b32001-08-28 23:06:49 +0000206}
207
Vikram S. Adve37866b32001-08-28 23:06:49 +0000208#endif