blob: 07407334196755a2278ac44d450e1855a4363e2e [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 Lattnerc8478d82008-01-06 06:44:58 +000041 SDNPMayStore
42};
Evan Cheng94b30402006-10-11 21:02:01 +000043
Chris Lattner45872072003-08-07 05:38:11 +000044/// getValueType - Return the MVT::ValueType that the specified TableGen record
45/// corresponds to.
Dan Gohman3bf6e182007-07-13 20:16:50 +000046MVT::ValueType getValueType(Record *Rec);
Chris Lattner45872072003-08-07 05:38:11 +000047
Chris Lattnerd3464c12003-08-07 23:15:21 +000048std::string getName(MVT::ValueType T);
Chris Lattnerb72fb7e2003-08-10 19:50:32 +000049std::string getEnumName(MVT::ValueType T);
Chris Lattner45872072003-08-07 05:38:11 +000050
Chris Lattner6cefb772008-01-05 22:25:12 +000051/// getQualifiedName - Return the name of the specified record, with a
52/// namespace qualifier if the record contains one.
53std::string getQualifiedName(const Record *R);
54
Chris Lattner45872072003-08-07 05:38:11 +000055/// CodeGenTarget - This class corresponds to the Target class in the .td files.
56///
57class CodeGenTarget {
58 Record *TargetRec;
Chris Lattner45872072003-08-07 05:38:11 +000059
Chris Lattnerec352402004-08-01 05:04:00 +000060 mutable std::map<std::string, CodeGenInstruction> Instructions;
Chris Lattner26693112004-08-16 01:10:21 +000061 mutable std::vector<CodeGenRegister> Registers;
Chris Lattner056afef2004-08-21 04:05:00 +000062 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000063 mutable std::vector<MVT::ValueType> LegalValueTypes;
Chris Lattner26693112004-08-16 01:10:21 +000064 void ReadRegisters() const;
Chris Lattner056afef2004-08-21 04:05:00 +000065 void ReadRegisterClasses() const;
66 void ReadInstructions() const;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000067 void ReadLegalValueTypes() const;
Chris Lattner45872072003-08-07 05:38:11 +000068public:
69 CodeGenTarget();
70
71 Record *getTargetRecord() const { return TargetRec; }
72 const std::string &getName() const;
73
Chris Lattner175580c2004-08-14 22:50:53 +000074 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerec352402004-08-01 05:04:00 +000075 ///
Chris Lattner45872072003-08-07 05:38:11 +000076 Record *getInstructionSet() const;
77
Chris Lattner175580c2004-08-14 22:50:53 +000078 /// getAsmWriter - Return the AssemblyWriter definition for this target.
79 ///
80 Record *getAsmWriter() const;
81
Chris Lattnere9f4ba82005-09-08 21:43:21 +000082 const std::vector<CodeGenRegister> &getRegisters() const {
Chris Lattner26693112004-08-16 01:10:21 +000083 if (Registers.empty()) ReadRegisters();
84 return Registers;
85 }
Chris Lattnerec352402004-08-01 05:04:00 +000086
Chris Lattnere9f4ba82005-09-08 21:43:21 +000087 const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
Chris Lattner056afef2004-08-21 04:05:00 +000088 if (RegisterClasses.empty()) ReadRegisterClasses();
89 return RegisterClasses;
90 }
Nate Begemanddb39542005-12-01 00:06:14 +000091
92 const CodeGenRegisterClass &getRegisterClass(Record *R) const {
93 const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses();
94 for (unsigned i = 0, e = RC.size(); i != e; ++i)
95 if (RC[i].TheDef == R)
96 return RC[i];
97 assert(0 && "Didn't find the register class");
98 abort();
99 }
Chris Lattner5c4736a2005-12-05 02:35:08 +0000100
101 /// getRegisterClassForRegister - Find the register class that contains the
102 /// specified physical register. If there register exists in multiple
103 /// register classes or is not in a register class, return null.
104 const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const {
105 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses();
106 const CodeGenRegisterClass *FoundRC = 0;
107 for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
108 const CodeGenRegisterClass &RC = RegisterClasses[i];
109 for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) {
110 if (R == RC.Elements[ei]) {
111 if (FoundRC) return 0; // In multiple RC's
112 FoundRC = &RC;
113 break;
114 }
115 }
116 }
117 return FoundRC;
118 }
Evan Cheng44a65fa2006-05-16 07:05:30 +0000119
120 /// getRegisterVTs - Find the union of all possible ValueTypes for the
121 /// specified physical register.
122 std::vector<unsigned char> getRegisterVTs(Record *R) const;
Chris Lattner5c4736a2005-12-05 02:35:08 +0000123
Chris Lattnere9f4ba82005-09-08 21:43:21 +0000124 const std::vector<MVT::ValueType> &getLegalValueTypes() const {
125 if (LegalValueTypes.empty()) ReadLegalValueTypes();
126 return LegalValueTypes;
127 }
128
129 /// isLegalValueType - Return true if the specified value type is natively
130 /// supported by the target (i.e. there are registers that directly hold it).
131 bool isLegalValueType(MVT::ValueType VT) const {
132 const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
133 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
134 if (LegalVTs[i] == VT) return true;
135 return false;
136 }
Chris Lattner056afef2004-08-21 04:05:00 +0000137
Chris Lattnerec352402004-08-01 05:04:00 +0000138 /// getInstructions - Return all of the instructions defined for this target.
139 ///
140 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
141 if (Instructions.empty()) ReadInstructions();
142 return Instructions;
143 }
144
Chris Lattnera974b202005-09-14 18:02:53 +0000145 CodeGenInstruction &getInstruction(const std::string &Name) const {
146 const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
147 assert(Insts.count(Name) && "Not an instruction!");
148 return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
149 }
150
Chris Lattnerec352402004-08-01 05:04:00 +0000151 typedef std::map<std::string,
152 CodeGenInstruction>::const_iterator inst_iterator;
153 inst_iterator inst_begin() const { return getInstructions().begin(); }
154 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner26693112004-08-16 01:10:21 +0000155
Chris Lattnerd6488672005-01-22 18:58:51 +0000156 /// getInstructionsByEnumValue - Return all of the instructions defined by the
157 /// target, ordered by their enum value.
158 void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
159 &NumberedInstructions);
160
161
Misha Brukman35e83cc2004-10-14 05:50:43 +0000162 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
163 ///
164 bool isLittleEndianEncoding() const;
Chris Lattner45872072003-08-07 05:38:11 +0000165};
166
Evan Cheng0fc71982005-12-08 02:00:36 +0000167/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
168/// tablegen class in TargetSelectionDAG.td
169class ComplexPattern {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000170 MVT::ValueType Ty;
Evan Cheng0fc71982005-12-08 02:00:36 +0000171 unsigned NumOperands;
172 std::string SelectFunc;
Evan Cheng3aa39f42005-12-08 02:14:08 +0000173 std::vector<Record*> RootNodes;
Evan Cheng94b30402006-10-11 21:02:01 +0000174 unsigned Properties;
Evan Cheng0fc71982005-12-08 02:00:36 +0000175public:
176 ComplexPattern() : NumOperands(0) {};
177 ComplexPattern(Record *R);
178
Evan Cheng3aa39f42005-12-08 02:14:08 +0000179 MVT::ValueType getValueType() const { return Ty; }
Evan Cheng0fc71982005-12-08 02:00:36 +0000180 unsigned getNumOperands() const { return NumOperands; }
181 const std::string &getSelectFunc() const { return SelectFunc; }
Evan Cheng3aa39f42005-12-08 02:14:08 +0000182 const std::vector<Record*> &getRootNodes() const {
183 return RootNodes;
Evan Cheng0fc71982005-12-08 02:00:36 +0000184 }
Evan Cheng94b30402006-10-11 21:02:01 +0000185 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
186
Evan Cheng0fc71982005-12-08 02:00:36 +0000187};
188
Brian Gaeked0fde302003-11-11 22:41:34 +0000189} // End llvm namespace
190
Chris Lattner45872072003-08-07 05:38:11 +0000191#endif