blob: dd58d929f8864460367098803661f109c0a21ef9 [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//
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.
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
32/// getValueType - Return the MVT::ValueType that the specified TableGen record
33/// corresponds to.
Chris Lattner8850a1b2006-03-27 22:48:18 +000034MVT::ValueType getValueType(Record *Rec, const CodeGenTarget *CGT = 0);
Chris Lattner45872072003-08-07 05:38:11 +000035
36std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
Chris Lattnerd3464c12003-08-07 23:15:21 +000037std::string getName(MVT::ValueType T);
Chris Lattnerb72fb7e2003-08-10 19:50:32 +000038std::string getEnumName(MVT::ValueType T);
Chris Lattner45872072003-08-07 05:38:11 +000039
40
41/// CodeGenTarget - This class corresponds to the Target class in the .td files.
42///
43class CodeGenTarget {
44 Record *TargetRec;
Chris Lattner45872072003-08-07 05:38:11 +000045
Chris Lattnerec352402004-08-01 05:04:00 +000046 mutable std::map<std::string, CodeGenInstruction> Instructions;
Chris Lattner26693112004-08-16 01:10:21 +000047 mutable std::vector<CodeGenRegister> Registers;
Chris Lattner056afef2004-08-21 04:05:00 +000048 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000049 mutable std::vector<MVT::ValueType> LegalValueTypes;
Chris Lattner26693112004-08-16 01:10:21 +000050 void ReadRegisters() const;
Chris Lattner056afef2004-08-21 04:05:00 +000051 void ReadRegisterClasses() const;
52 void ReadInstructions() const;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000053 void ReadLegalValueTypes() const;
Chris Lattner45872072003-08-07 05:38:11 +000054public:
55 CodeGenTarget();
56
57 Record *getTargetRecord() const { return TargetRec; }
58 const std::string &getName() const;
59
Chris Lattner175580c2004-08-14 22:50:53 +000060 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerec352402004-08-01 05:04:00 +000061 ///
Chris Lattner45872072003-08-07 05:38:11 +000062 Record *getInstructionSet() const;
63
Chris Lattner175580c2004-08-14 22:50:53 +000064 /// getAsmWriter - Return the AssemblyWriter definition for this target.
65 ///
66 Record *getAsmWriter() const;
67
Chris Lattnere9f4ba82005-09-08 21:43:21 +000068 const std::vector<CodeGenRegister> &getRegisters() const {
Chris Lattner26693112004-08-16 01:10:21 +000069 if (Registers.empty()) ReadRegisters();
70 return Registers;
71 }
Chris Lattnerec352402004-08-01 05:04:00 +000072
Chris Lattnere9f4ba82005-09-08 21:43:21 +000073 const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
Chris Lattner056afef2004-08-21 04:05:00 +000074 if (RegisterClasses.empty()) ReadRegisterClasses();
75 return RegisterClasses;
76 }
Nate Begemanddb39542005-12-01 00:06:14 +000077
78 const CodeGenRegisterClass &getRegisterClass(Record *R) const {
79 const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses();
80 for (unsigned i = 0, e = RC.size(); i != e; ++i)
81 if (RC[i].TheDef == R)
82 return RC[i];
83 assert(0 && "Didn't find the register class");
84 abort();
85 }
Chris Lattner5c4736a2005-12-05 02:35:08 +000086
87 /// getRegisterClassForRegister - Find the register class that contains the
88 /// specified physical register. If there register exists in multiple
89 /// register classes or is not in a register class, return null.
90 const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const {
91 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses();
92 const CodeGenRegisterClass *FoundRC = 0;
93 for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
94 const CodeGenRegisterClass &RC = RegisterClasses[i];
95 for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) {
96 if (R == RC.Elements[ei]) {
97 if (FoundRC) return 0; // In multiple RC's
98 FoundRC = &RC;
99 break;
100 }
101 }
102 }
103 return FoundRC;
104 }
Evan Cheng44a65fa2006-05-16 07:05:30 +0000105
106 /// getRegisterVTs - Find the union of all possible ValueTypes for the
107 /// specified physical register.
108 std::vector<unsigned char> getRegisterVTs(Record *R) const;
Chris Lattner5c4736a2005-12-05 02:35:08 +0000109
Chris Lattnere9f4ba82005-09-08 21:43:21 +0000110 const std::vector<MVT::ValueType> &getLegalValueTypes() const {
111 if (LegalValueTypes.empty()) ReadLegalValueTypes();
112 return LegalValueTypes;
113 }
114
115 /// isLegalValueType - Return true if the specified value type is natively
116 /// supported by the target (i.e. there are registers that directly hold it).
117 bool isLegalValueType(MVT::ValueType VT) const {
118 const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
119 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
120 if (LegalVTs[i] == VT) return true;
121 return false;
122 }
Chris Lattner056afef2004-08-21 04:05:00 +0000123
Chris Lattnerec352402004-08-01 05:04:00 +0000124 /// getInstructions - Return all of the instructions defined for this target.
125 ///
126 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
127 if (Instructions.empty()) ReadInstructions();
128 return Instructions;
129 }
130
Chris Lattnera974b202005-09-14 18:02:53 +0000131 CodeGenInstruction &getInstruction(const std::string &Name) const {
132 const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
133 assert(Insts.count(Name) && "Not an instruction!");
134 return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
135 }
136
Chris Lattnerec352402004-08-01 05:04:00 +0000137 typedef std::map<std::string,
138 CodeGenInstruction>::const_iterator inst_iterator;
139 inst_iterator inst_begin() const { return getInstructions().begin(); }
140 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner26693112004-08-16 01:10:21 +0000141
Chris Lattnerd6488672005-01-22 18:58:51 +0000142 /// getInstructionsByEnumValue - Return all of the instructions defined by the
143 /// target, ordered by their enum value.
144 void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
145 &NumberedInstructions);
146
147
Misha Brukman35e83cc2004-10-14 05:50:43 +0000148 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
149 ///
150 bool isLittleEndianEncoding() const;
Chris Lattner45872072003-08-07 05:38:11 +0000151};
152
Evan Cheng0fc71982005-12-08 02:00:36 +0000153/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
154/// tablegen class in TargetSelectionDAG.td
155class ComplexPattern {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000156 MVT::ValueType Ty;
Evan Cheng0fc71982005-12-08 02:00:36 +0000157 unsigned NumOperands;
158 std::string SelectFunc;
Evan Cheng3aa39f42005-12-08 02:14:08 +0000159 std::vector<Record*> RootNodes;
Evan Cheng0fc71982005-12-08 02:00:36 +0000160public:
161 ComplexPattern() : NumOperands(0) {};
162 ComplexPattern(Record *R);
163
Evan Cheng3aa39f42005-12-08 02:14:08 +0000164 MVT::ValueType getValueType() const { return Ty; }
Evan Cheng0fc71982005-12-08 02:00:36 +0000165 unsigned getNumOperands() const { return NumOperands; }
166 const std::string &getSelectFunc() const { return SelectFunc; }
Evan Cheng3aa39f42005-12-08 02:14:08 +0000167 const std::vector<Record*> &getRootNodes() const {
168 return RootNodes;
Evan Cheng0fc71982005-12-08 02:00:36 +0000169 }
170};
171
Brian Gaeked0fde302003-11-11 22:41:34 +0000172} // End llvm namespace
173
Chris Lattner45872072003-08-07 05:38:11 +0000174#endif