blob: f024c1d62aaa894043be4b6d7b84813e1dcc0a75 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerfd6c2f02007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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
25namespace llvm {
26
27class Record;
28class RecordKeeper;
29struct CodeGenRegister;
30class CodeGenTarget;
31
32// SelectionDAG node properties.
33enum SDNP { SDNPCommutative, SDNPAssociative, SDNPHasChain,
34 SDNPOutFlag, SDNPInFlag, SDNPOptInFlag };
35
36/// getValueType - Return the MVT::ValueType that the specified TableGen record
37/// corresponds to.
38MVT::ValueType getValueType(Record *Rec);
39
40std::string getName(MVT::ValueType T);
41std::string getEnumName(MVT::ValueType T);
42
Chris Lattner4ca8ff02008-01-05 22:25:12 +000043/// getQualifiedName - Return the name of the specified record, with a
44/// namespace qualifier if the record contains one.
45std::string getQualifiedName(const Record *R);
46
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047/// CodeGenTarget - This class corresponds to the Target class in the .td files.
48///
49class CodeGenTarget {
50 Record *TargetRec;
51
52 mutable std::map<std::string, CodeGenInstruction> Instructions;
53 mutable std::vector<CodeGenRegister> Registers;
54 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
55 mutable std::vector<MVT::ValueType> LegalValueTypes;
56 void ReadRegisters() const;
57 void ReadRegisterClasses() const;
58 void ReadInstructions() const;
59 void ReadLegalValueTypes() const;
60public:
61 CodeGenTarget();
62
63 Record *getTargetRecord() const { return TargetRec; }
64 const std::string &getName() const;
65
66 /// getInstructionSet - Return the InstructionSet object.
67 ///
68 Record *getInstructionSet() const;
69
70 /// getAsmWriter - Return the AssemblyWriter definition for this target.
71 ///
72 Record *getAsmWriter() const;
73
74 const std::vector<CodeGenRegister> &getRegisters() const {
75 if (Registers.empty()) ReadRegisters();
76 return Registers;
77 }
78
79 const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
80 if (RegisterClasses.empty()) ReadRegisterClasses();
81 return RegisterClasses;
82 }
83
84 const CodeGenRegisterClass &getRegisterClass(Record *R) const {
85 const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses();
86 for (unsigned i = 0, e = RC.size(); i != e; ++i)
87 if (RC[i].TheDef == R)
88 return RC[i];
89 assert(0 && "Didn't find the register class");
90 abort();
91 }
92
93 /// getRegisterClassForRegister - Find the register class that contains the
94 /// specified physical register. If there register exists in multiple
95 /// register classes or is not in a register class, return null.
96 const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const {
97 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses();
98 const CodeGenRegisterClass *FoundRC = 0;
99 for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
100 const CodeGenRegisterClass &RC = RegisterClasses[i];
101 for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) {
102 if (R == RC.Elements[ei]) {
103 if (FoundRC) return 0; // In multiple RC's
104 FoundRC = &RC;
105 break;
106 }
107 }
108 }
109 return FoundRC;
110 }
111
112 /// getRegisterVTs - Find the union of all possible ValueTypes for the
113 /// specified physical register.
114 std::vector<unsigned char> getRegisterVTs(Record *R) const;
115
116 const std::vector<MVT::ValueType> &getLegalValueTypes() const {
117 if (LegalValueTypes.empty()) ReadLegalValueTypes();
118 return LegalValueTypes;
119 }
120
121 /// isLegalValueType - Return true if the specified value type is natively
122 /// supported by the target (i.e. there are registers that directly hold it).
123 bool isLegalValueType(MVT::ValueType VT) const {
124 const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
125 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
126 if (LegalVTs[i] == VT) return true;
127 return false;
128 }
129
130 /// getInstructions - Return all of the instructions defined for this target.
131 ///
132 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
133 if (Instructions.empty()) ReadInstructions();
134 return Instructions;
135 }
136
137 CodeGenInstruction &getInstruction(const std::string &Name) const {
138 const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
139 assert(Insts.count(Name) && "Not an instruction!");
140 return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
141 }
142
143 typedef std::map<std::string,
144 CodeGenInstruction>::const_iterator inst_iterator;
145 inst_iterator inst_begin() const { return getInstructions().begin(); }
146 inst_iterator inst_end() const { return Instructions.end(); }
147
148 /// getInstructionsByEnumValue - Return all of the instructions defined by the
149 /// target, ordered by their enum value.
150 void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
151 &NumberedInstructions);
152
153
154 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
155 ///
156 bool isLittleEndianEncoding() const;
157};
158
159/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
160/// tablegen class in TargetSelectionDAG.td
161class ComplexPattern {
162 MVT::ValueType Ty;
163 unsigned NumOperands;
164 std::string SelectFunc;
165 std::vector<Record*> RootNodes;
166 unsigned Properties;
167public:
168 ComplexPattern() : NumOperands(0) {};
169 ComplexPattern(Record *R);
170
171 MVT::ValueType getValueType() const { return Ty; }
172 unsigned getNumOperands() const { return NumOperands; }
173 const std::string &getSelectFunc() const { return SelectFunc; }
174 const std::vector<Record*> &getRootNodes() const {
175 return RootNodes;
176 }
177 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
178
179};
180
181} // End llvm namespace
182
183#endif