Allow patterns to refer to physical registers that belong to multiple
[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   /// getRegisterVTs - Find the union of all possible ValueTypes for the
115   /// specified physical register.
116   std::vector<unsigned char> getRegisterVTs(Record *R) const;
117   
118   const std::vector<MVT::ValueType> &getLegalValueTypes() const {
119     if (LegalValueTypes.empty()) ReadLegalValueTypes();
120     return LegalValueTypes;
121   }
122   
123   /// isLegalValueType - Return true if the specified value type is natively
124   /// supported by the target (i.e. there are registers that directly hold it).
125   bool isLegalValueType(MVT::ValueType VT) const {
126     const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
127     for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
128       if (LegalVTs[i] == VT) return true;
129     return false;    
130   }
131
132   /// getInstructions - Return all of the instructions defined for this target.
133   ///
134   const std::map<std::string, CodeGenInstruction> &getInstructions() const {
135     if (Instructions.empty()) ReadInstructions();
136     return Instructions;
137   }
138
139   CodeGenInstruction &getInstruction(const std::string &Name) const {
140     const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
141     assert(Insts.count(Name) && "Not an instruction!");
142     return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
143   }
144
145   typedef std::map<std::string,
146                    CodeGenInstruction>::const_iterator inst_iterator;
147   inst_iterator inst_begin() const { return getInstructions().begin(); }
148   inst_iterator inst_end() const { return Instructions.end(); }
149
150   /// getInstructionsByEnumValue - Return all of the instructions defined by the
151   /// target, ordered by their enum value.
152   void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
153                                                 &NumberedInstructions);
154
155
156   /// isLittleEndianEncoding - are instruction bit patterns defined as  [0..n]?
157   ///
158   bool isLittleEndianEncoding() const;
159 };
160
161 /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
162 /// tablegen class in TargetSelectionDAG.td
163 class ComplexPattern {
164   MVT::ValueType Ty;
165   unsigned NumOperands;
166   std::string SelectFunc;
167   std::vector<Record*> RootNodes;
168 public:
169   ComplexPattern() : NumOperands(0) {};
170   ComplexPattern(Record *R);
171
172   MVT::ValueType getValueType() const { return Ty; }
173   unsigned getNumOperands() const { return NumOperands; }
174   const std::string &getSelectFunc() const { return SelectFunc; }
175   const std::vector<Record*> &getRootNodes() const {
176     return RootNodes;
177   }
178 };
179
180 } // End llvm namespace
181
182 #endif