blob: 8bfecead6d2ecd59f2d0e303fce2436d30eece86 [file] [log] [blame]
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001//===- DFAPacketizerEmitter.cpp - Packetization DFA for a VLIW machine-----===//
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 class parses the Schedule.td file and produces an API that can be used
11// to reason about whether an instruction can be added to a packet on a VLIW
12// architecture. The class internally generates a deterministic finite
13// automaton (DFA) that models all possible mappings of machine instructions
14// to functional units as instructions are added to a packet.
15//
16//===----------------------------------------------------------------------===//
17
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000018#include "CodeGenTarget.h"
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +000019#include "llvm/ADT/DenseSet.h"
20#include "llvm/TableGen/Record.h"
21#include "llvm/TableGen/TableGenBackend.h"
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000022#include <list>
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +000023#include <map>
24#include <string>
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000025using namespace llvm;
26
27//
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +000028// class DFAPacketizerEmitter: class that generates and prints out the DFA
29// for resource tracking.
30//
31namespace {
32class DFAPacketizerEmitter {
33private:
34 std::string TargetName;
35 //
36 // allInsnClasses is the set of all possible resources consumed by an
37 // InstrStage.
38 //
39 DenseSet<unsigned> allInsnClasses;
40 RecordKeeper &Records;
41
42public:
43 DFAPacketizerEmitter(RecordKeeper &R);
44
45 //
46 // collectAllInsnClasses: Populate allInsnClasses which is a set of units
47 // used in each stage.
48 //
49 void collectAllInsnClasses(const std::string &Name,
50 Record *ItinData,
51 unsigned &NStages,
52 raw_ostream &OS);
53
54 void run(raw_ostream &OS);
55};
56} // End anonymous namespace.
57
58//
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000059//
60// State represents the usage of machine resources if the packet contains
61// a set of instruction classes.
62//
Sebastian Popf6f77e92011-12-06 17:34:11 +000063// Specifically, currentState is a set of bit-masks.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000064// The nth bit in a bit-mask indicates whether the nth resource is being used
65// by this state. The set of bit-masks in a state represent the different
66// possible outcomes of transitioning to this state.
Sebastian Popf6f77e92011-12-06 17:34:11 +000067// For example: consider a two resource architecture: resource L and resource M
68// with three instruction classes: L, M, and L_or_M.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000069// From the initial state (currentState = 0x00), if we add instruction class
70// L_or_M we will transition to a state with currentState = [0x01, 0x10]. This
71// represents the possible resource states that can result from adding a L_or_M
72// instruction
73//
74// Another way of thinking about this transition is we are mapping a NDFA with
Sebastian Popf6f77e92011-12-06 17:34:11 +000075// two states [0x01] and [0x10] into a DFA with a single state [0x01, 0x10].
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000076//
77//
78namespace {
79class State {
80 public:
81 static int currentStateNum;
82 int stateNum;
83 bool isInitial;
84 std::set<unsigned> stateInfo;
85
86 State();
Sebastian Pop464f3a32011-12-06 17:34:16 +000087 State(const State &S);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000088
89 //
90 // canAddInsnClass - Returns true if an instruction of type InsnClass is a
Sebastian Popf6f77e92011-12-06 17:34:11 +000091 // valid transition from this state, i.e., can an instruction of type InsnClass
92 // be added to the packet represented by this state.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000093 //
94 // PossibleStates is the set of valid resource states that ensue from valid
Sebastian Popf6f77e92011-12-06 17:34:11 +000095 // transitions.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000096 //
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +000097 bool canAddInsnClass(unsigned InsnClass) const;
98 //
99 // AddInsnClass - Return all combinations of resource reservation
100 // which are possible from this state (PossibleStates).
101 //
102 void AddInsnClass(unsigned InsnClass, std::set<unsigned> &PossibleStates);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000103};
Sebastian Popf6f77e92011-12-06 17:34:11 +0000104} // End anonymous namespace.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000105
106
107namespace {
108struct Transition {
109 public:
110 static int currentTransitionNum;
111 int transitionNum;
Sebastian Pop464f3a32011-12-06 17:34:16 +0000112 State *from;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000113 unsigned input;
Sebastian Pop464f3a32011-12-06 17:34:16 +0000114 State *to;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000115
Sebastian Pop464f3a32011-12-06 17:34:16 +0000116 Transition(State *from_, unsigned input_, State *to_);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000117};
Sebastian Popf6f77e92011-12-06 17:34:11 +0000118} // End anonymous namespace.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000119
120
121//
Sebastian Popf6f77e92011-12-06 17:34:11 +0000122// Comparators to keep set of states sorted.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000123//
124namespace {
125struct ltState {
Sebastian Pop464f3a32011-12-06 17:34:16 +0000126 bool operator()(const State *s1, const State *s2) const;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000127};
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000128
129struct ltTransition {
130 bool operator()(const Transition *s1, const Transition *s2) const;
131};
Sebastian Popf6f77e92011-12-06 17:34:11 +0000132} // End anonymous namespace.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000133
134
135//
Sebastian Popf6f77e92011-12-06 17:34:11 +0000136// class DFA: deterministic finite automaton for processor resource tracking.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000137//
138namespace {
139class DFA {
140public:
141 DFA();
142
Sebastian Popf6f77e92011-12-06 17:34:11 +0000143 // Set of states. Need to keep this sorted to emit the transition table.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000144 std::set<State*, ltState> states;
145
Sebastian Popf6f77e92011-12-06 17:34:11 +0000146 // Map from a state to the list of transitions with that state as source.
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000147 std::map<State*, std::set<Transition*, ltTransition>, ltState>
148 stateTransitions;
Sebastian Pop464f3a32011-12-06 17:34:16 +0000149 State *currentState;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000150
Sebastian Popf6f77e92011-12-06 17:34:11 +0000151 // Highest valued Input seen.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000152 unsigned LargestInput;
153
154 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000155 // Modify the DFA.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000156 //
157 void initialize();
Sebastian Pop464f3a32011-12-06 17:34:16 +0000158 void addState(State *);
159 void addTransition(Transition *);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000160
161 //
162 // getTransition - Return the state when a transition is made from
Sebastian Popf6f77e92011-12-06 17:34:11 +0000163 // State From with Input I. If a transition is not found, return NULL.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000164 //
Sebastian Pop464f3a32011-12-06 17:34:16 +0000165 State *getTransition(State *, unsigned);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000166
167 //
168 // isValidTransition: Predicate that checks if there is a valid transition
Sebastian Popf6f77e92011-12-06 17:34:11 +0000169 // from state From on input InsnClass.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000170 //
Sebastian Pop464f3a32011-12-06 17:34:16 +0000171 bool isValidTransition(State *From, unsigned InsnClass);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000172
173 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000174 // writeTable: Print out a table representing the DFA.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000175 //
Sebastian Pop464f3a32011-12-06 17:34:16 +0000176 void writeTableAndAPI(raw_ostream &OS, const std::string &ClassName);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000177};
Sebastian Popf6f77e92011-12-06 17:34:11 +0000178} // End anonymous namespace.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000179
180
181//
182// Constructors for State, Transition, and DFA
183//
184State::State() :
185 stateNum(currentStateNum++), isInitial(false) {}
186
187
Sebastian Pop464f3a32011-12-06 17:34:16 +0000188State::State(const State &S) :
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000189 stateNum(currentStateNum++), isInitial(S.isInitial),
190 stateInfo(S.stateInfo) {}
191
192
Sebastian Pop464f3a32011-12-06 17:34:16 +0000193Transition::Transition(State *from_, unsigned input_, State *to_) :
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000194 transitionNum(currentTransitionNum++), from(from_), input(input_),
195 to(to_) {}
196
197
198DFA::DFA() :
199 LargestInput(0) {}
200
201
Sebastian Pop464f3a32011-12-06 17:34:16 +0000202bool ltState::operator()(const State *s1, const State *s2) const {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000203 return (s1->stateNum < s2->stateNum);
204}
205
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000206bool ltTransition::operator()(const Transition *s1, const Transition *s2) const {
207 return (s1->input < s2->input);
208}
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000209
210//
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000211// AddInsnClass - Return all combinations of resource reservation
212// which are possible from this state (PossibleStates).
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000213//
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000214void State::AddInsnClass(unsigned InsnClass,
Sebastian Pop464f3a32011-12-06 17:34:16 +0000215 std::set<unsigned> &PossibleStates) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000216 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000217 // Iterate over all resource states in currentState.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000218 //
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000219
220 for (std::set<unsigned>::iterator SI = stateInfo.begin();
221 SI != stateInfo.end(); ++SI) {
222 unsigned thisState = *SI;
223
224 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000225 // Iterate over all possible resources used in InsnClass.
226 // For ex: for InsnClass = 0x11, all resources = {0x01, 0x10}.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000227 //
228
229 DenseSet<unsigned> VisitedResourceStates;
230 for (unsigned int j = 0; j < sizeof(InsnClass) * 8; ++j) {
231 if ((0x1 << j) & InsnClass) {
232 //
233 // For each possible resource used in InsnClass, generate the
Sebastian Popf6f77e92011-12-06 17:34:11 +0000234 // resource state if that resource was used.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000235 //
236 unsigned ResultingResourceState = thisState | (0x1 << j);
237 //
238 // Check if the resulting resource state can be accommodated in this
Sebastian Popf6f77e92011-12-06 17:34:11 +0000239 // packet.
240 // We compute ResultingResourceState OR thisState.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000241 // If the result of the OR is different than thisState, it implies
242 // that there is at least one resource that can be used to schedule
Sebastian Popf6f77e92011-12-06 17:34:11 +0000243 // InsnClass in the current packet.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000244 // Insert ResultingResourceState into PossibleStates only if we haven't
Sebastian Popf6f77e92011-12-06 17:34:11 +0000245 // processed ResultingResourceState before.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000246 //
247 if ((ResultingResourceState != thisState) &&
248 (VisitedResourceStates.count(ResultingResourceState) == 0)) {
249 VisitedResourceStates.insert(ResultingResourceState);
250 PossibleStates.insert(ResultingResourceState);
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000251 }
252 }
253 }
254 }
255
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000256}
257
258
259//
260// canAddInsnClass - Quickly verifies if an instruction of type InsnClass is a
261// valid transition from this state i.e., can an instruction of type InsnClass
262// be added to the packet represented by this state.
263//
264bool State::canAddInsnClass(unsigned InsnClass) const {
Alexey Samsonov87dc7a42012-06-28 07:47:50 +0000265 for (std::set<unsigned>::const_iterator SI = stateInfo.begin();
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000266 SI != stateInfo.end(); ++SI) {
267 if (~*SI & InsnClass)
268 return true;
269 }
270 return false;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000271}
272
273
274void DFA::initialize() {
275 currentState->isInitial = true;
276}
277
278
Sebastian Pop464f3a32011-12-06 17:34:16 +0000279void DFA::addState(State *S) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000280 assert(!states.count(S) && "State already exists");
281 states.insert(S);
282}
283
284
Sebastian Pop464f3a32011-12-06 17:34:16 +0000285void DFA::addTransition(Transition *T) {
Sebastian Popf6f77e92011-12-06 17:34:11 +0000286 // Update LargestInput.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000287 if (T->input > LargestInput)
288 LargestInput = T->input;
289
Sebastian Popf6f77e92011-12-06 17:34:11 +0000290 // Add the new transition.
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000291 bool Added = stateTransitions[T->from].insert(T).second;
292 assert(Added && "Cannot have multiple states for the same input");
Richard Trieud7df6cf2012-06-28 00:41:11 +0000293 (void)Added;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000294}
295
296
297//
298// getTransition - Return the state when a transition is made from
Sebastian Popf6f77e92011-12-06 17:34:11 +0000299// State From with Input I. If a transition is not found, return NULL.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000300//
Sebastian Pop464f3a32011-12-06 17:34:16 +0000301State *DFA::getTransition(State *From, unsigned I) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000302 // Do we have a transition from state From?
303 if (!stateTransitions.count(From))
304 return NULL;
305
306 // Do we have a transition from state From with Input I?
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000307 Transition TVal(NULL, I, NULL);
308 // Do not count this temporal instance
309 Transition::currentTransitionNum--;
310 std::set<Transition*, ltTransition>::iterator T =
311 stateTransitions[From].find(&TVal);
312 if (T != stateTransitions[From].end())
313 return (*T)->to;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000314
315 return NULL;
316}
317
318
Sebastian Pop464f3a32011-12-06 17:34:16 +0000319bool DFA::isValidTransition(State *From, unsigned InsnClass) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000320 return (getTransition(From, InsnClass) != NULL);
321}
322
323
324int State::currentStateNum = 0;
325int Transition::currentTransitionNum = 0;
326
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000327DFAPacketizerEmitter::DFAPacketizerEmitter(RecordKeeper &R):
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000328 TargetName(CodeGenTarget(R).getName()),
329 allInsnClasses(), Records(R) {}
330
331
332//
333// writeTableAndAPI - Print out a table representing the DFA and the
Sebastian Popf6f77e92011-12-06 17:34:11 +0000334// associated API to create a DFA packetizer.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000335//
336// Format:
337// DFAStateInputTable[][2] = pairs of <Input, Transition> for all valid
Sebastian Popf6f77e92011-12-06 17:34:11 +0000338// transitions.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000339// DFAStateEntryTable[i] = Index of the first entry in DFAStateInputTable for
Sebastian Popf6f77e92011-12-06 17:34:11 +0000340// the ith state.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000341//
342//
Sebastian Pop464f3a32011-12-06 17:34:16 +0000343void DFA::writeTableAndAPI(raw_ostream &OS, const std::string &TargetName) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000344 std::set<State*, ltState>::iterator SI = states.begin();
345 // This table provides a map to the beginning of the transitions for State s
Sebastian Popf6f77e92011-12-06 17:34:11 +0000346 // in DFAStateInputTable.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000347 std::vector<int> StateEntry(states.size());
348
349 OS << "namespace llvm {\n\n";
350 OS << "const int " << TargetName << "DFAStateInputTable[][2] = {\n";
351
352 // Tracks the total valid transitions encountered so far. It is used
Sebastian Popf6f77e92011-12-06 17:34:11 +0000353 // to construct the StateEntry table.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000354 int ValidTransitions = 0;
355 for (unsigned i = 0; i < states.size(); ++i, ++SI) {
356 StateEntry[i] = ValidTransitions;
357 for (unsigned j = 0; j <= LargestInput; ++j) {
358 assert (((*SI)->stateNum == (int) i) && "Mismatch in state numbers");
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000359 State *To = getTransition(*SI, j);
360 if (To == NULL)
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000361 continue;
362
363 OS << "{" << j << ", "
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000364 << To->stateNum
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000365 << "}, ";
366 ++ValidTransitions;
367 }
368
Sebastian Popf6f77e92011-12-06 17:34:11 +0000369 // If there are no valid transitions from this stage, we need a sentinel
370 // transition.
Brendon Cahoonffbd0712012-02-03 21:08:25 +0000371 if (ValidTransitions == StateEntry[i]) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000372 OS << "{-1, -1},";
Brendon Cahoonffbd0712012-02-03 21:08:25 +0000373 ++ValidTransitions;
374 }
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000375
376 OS << "\n";
377 }
378 OS << "};\n\n";
379 OS << "const unsigned int " << TargetName << "DFAStateEntryTable[] = {\n";
380
381 // Multiply i by 2 since each entry in DFAStateInputTable is a set of
Sebastian Popf6f77e92011-12-06 17:34:11 +0000382 // two numbers.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000383 for (unsigned i = 0; i < states.size(); ++i)
384 OS << StateEntry[i] << ", ";
385
386 OS << "\n};\n";
387 OS << "} // namespace\n";
388
389
390 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000391 // Emit DFA Packetizer tables if the target is a VLIW machine.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000392 //
393 std::string SubTargetClassName = TargetName + "GenSubtargetInfo";
394 OS << "\n" << "#include \"llvm/CodeGen/DFAPacketizer.h\"\n";
395 OS << "namespace llvm {\n";
Sebastian Pop464f3a32011-12-06 17:34:16 +0000396 OS << "DFAPacketizer *" << SubTargetClassName << "::"
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000397 << "createDFAPacketizer(const InstrItineraryData *IID) const {\n"
398 << " return new DFAPacketizer(IID, " << TargetName
399 << "DFAStateInputTable, " << TargetName << "DFAStateEntryTable);\n}\n\n";
400 OS << "} // End llvm namespace \n";
401}
402
403
404//
405// collectAllInsnClasses - Populate allInsnClasses which is a set of units
406// used in each stage.
407//
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000408void DFAPacketizerEmitter::collectAllInsnClasses(const std::string &Name,
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000409 Record *ItinData,
410 unsigned &NStages,
411 raw_ostream &OS) {
Sebastian Popf6f77e92011-12-06 17:34:11 +0000412 // Collect processor itineraries.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000413 std::vector<Record*> ProcItinList =
Sebastian Popf6f77e92011-12-06 17:34:11 +0000414 Records.getAllDerivedDefinitions("ProcessorItineraries");
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000415
Sebastian Popf6f77e92011-12-06 17:34:11 +0000416 // If just no itinerary then don't bother.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000417 if (ProcItinList.size() < 2)
418 return;
419 std::map<std::string, unsigned> NameToBitsMap;
420
421 // Parse functional units for all the itineraries.
422 for (unsigned i = 0, N = ProcItinList.size(); i < N; ++i) {
423 Record *Proc = ProcItinList[i];
424 std::vector<Record*> FUs = Proc->getValueAsListOfDefs("FU");
425
Sebastian Popf6f77e92011-12-06 17:34:11 +0000426 // Convert macros to bits for each stage.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000427 for (unsigned i = 0, N = FUs.size(); i < N; ++i)
428 NameToBitsMap[FUs[i]->getName()] = (unsigned) (1U << i);
429 }
430
431 const std::vector<Record*> &StageList =
432 ItinData->getValueAsListOfDefs("Stages");
433
Sebastian Popf6f77e92011-12-06 17:34:11 +0000434 // The number of stages.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000435 NStages = StageList.size();
436
Sebastian Popf6f77e92011-12-06 17:34:11 +0000437 // For each unit.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000438 unsigned UnitBitValue = 0;
439
Sebastian Popf6f77e92011-12-06 17:34:11 +0000440 // Compute the bitwise or of each unit used in this stage.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000441 for (unsigned i = 0; i < NStages; ++i) {
442 const Record *Stage = StageList[i];
443
Sebastian Popf6f77e92011-12-06 17:34:11 +0000444 // Get unit list.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000445 const std::vector<Record*> &UnitList =
446 Stage->getValueAsListOfDefs("Units");
447
448 for (unsigned j = 0, M = UnitList.size(); j < M; ++j) {
Sebastian Popf6f77e92011-12-06 17:34:11 +0000449 // Conduct bitwise or.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000450 std::string UnitName = UnitList[j]->getName();
451 assert(NameToBitsMap.count(UnitName));
452 UnitBitValue |= NameToBitsMap[UnitName];
453 }
454
455 if (UnitBitValue != 0)
456 allInsnClasses.insert(UnitBitValue);
457 }
458}
459
460
461//
Sebastian Popf6f77e92011-12-06 17:34:11 +0000462// Run the worklist algorithm to generate the DFA.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000463//
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000464void DFAPacketizerEmitter::run(raw_ostream &OS) {
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000465
Sebastian Popf6f77e92011-12-06 17:34:11 +0000466 // Collect processor iteraries.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000467 std::vector<Record*> ProcItinList =
468 Records.getAllDerivedDefinitions("ProcessorItineraries");
469
470 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000471 // Collect the instruction classes.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000472 //
473 for (unsigned i = 0, N = ProcItinList.size(); i < N; i++) {
474 Record *Proc = ProcItinList[i];
475
Sebastian Popf6f77e92011-12-06 17:34:11 +0000476 // Get processor itinerary name.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000477 const std::string &Name = Proc->getName();
478
Sebastian Popf6f77e92011-12-06 17:34:11 +0000479 // Skip default.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000480 if (Name == "NoItineraries")
481 continue;
482
Sebastian Popf6f77e92011-12-06 17:34:11 +0000483 // Sanity check for at least one instruction itinerary class.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000484 unsigned NItinClasses =
485 Records.getAllDerivedDefinitions("InstrItinClass").size();
486 if (NItinClasses == 0)
487 return;
488
Sebastian Popf6f77e92011-12-06 17:34:11 +0000489 // Get itinerary data list.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000490 std::vector<Record*> ItinDataList = Proc->getValueAsListOfDefs("IID");
491
Sebastian Popf6f77e92011-12-06 17:34:11 +0000492 // Collect instruction classes for all itinerary data.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000493 for (unsigned j = 0, M = ItinDataList.size(); j < M; j++) {
494 Record *ItinData = ItinDataList[j];
495 unsigned NStages;
496 collectAllInsnClasses(Name, ItinData, NStages, OS);
497 }
498 }
499
500
501 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000502 // Run a worklist algorithm to generate the DFA.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000503 //
504 DFA D;
Sebastian Pop464f3a32011-12-06 17:34:16 +0000505 State *Initial = new State;
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000506 Initial->isInitial = true;
507 Initial->stateInfo.insert(0x0);
508 D.addState(Initial);
509 SmallVector<State*, 32> WorkList;
510 std::map<std::set<unsigned>, State*> Visited;
511
512 WorkList.push_back(Initial);
513
514 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000515 // Worklist algorithm to create a DFA for processor resource tracking.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000516 // C = {set of InsnClasses}
517 // Begin with initial node in worklist. Initial node does not have
518 // any consumed resources,
519 // ResourceState = 0x0
520 // Visited = {}
521 // While worklist != empty
522 // S = first element of worklist
523 // For every instruction class C
524 // if we can accommodate C in S:
525 // S' = state with resource states = {S Union C}
526 // Add a new transition: S x C -> S'
527 // If S' is not in Visited:
528 // Add S' to worklist
529 // Add S' to Visited
530 //
531 while (!WorkList.empty()) {
Sebastian Pop464f3a32011-12-06 17:34:16 +0000532 State *current = WorkList.pop_back_val();
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000533 for (DenseSet<unsigned>::iterator CI = allInsnClasses.begin(),
534 CE = allInsnClasses.end(); CI != CE; ++CI) {
535 unsigned InsnClass = *CI;
536
537 std::set<unsigned> NewStateResources;
538 //
539 // If we haven't already created a transition for this input
Sebastian Popf6f77e92011-12-06 17:34:11 +0000540 // and the state can accommodate this InsnClass, create a transition.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000541 //
542 if (!D.getTransition(current, InsnClass) &&
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000543 current->canAddInsnClass(InsnClass)) {
Sebastian Pop464f3a32011-12-06 17:34:16 +0000544 State *NewState = NULL;
Anshuman Dasguptae2529dc2012-06-27 19:38:29 +0000545 current->AddInsnClass(InsnClass, NewStateResources);
546 assert(NewStateResources.size() && "New states must be generated");
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000547
548 //
Sebastian Popf6f77e92011-12-06 17:34:11 +0000549 // If we have seen this state before, then do not create a new state.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000550 //
551 //
552 std::map<std::set<unsigned>, State*>::iterator VI;
553 if ((VI = Visited.find(NewStateResources)) != Visited.end())
554 NewState = VI->second;
555 else {
556 NewState = new State;
557 NewState->stateInfo = NewStateResources;
558 D.addState(NewState);
559 Visited[NewStateResources] = NewState;
560 WorkList.push_back(NewState);
561 }
562
Sebastian Pop464f3a32011-12-06 17:34:16 +0000563 Transition *NewTransition = new Transition(current, InsnClass,
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000564 NewState);
565 D.addTransition(NewTransition);
566 }
567 }
568 }
569
Sebastian Popf6f77e92011-12-06 17:34:11 +0000570 // Print out the table.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +0000571 D.writeTableAndAPI(OS, TargetName);
572}
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000573
574namespace llvm {
575
576void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS) {
577 emitSourceFileHeader("Target DFA Packetizer Tables", OS);
578 DFAPacketizerEmitter(RK).run(OS);
579}
580
581} // End llvm namespace