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