blob: bedf1bb736f5f40a6f865c3cd6326c588bd7acfb [file] [log] [blame]
Chris Lattnerfce96032004-08-01 04:04:35 +00001//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
Misha Brukman650ba8e2005-04-22 00:00:37 +00002//
John Criswelld3032032003-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 Brukman650ba8e2005-04-22 00:00:37 +00007//
John Criswelld3032032003-10-20 20:20:30 +00008//===----------------------------------------------------------------------===//
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00009//
Chris Lattnerfce96032004-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 Lattnerf5bd1b72003-10-05 19:27:59 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattnerfce96032004-08-01 04:04:35 +000017#ifndef CODEGEN_TARGET_H
18#define CODEGEN_TARGET_H
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000019
Chris Lattner8af61dd2004-08-16 01:10:21 +000020#include "CodeGenRegisters.h"
Chris Lattnerc860eca2004-08-01 05:04:00 +000021#include "CodeGenInstruction.h"
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000022#include <iosfwd>
Chris Lattnerc860eca2004-08-01 05:04:00 +000023#include <map>
Brian Gaeke960707c2003-11-11 22:41:34 +000024
25namespace llvm {
26
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000027class Record;
28class RecordKeeper;
Chris Lattner7dfc2d22004-10-27 16:14:51 +000029struct CodeGenRegister;
Chris Lattnerc92f6882006-03-27 22:48:18 +000030class CodeGenTarget;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000031
32/// getValueType - Return the MVT::ValueType that the specified TableGen record
33/// corresponds to.
Chris Lattnerc92f6882006-03-27 22:48:18 +000034MVT::ValueType getValueType(Record *Rec, const CodeGenTarget *CGT = 0);
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000035
36std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
37std::string getName(MVT::ValueType T);
38std::string getEnumName(MVT::ValueType T);
39
40
41/// CodeGenTarget - This class corresponds to the Target class in the .td files.
42///
43class CodeGenTarget {
44 Record *TargetRec;
45 std::vector<Record*> CalleeSavedRegisters;
46 MVT::ValueType PointerType;
47
Chris Lattnerc860eca2004-08-01 05:04:00 +000048 mutable std::map<std::string, CodeGenInstruction> Instructions;
Chris Lattner8af61dd2004-08-16 01:10:21 +000049 mutable std::vector<CodeGenRegister> Registers;
Chris Lattner2a86fab2004-08-21 04:05:00 +000050 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
Chris Lattnercee994b2005-09-08 21:43:21 +000051 mutable std::vector<MVT::ValueType> LegalValueTypes;
Chris Lattner8af61dd2004-08-16 01:10:21 +000052 void ReadRegisters() const;
Chris Lattner2a86fab2004-08-21 04:05:00 +000053 void ReadRegisterClasses() const;
54 void ReadInstructions() const;
Chris Lattnercee994b2005-09-08 21:43:21 +000055 void ReadLegalValueTypes() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000056public:
57 CodeGenTarget();
58
59 Record *getTargetRecord() const { return TargetRec; }
60 const std::string &getName() const;
61
62 const std::vector<Record*> &getCalleeSavedRegisters() const {
63 return CalleeSavedRegisters;
64 }
65
66 MVT::ValueType getPointerType() const { return PointerType; }
67
Chris Lattner6ffa5012004-08-14 22:50:53 +000068 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerc860eca2004-08-01 05:04:00 +000069 ///
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000070 Record *getInstructionSet() const;
71
Chris Lattner6ffa5012004-08-14 22:50:53 +000072 /// getAsmWriter - Return the AssemblyWriter definition for this target.
73 ///
74 Record *getAsmWriter() const;
75
Chris Lattnercee994b2005-09-08 21:43:21 +000076 const std::vector<CodeGenRegister> &getRegisters() const {
Chris Lattner8af61dd2004-08-16 01:10:21 +000077 if (Registers.empty()) ReadRegisters();
78 return Registers;
79 }
Chris Lattnerc860eca2004-08-01 05:04:00 +000080
Chris Lattnercee994b2005-09-08 21:43:21 +000081 const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
Chris Lattner2a86fab2004-08-21 04:05:00 +000082 if (RegisterClasses.empty()) ReadRegisterClasses();
83 return RegisterClasses;
84 }
Nate Begemancdf2c672005-12-01 00:06:14 +000085
86 const CodeGenRegisterClass &getRegisterClass(Record *R) const {
87 const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses();
88 for (unsigned i = 0, e = RC.size(); i != e; ++i)
89 if (RC[i].TheDef == R)
90 return RC[i];
91 assert(0 && "Didn't find the register class");
92 abort();
93 }
Chris Lattner3717b4c2005-12-05 02:35:08 +000094
95 /// getRegisterClassForRegister - Find the register class that contains the
96 /// specified physical register. If there register exists in multiple
97 /// register classes or is not in a register class, return null.
98 const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const {
99 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses();
100 const CodeGenRegisterClass *FoundRC = 0;
101 for (unsigned i = 0, e = RCs.size(); i != e; ++i) {
102 const CodeGenRegisterClass &RC = RegisterClasses[i];
103 for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) {
104 if (R == RC.Elements[ei]) {
105 if (FoundRC) return 0; // In multiple RC's
106 FoundRC = &RC;
107 break;
108 }
109 }
110 }
111 return FoundRC;
112 }
113
Chris Lattnercee994b2005-09-08 21:43:21 +0000114 const std::vector<MVT::ValueType> &getLegalValueTypes() const {
115 if (LegalValueTypes.empty()) ReadLegalValueTypes();
116 return LegalValueTypes;
117 }
118
119 /// isLegalValueType - Return true if the specified value type is natively
120 /// supported by the target (i.e. there are registers that directly hold it).
121 bool isLegalValueType(MVT::ValueType VT) const {
122 const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
123 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
124 if (LegalVTs[i] == VT) return true;
125 return false;
126 }
Chris Lattner2a86fab2004-08-21 04:05:00 +0000127
Chris Lattnerc860eca2004-08-01 05:04:00 +0000128 /// getInstructions - Return all of the instructions defined for this target.
129 ///
130 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
131 if (Instructions.empty()) ReadInstructions();
132 return Instructions;
133 }
134
Chris Lattnerfcffc982005-09-14 18:02:53 +0000135 CodeGenInstruction &getInstruction(const std::string &Name) const {
136 const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
137 assert(Insts.count(Name) && "Not an instruction!");
138 return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
139 }
140
Chris Lattnerc860eca2004-08-01 05:04:00 +0000141 typedef std::map<std::string,
142 CodeGenInstruction>::const_iterator inst_iterator;
143 inst_iterator inst_begin() const { return getInstructions().begin(); }
144 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner8af61dd2004-08-16 01:10:21 +0000145
Chris Lattner945e8652005-01-22 18:58:51 +0000146 /// getInstructionsByEnumValue - Return all of the instructions defined by the
147 /// target, ordered by their enum value.
148 void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
149 &NumberedInstructions);
150
151
Misha Brukman243ded52004-10-14 05:50:43 +0000152 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
153 ///
154 bool isLittleEndianEncoding() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000155};
156
Evan Cheng9b9567b2005-12-08 02:00:36 +0000157/// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
158/// tablegen class in TargetSelectionDAG.td
159class ComplexPattern {
Evan Chengc9a62002005-12-08 02:14:08 +0000160 MVT::ValueType Ty;
Evan Cheng9b9567b2005-12-08 02:00:36 +0000161 unsigned NumOperands;
162 std::string SelectFunc;
Evan Chengc9a62002005-12-08 02:14:08 +0000163 std::vector<Record*> RootNodes;
Evan Cheng9b9567b2005-12-08 02:00:36 +0000164public:
165 ComplexPattern() : NumOperands(0) {};
166 ComplexPattern(Record *R);
167
Evan Chengc9a62002005-12-08 02:14:08 +0000168 MVT::ValueType getValueType() const { return Ty; }
Evan Cheng9b9567b2005-12-08 02:00:36 +0000169 unsigned getNumOperands() const { return NumOperands; }
170 const std::string &getSelectFunc() const { return SelectFunc; }
Evan Chengc9a62002005-12-08 02:14:08 +0000171 const std::vector<Record*> &getRootNodes() const {
172 return RootNodes;
Evan Cheng9b9567b2005-12-08 02:00:36 +0000173 }
174};
175
Brian Gaeke960707c2003-11-11 22:41:34 +0000176} // End llvm namespace
177
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000178#endif