blob: 9a13e78c5deab9fcd394f3ae178695e6cf166c00 [file] [log] [blame]
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001//===- DFAPacketizerEmitter.h - 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
18#include "llvm/ADT/DenseSet.h"
19#include "llvm/ADT/SmallVector.h"
20#include "llvm/CodeGen/Passes.h"
21#include "llvm/TableGen/TableGenBackend.h"
22#include <map>
23#include <string>
24
25namespace llvm {
26//
27// class DFAGen: class that generates and prints out the DFA for resource
Sebastian Popf6f77e92011-12-06 17:34:11 +000028// tracking.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000029//
30class DFAGen : public TableGenBackend {
31private:
32 std::string TargetName;
33 //
34 // allInsnClasses is the set of all possible resources consumed by an
Sebastian Popf6f77e92011-12-06 17:34:11 +000035 // InstrStage.
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +000036 //
37 DenseSet<unsigned> allInsnClasses;
38 RecordKeeper &Records;
39
40public:
41 DFAGen(RecordKeeper& R);
42
43 //
44 // collectAllInsnClasses: Populate allInsnClasses which is a set of units
45 // used in each stage.
46 //
47 void collectAllInsnClasses(const std::string &Name,
48 Record *ItinData,
49 unsigned &NStages,
50 raw_ostream &OS);
51
52 void run(raw_ostream &OS);
53};
54}