Make the AsmWriter a first-class tblgen object. Allow targets to specify
[oota-llvm.git] / utils / TableGen / CodeGenTarget.h
1 //===- CodeGenTarget.h - Target Class Wrapper -------------------*- 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 file defines wrappers for the Target class and related global
11 // functionality.  This makes it easier to access the data and provides a single
12 // place that needs to check it for validity.  All of these classes throw
13 // exceptions on error conditions.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef CODEGEN_TARGET_H
18 #define CODEGEN_TARGET_H
19
20 #include "CodeGenInstruction.h"
21 #include <iosfwd>
22 #include <map>
23
24 namespace llvm {
25
26 class Record;
27 class RecordKeeper;
28
29 /// getValueType - Return the MVT::ValueType that the specified TableGen record
30 /// corresponds to.
31 MVT::ValueType getValueType(Record *Rec);
32
33 std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
34 std::string getName(MVT::ValueType T);
35 std::string getEnumName(MVT::ValueType T);
36
37
38 /// CodeGenTarget - This class corresponds to the Target class in the .td files.
39 ///
40 class CodeGenTarget {
41   Record *TargetRec;
42   std::vector<Record*> CalleeSavedRegisters;
43   MVT::ValueType PointerType;
44
45   mutable std::map<std::string, CodeGenInstruction> Instructions;
46   void ReadInstructions() const;
47 public:
48   CodeGenTarget();
49
50   Record *getTargetRecord() const { return TargetRec; }
51   const std::string &getName() const;
52
53   const std::vector<Record*> &getCalleeSavedRegisters() const {
54     return CalleeSavedRegisters;
55   }
56
57   MVT::ValueType getPointerType() const { return PointerType; }
58
59   /// getInstructionSet - Return the InstructionSet object.
60   ///
61   Record *getInstructionSet() const;
62
63   /// getAsmWriter - Return the AssemblyWriter definition for this target.
64   ///
65   Record *getAsmWriter() const;
66
67   /// getPHIInstruction - Return the designated PHI instruction.
68   const CodeGenInstruction &getPHIInstruction() const;
69
70   /// getInstructions - Return all of the instructions defined for this target.
71   ///
72   const std::map<std::string, CodeGenInstruction> &getInstructions() const {
73     if (Instructions.empty()) ReadInstructions();
74     return Instructions;
75   }
76
77   typedef std::map<std::string,
78                    CodeGenInstruction>::const_iterator inst_iterator;
79   inst_iterator inst_begin() const { return getInstructions().begin(); }
80   inst_iterator inst_end() const { return Instructions.end(); }
81 };
82
83 } // End llvm namespace
84
85 #endif