Parse PredicateOperand's. When an instruction takes one, have the generated
[oota-llvm.git] / utils / TableGen / InstrInfoEmitter.h
1 //===- InstrInfoEmitter.h - Generate a Instruction Set Desc. ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tablegen backend is responsible for emitting a description of the target
11 // instruction set for the code generator.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef INSTRINFO_EMITTER_H
16 #define INSTRINFO_EMITTER_H
17
18 #include "TableGenBackend.h"
19 #include <vector>
20 #include <map>
21
22 namespace llvm {
23
24 class StringInit;
25 class IntInit;
26 class ListInit;
27 struct CodeGenInstruction;
28
29 class InstrInfoEmitter : public TableGenBackend {
30   RecordKeeper &Records;
31   bool IsItineraries;
32   std::map<std::string, unsigned> ItinClassMap;
33   
34 public:
35   InstrInfoEmitter(RecordKeeper &R) : Records(R), IsItineraries(false) {}
36
37   // run - Output the instruction set description, returning true on failure.
38   void run(std::ostream &OS);
39
40   // runEnums - Print out enum values for all of the instructions.
41   void runEnums(std::ostream &OS);
42 private:
43   void printDefList(const std::vector<Record*> &Uses, unsigned Num,
44                     std::ostream &OS) const;
45   void emitRecord(const CodeGenInstruction &Inst, unsigned Num,
46                   Record *InstrInfo, 
47                   std::map<std::vector<Record*>, unsigned> &EL,
48           std::map<std::vector<std::pair<Record*,unsigned> >, unsigned> &OpInfo,
49                   std::ostream &OS);
50   void GatherItinClasses();
51   unsigned ItinClassNumber(std::string ItinName);
52   void emitShiftedValue(Record *R, StringInit *Val, IntInit *Shift,
53                         std::ostream &OS);
54 };
55
56 } // End llvm namespace
57
58 #endif