PHI and INLINEASM are now builtin instructions provided by Target.td
[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 "CodeGenRegisters.h"
21 #include "CodeGenInstruction.h"
22 #include <iosfwd>
23 #include <map>
24
25 namespace llvm {
26
27 class Record;
28 class RecordKeeper;
29 struct CodeGenRegister;
30
31 /// getValueType - Return the MVT::ValueType that the specified TableGen record
32 /// corresponds to.
33 MVT::ValueType getValueType(Record *Rec);
34
35 std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
36 std::string getName(MVT::ValueType T);
37 std::string getEnumName(MVT::ValueType T);
38
39
40 /// CodeGenTarget - This class corresponds to the Target class in the .td files.
41 ///
42 class CodeGenTarget {
43   Record *TargetRec;
44   std::vector<Record*> CalleeSavedRegisters;
45   MVT::ValueType PointerType;
46
47   mutable std::map<std::string, CodeGenInstruction> Instructions;
48   mutable std::vector<CodeGenRegister> Registers;
49   mutable std::vector<CodeGenRegisterClass> RegisterClasses;
50   mutable std::vector<MVT::ValueType> LegalValueTypes;
51   void ReadRegisters() const;
52   void ReadRegisterClasses() const;
53   void ReadInstructions() const;
54   void ReadLegalValueTypes() const;
55 public:
56   CodeGenTarget();
57
58   Record *getTargetRecord() const { return TargetRec; }
59   const std::string &getName() const;
60
61   const std::vector<Record*> &getCalleeSavedRegisters() const {
62     return CalleeSavedRegisters;
63   }
64
65   MVT::ValueType getPointerType() const { return PointerType; }
66
67   /// getInstructionSet - Return the InstructionSet object.
68   ///
69   Record *getInstructionSet() const;
70
71   /// getAsmWriter - Return the AssemblyWriter definition for this target.
72   ///
73   Record *getAsmWriter() const;
74
75   const std::vector<CodeGenRegister> &getRegisters() const {
76     if (Registers.empty()) ReadRegisters();
77     return Registers;
78   }
79
80   const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
81     if (RegisterClasses.empty()) ReadRegisterClasses();
82     return RegisterClasses;
83   }
84   
85   const CodeGenRegisterClass &getRegisterClass(Record *R) const {
86     const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses();
87     for (unsigned i = 0, e = RC.size(); i != e; ++i)
88       if (RC[i].TheDef == R)
89         return RC[i];
90     assert(0 && "Didn't find the register class");
91     abort();
92   }
93   
94   /// getRegisterClassForRegister - Find the register class that contains the
95   /// specified physical register.  If there register exists in multiple
96   /// register classes or is not in a register class, return null.
97   const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const {
98     const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses();
99     const CodeGenRegisterClass *FoundRC = 0;
100     for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
101       const CodeGenRegisterClass &RC = RegisterClasses[i];
102       for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) {
103         if (R == RC.Elements[ei]) {
104           if (FoundRC) return 0;  // In multiple RC's
105           FoundRC = &RC;
106           break;
107         }
108       }
109     }
110     return FoundRC;
111   }
112   
113   const std::vector<MVT::ValueType> &getLegalValueTypes() const {
114     if (LegalValueTypes.empty()) ReadLegalValueTypes();
115     return LegalValueTypes;
116   }
117   
118   /// isLegalValueType - Return true if the specified value type is natively
119   /// supported by the target (i.e. there are registers that directly hold it).
120   bool isLegalValueType(MVT::ValueType VT) const {
121     const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
122     for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
123       if (LegalVTs[i] == VT) return true;
124     return false;    
125   }
126
127   /// getInstructions - Return all of the instructions defined for this target.
128   ///
129   const std::map<std::string, CodeGenInstruction> &getInstructions() const {
130     if (Instructions.empty()) ReadInstructions();
131     return Instructions;
132   }
133
134   CodeGenInstruction &getInstruction(const std::string &Name) const {
135     const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
136     assert(Insts.count(Name) && "Not an instruction!");
137     return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
138   }
139
140   typedef std::map<std::string,
141                    CodeGenInstruction>::const_iterator inst_iterator;
142   inst_iterator inst_begin() const { return getInstructions().begin(); }
143   inst_iterator inst_end() const { return Instructions.end(); }
144
145   /// getInstructionsByEnumValue - Return all of the instructions defined by the
146   /// target, ordered by their enum value.
147   void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
148                                                 &NumberedInstructions);
149
150
151   /// isLittleEndianEncoding - are instruction bit patterns defined as  [0..n]?
152   ///
153   bool isLittleEndianEncoding() const;
154 };
155
156 /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
157 /// tablegen class in TargetSelectionDAG.td
158 class ComplexPattern {
159   MVT::ValueType Ty;
160   unsigned NumOperands;
161   std::string SelectFunc;
162   std::vector<Record*> RootNodes;
163 public:
164   ComplexPattern() : NumOperands(0) {};
165   ComplexPattern(Record *R);
166
167   MVT::ValueType getValueType() const { return Ty; }
168   unsigned getNumOperands() const { return NumOperands; }
169   const std::string &getSelectFunc() const { return SelectFunc; }
170   const std::vector<Record*> &getRootNodes() const {
171     return RootNodes;
172   }
173 };
174
175 } // End llvm namespace
176
177 #endif