blob: 1191488430fdd31ca96eff65a34a967300b34b40 [file] [log] [blame]
Chris Lattner803a5f62004-08-01 04:04:35 +00001//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell01d45822003-10-20 20:20:30 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner30609102007-12-29 20:37:13 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell01d45822003-10-20 20:20:30 +00008//===----------------------------------------------------------------------===//
Chris Lattner45872072003-08-07 05:38:11 +00009//
Chris Lattner803a5f62004-08-01 04:04:35 +000010// 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.
Chris Lattner45872072003-08-07 05:38:11 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattner803a5f62004-08-01 04:04:35 +000017#ifndef CODEGEN_TARGET_H
18#define CODEGEN_TARGET_H
Chris Lattner45872072003-08-07 05:38:11 +000019
Chris Lattner26693112004-08-16 01:10:21 +000020#include "CodeGenRegisters.h"
Chris Lattnerec352402004-08-01 05:04:00 +000021#include "CodeGenInstruction.h"
Chris Lattner45872072003-08-07 05:38:11 +000022#include <iosfwd>
Chris Lattnerec352402004-08-01 05:04:00 +000023#include <map>
Brian Gaeked0fde302003-11-11 22:41:34 +000024
25namespace llvm {
26
Chris Lattner45872072003-08-07 05:38:11 +000027class Record;
28class RecordKeeper;
Chris Lattner1fca5ff2004-10-27 16:14:51 +000029struct CodeGenRegister;
Chris Lattner8850a1b2006-03-27 22:48:18 +000030class CodeGenTarget;
Chris Lattner45872072003-08-07 05:38:11 +000031
Evan Cheng94b30402006-10-11 21:02:01 +000032// SelectionDAG node properties.
Chris Lattnerc8478d82008-01-06 06:44:58 +000033enum SDNP {
34 SDNPCommutative,
35 SDNPAssociative,
36 SDNPHasChain,
37 SDNPOutFlag,
38 SDNPInFlag,
39 SDNPOptInFlag,
Chris Lattner710e9952008-01-10 04:38:57 +000040 SDNPMayLoad,
Chris Lattnerbc0b9f72008-01-10 05:39:30 +000041 SDNPMayStore,
42 SDNPSideEffect
Chris Lattnerc8478d82008-01-06 06:44:58 +000043};
Evan Cheng94b30402006-10-11 21:02:01 +000044
Christopher Lamb85356242008-01-31 07:27:46 +000045// ComplexPattern attributes.
46enum CPAttr { CPAttrParentAsRoot };
47
Duncan Sands83ec4b62008-06-06 12:08:01 +000048/// getValueType - Return the MVT::SimpleValueType that the specified TableGen
49/// record corresponds to.
50MVT::SimpleValueType getValueType(Record *Rec);
Chris Lattner45872072003-08-07 05:38:11 +000051
Duncan Sands83ec4b62008-06-06 12:08:01 +000052std::string getName(MVT::SimpleValueType T);
53std::string getEnumName(MVT::SimpleValueType T);
Chris Lattner45872072003-08-07 05:38:11 +000054
Chris Lattner6cefb772008-01-05 22:25:12 +000055/// getQualifiedName - Return the name of the specified record, with a
56/// namespace qualifier if the record contains one.
57std::string getQualifiedName(const Record *R);
58
Chris Lattner45872072003-08-07 05:38:11 +000059/// CodeGenTarget - This class corresponds to the Target class in the .td files.
60///
61class CodeGenTarget {
62 Record *TargetRec;
Chris Lattner45872072003-08-07 05:38:11 +000063
Chris Lattnerec352402004-08-01 05:04:00 +000064 mutable std::map<std::string, CodeGenInstruction> Instructions;
Chris Lattner26693112004-08-16 01:10:21 +000065 mutable std::vector<CodeGenRegister> Registers;
Chris Lattner056afef2004-08-21 04:05:00 +000066 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
Duncan Sands83ec4b62008-06-06 12:08:01 +000067 mutable std::vector<MVT::SimpleValueType> LegalValueTypes;
Chris Lattner26693112004-08-16 01:10:21 +000068 void ReadRegisters() const;
Chris Lattner056afef2004-08-21 04:05:00 +000069 void ReadRegisterClasses() const;
70 void ReadInstructions() const;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000071 void ReadLegalValueTypes() const;
Chris Lattner45872072003-08-07 05:38:11 +000072public:
73 CodeGenTarget();
74
75 Record *getTargetRecord() const { return TargetRec; }
76 const std::string &getName() const;
77
Chris Lattner175580c2004-08-14 22:50:53 +000078 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerec352402004-08-01 05:04:00 +000079 ///
Chris Lattner45872072003-08-07 05:38:11 +000080 Record *getInstructionSet() const;
81
Chris Lattner175580c2004-08-14 22:50:53 +000082 /// getAsmWriter - Return the AssemblyWriter definition for this target.
83 ///
84 Record *getAsmWriter() const;
85
Chris Lattnere9f4ba82005-09-08 21:43:21 +000086 const std::vector<CodeGenRegister> &getRegisters() const {
Chris Lattner26693112004-08-16 01:10:21 +000087 if (Registers.empty()) ReadRegisters();
88 return Registers;
89 }
Chris Lattnerec352402004-08-01 05:04:00 +000090
Chris Lattnere9f4ba82005-09-08 21:43:21 +000091 const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
Chris Lattner056afef2004-08-21 04:05:00 +000092 if (RegisterClasses.empty()) ReadRegisterClasses();
93 return RegisterClasses;
94 }
Nate Begemanddb39542005-12-01 00:06:14 +000095
96 const CodeGenRegisterClass &getRegisterClass(Record *R) const {
97 const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses();
98 for (unsigned i = 0, e = RC.size(); i != e; ++i)
99 if (RC[i].TheDef == R)
100 return RC[i];
101 assert(0 && "Didn't find the register class");
102 abort();
103 }
Chris Lattner5c4736a2005-12-05 02:35:08 +0000104
105 /// getRegisterClassForRegister - Find the register class that contains the
106 /// specified physical register. If there register exists in multiple
107 /// register classes or is not in a register class, return null.
108 const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const {
109 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses();
110 const CodeGenRegisterClass *FoundRC = 0;
111 for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
112 const CodeGenRegisterClass &RC = RegisterClasses[i];
113 for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) {
114 if (R == RC.Elements[ei]) {
115 if (FoundRC) return 0; // In multiple RC's
116 FoundRC = &RC;
117 break;
118 }
119 }
120 }
121 return FoundRC;
122 }
Evan Cheng44a65fa2006-05-16 07:05:30 +0000123
Duncan Sands83ec4b62008-06-06 12:08:01 +0000124 /// getRegisterVTs - Find the union of all possible SimpleValueTypes for the
Evan Cheng44a65fa2006-05-16 07:05:30 +0000125 /// specified physical register.
126 std::vector<unsigned char> getRegisterVTs(Record *R) const;
Chris Lattner5c4736a2005-12-05 02:35:08 +0000127
Duncan Sands83ec4b62008-06-06 12:08:01 +0000128 const std::vector<MVT::SimpleValueType> &getLegalValueTypes() const {
Chris Lattnere9f4ba82005-09-08 21:43:21 +0000129 if (LegalValueTypes.empty()) ReadLegalValueTypes();
130 return LegalValueTypes;
131 }
132
133 /// isLegalValueType - Return true if the specified value type is natively
134 /// supported by the target (i.e. there are registers that directly hold it).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000135 bool isLegalValueType(MVT::SimpleValueType VT) const {
136 const std::vector<MVT::SimpleValueType> &LegalVTs = getLegalValueTypes();
Chris Lattnere9f4ba82005-09-08 21:43:21 +0000137 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
138 if (LegalVTs[i] == VT) return true;
139 return false;
140 }
Chris Lattner056afef2004-08-21 04:05:00 +0000141
Chris Lattnerec352402004-08-01 05:04:00 +0000142 /// getInstructions - Return all of the instructions defined for this target.
143 ///
144 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
145 if (Instructions.empty()) ReadInstructions();
146 return Instructions;
147 }
Dan Gohmanee4fa192008-04-03 00:02:49 +0000148 std::map<std::string, CodeGenInstruction> &getInstructions() {
149 if (Instructions.empty()) ReadInstructions();
150 return Instructions;
151 }
Chris Lattnerec352402004-08-01 05:04:00 +0000152
Chris Lattnera974b202005-09-14 18:02:53 +0000153 CodeGenInstruction &getInstruction(const std::string &Name) const {
154 const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
155 assert(Insts.count(Name) && "Not an instruction!");
156 return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
157 }
158
Chris Lattnerec352402004-08-01 05:04:00 +0000159 typedef std::map<std::string,
160 CodeGenInstruction>::const_iterator inst_iterator;
161 inst_iterator inst_begin() const { return getInstructions().begin(); }
162 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner26693112004-08-16 01:10:21 +0000163
Chris Lattnerd6488672005-01-22 18:58:51 +0000164 /// getInstructionsByEnumValue - Return all of the instructions defined by the
165 /// target, ordered by their enum value.
166 void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
167 &NumberedInstructions);
168
169
Misha Brukman35e83cc2004-10-14 05:50:43 +0000170 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
171 ///
172 bool isLittleEndianEncoding() const;
Chris Lattner45872072003-08-07 05:38:11 +0000173};
174
Evan Cheng0fc71982005-12-08 02:00:36 +0000175/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
176/// tablegen class in TargetSelectionDAG.td
177class ComplexPattern {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000178 MVT::SimpleValueType Ty;
Evan Cheng0fc71982005-12-08 02:00:36 +0000179 unsigned NumOperands;
180 std::string SelectFunc;
Evan Cheng3aa39f42005-12-08 02:14:08 +0000181 std::vector<Record*> RootNodes;
Christopher Lamb85356242008-01-31 07:27:46 +0000182 unsigned Properties; // Node properties
183 unsigned Attributes; // Pattern attributes
Evan Cheng0fc71982005-12-08 02:00:36 +0000184public:
185 ComplexPattern() : NumOperands(0) {};
186 ComplexPattern(Record *R);
187
Duncan Sands83ec4b62008-06-06 12:08:01 +0000188 MVT::SimpleValueType getValueType() const { return Ty; }
Evan Cheng0fc71982005-12-08 02:00:36 +0000189 unsigned getNumOperands() const { return NumOperands; }
190 const std::string &getSelectFunc() const { return SelectFunc; }
Evan Cheng3aa39f42005-12-08 02:14:08 +0000191 const std::vector<Record*> &getRootNodes() const {
192 return RootNodes;
Evan Cheng0fc71982005-12-08 02:00:36 +0000193 }
Evan Cheng94b30402006-10-11 21:02:01 +0000194 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
Christopher Lamb85356242008-01-31 07:27:46 +0000195 bool hasAttribute(enum CPAttr Attr) const { return Attributes & (1 << Attr); }
Evan Cheng0fc71982005-12-08 02:00:36 +0000196};
197
Brian Gaeked0fde302003-11-11 22:41:34 +0000198} // End llvm namespace
199
Chris Lattner45872072003-08-07 05:38:11 +0000200#endif