]> git.proxmox.com Git - rustc.git/blame - src/llvm/utils/TableGen/CodeGenTarget.h
Imported Upstream version 1.0.0+dfsg1
[rustc.git] / src / llvm / utils / TableGen / CodeGenTarget.h
CommitLineData
223e47cc
LB
1//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// 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
970d7e83
LB
12// place that needs to check it for validity. All of these classes abort
13// on error conditions.
223e47cc
LB
14//
15//===----------------------------------------------------------------------===//
16
1a4d82fc
JJ
17#ifndef LLVM_UTILS_TABLEGEN_CODEGENTARGET_H
18#define LLVM_UTILS_TABLEGEN_CODEGENTARGET_H
223e47cc 19
223e47cc 20#include "CodeGenInstruction.h"
970d7e83 21#include "CodeGenRegisters.h"
223e47cc 22#include "llvm/Support/raw_ostream.h"
970d7e83 23#include "llvm/TableGen/Record.h"
223e47cc
LB
24#include <algorithm>
25
26namespace llvm {
27
28struct CodeGenRegister;
29class CodeGenSchedModels;
30class CodeGenTarget;
31
32// SelectionDAG node properties.
33// SDNPMemOperand: indicates that a node touches memory and therefore must
34// have an associated memory operand that describes the access.
35enum SDNP {
36 SDNPCommutative,
37 SDNPAssociative,
38 SDNPHasChain,
39 SDNPOutGlue,
40 SDNPInGlue,
41 SDNPOptInGlue,
42 SDNPMayLoad,
43 SDNPMayStore,
44 SDNPSideEffect,
45 SDNPMemOperand,
46 SDNPVariadic,
47 SDNPWantRoot,
48 SDNPWantParent
49};
50
51/// getValueType - Return the MVT::SimpleValueType that the specified TableGen
52/// record corresponds to.
53MVT::SimpleValueType getValueType(Record *Rec);
54
55std::string getName(MVT::SimpleValueType T);
56std::string getEnumName(MVT::SimpleValueType T);
57
58/// getQualifiedName - Return the name of the specified record, with a
59/// namespace qualifier if the record contains one.
60std::string getQualifiedName(const Record *R);
61
62/// CodeGenTarget - This class corresponds to the Target class in the .td files.
63///
64class CodeGenTarget {
65 RecordKeeper &Records;
66 Record *TargetRec;
67
85aaf69f
SL
68 mutable DenseMap<const Record*,
69 std::unique_ptr<CodeGenInstruction>> Instructions;
70 mutable std::unique_ptr<CodeGenRegBank> RegBank;
223e47cc 71 mutable std::vector<Record*> RegAltNameIndices;
970d7e83 72 mutable SmallVector<MVT::SimpleValueType, 8> LegalValueTypes;
223e47cc
LB
73 void ReadRegAltNameIndices() const;
74 void ReadInstructions() const;
75 void ReadLegalValueTypes() const;
76
85aaf69f 77 mutable std::unique_ptr<CodeGenSchedModels> SchedModels;
223e47cc
LB
78
79 mutable std::vector<const CodeGenInstruction*> InstrsByEnum;
80public:
81 CodeGenTarget(RecordKeeper &Records);
82 ~CodeGenTarget();
83
84 Record *getTargetRecord() const { return TargetRec; }
85 const std::string &getName() const;
86
87 /// getInstNamespace - Return the target-specific instruction namespace.
88 ///
89 std::string getInstNamespace() const;
90
91 /// getInstructionSet - Return the InstructionSet object.
92 ///
93 Record *getInstructionSet() const;
94
95 /// getAsmParser - Return the AssemblyParser definition for this target.
96 ///
97 Record *getAsmParser() const;
98
99 /// getAsmParserVariant - Return the AssmblyParserVariant definition for
100 /// this target.
101 ///
102 Record *getAsmParserVariant(unsigned i) const;
103
104 /// getAsmParserVariantCount - Return the AssmblyParserVariant definition
105 /// available for this target.
106 ///
107 unsigned getAsmParserVariantCount() const;
108
109 /// getAsmWriter - Return the AssemblyWriter definition for this target.
110 ///
111 Record *getAsmWriter() const;
112
113 /// getRegBank - Return the register bank description.
114 CodeGenRegBank &getRegBank() const;
115
116 /// getRegisterByName - If there is a register with the specific AsmName,
117 /// return it.
118 const CodeGenRegister *getRegisterByName(StringRef Name) const;
119
120 const std::vector<Record*> &getRegAltNameIndices() const {
121 if (RegAltNameIndices.empty()) ReadRegAltNameIndices();
122 return RegAltNameIndices;
123 }
124
125 const CodeGenRegisterClass &getRegisterClass(Record *R) const {
126 return *getRegBank().getRegClass(R);
127 }
128
129 /// getRegisterVTs - Find the union of all possible SimpleValueTypes for the
130 /// specified physical register.
131 std::vector<MVT::SimpleValueType> getRegisterVTs(Record *R) const;
132
970d7e83 133 ArrayRef<MVT::SimpleValueType> getLegalValueTypes() const {
223e47cc
LB
134 if (LegalValueTypes.empty()) ReadLegalValueTypes();
135 return LegalValueTypes;
136 }
137
138 /// isLegalValueType - Return true if the specified value type is natively
139 /// supported by the target (i.e. there are registers that directly hold it).
140 bool isLegalValueType(MVT::SimpleValueType VT) const {
970d7e83 141 ArrayRef<MVT::SimpleValueType> LegalVTs = getLegalValueTypes();
223e47cc
LB
142 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
143 if (LegalVTs[i] == VT) return true;
144 return false;
145 }
146
147 CodeGenSchedModels &getSchedModels() const;
148
149private:
85aaf69f
SL
150 DenseMap<const Record*, std::unique_ptr<CodeGenInstruction>> &
151 getInstructions() const {
223e47cc
LB
152 if (Instructions.empty()) ReadInstructions();
153 return Instructions;
154 }
155public:
156
157 CodeGenInstruction &getInstruction(const Record *InstRec) const {
158 if (Instructions.empty()) ReadInstructions();
85aaf69f 159 auto I = Instructions.find(InstRec);
223e47cc
LB
160 assert(I != Instructions.end() && "Not an instruction");
161 return *I->second;
162 }
163
164 /// getInstructionsByEnumValue - Return all of the instructions defined by the
165 /// target, ordered by their enum value.
166 const std::vector<const CodeGenInstruction*> &
167 getInstructionsByEnumValue() const {
168 if (InstrsByEnum.empty()) ComputeInstrsByEnum();
169 return InstrsByEnum;
170 }
171
172 typedef std::vector<const CodeGenInstruction*>::const_iterator inst_iterator;
173 inst_iterator inst_begin() const{return getInstructionsByEnumValue().begin();}
174 inst_iterator inst_end() const { return getInstructionsByEnumValue().end(); }
1a4d82fc
JJ
175 iterator_range<inst_iterator> instructions() const {
176 return iterator_range<inst_iterator>(inst_begin(), inst_end());
177 }
223e47cc
LB
178
179
180 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
181 ///
182 bool isLittleEndianEncoding() const;
183
1a4d82fc
JJ
184 /// reverseBitsForLittleEndianEncoding - For little-endian instruction bit
185 /// encodings, reverse the bit order of all instructions.
186 void reverseBitsForLittleEndianEncoding();
187
223e47cc
LB
188 /// guessInstructionProperties - should we just guess unset instruction
189 /// properties?
190 bool guessInstructionProperties() const;
191
192private:
193 void ComputeInstrsByEnum() const;
194};
195
196/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
197/// tablegen class in TargetSelectionDAG.td
198class ComplexPattern {
199 MVT::SimpleValueType Ty;
200 unsigned NumOperands;
201 std::string SelectFunc;
202 std::vector<Record*> RootNodes;
203 unsigned Properties; // Node properties
204public:
205 ComplexPattern() : NumOperands(0) {}
206 ComplexPattern(Record *R);
207
208 MVT::SimpleValueType getValueType() const { return Ty; }
209 unsigned getNumOperands() const { return NumOperands; }
210 const std::string &getSelectFunc() const { return SelectFunc; }
211 const std::vector<Record*> &getRootNodes() const {
212 return RootNodes;
213 }
214 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
215};
216
217} // End llvm namespace
218
219#endif