Chris Lattner | 803a5f6 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 1 | //===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===// |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 01d4582 | 2003-10-20 20:20:30 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 3060910 | 2007-12-29 20:37:13 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 01d4582 | 2003-10-20 20:20:30 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 803a5f6 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 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 |
| 12 | // place that needs to check it for validity. All of these classes throw |
| 13 | // exceptions on error conditions. |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Chris Lattner | 803a5f6 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 17 | #ifndef CODEGEN_TARGET_H |
| 18 | #define CODEGEN_TARGET_H |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 19 | |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 20 | #include "CodeGenRegisters.h" |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 21 | #include "CodeGenInstruction.h" |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 22 | #include <iosfwd> |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 23 | #include <map> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 24 | |
| 25 | namespace llvm { |
| 26 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 27 | class Record; |
| 28 | class RecordKeeper; |
Chris Lattner | 1fca5ff | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 29 | struct CodeGenRegister; |
Chris Lattner | 8850a1b | 2006-03-27 22:48:18 +0000 | [diff] [blame] | 30 | class CodeGenTarget; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 31 | |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 32 | // SelectionDAG node properties. |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame^] | 33 | // SDNPMemOperand: indicates that a node touches memory and therefore must |
| 34 | // have an associated memory operand that describes the access. |
Chris Lattner | c8478d8 | 2008-01-06 06:44:58 +0000 | [diff] [blame] | 35 | enum SDNP { |
| 36 | SDNPCommutative, |
| 37 | SDNPAssociative, |
| 38 | SDNPHasChain, |
| 39 | SDNPOutFlag, |
| 40 | SDNPInFlag, |
| 41 | SDNPOptInFlag, |
Chris Lattner | 710e995 | 2008-01-10 04:38:57 +0000 | [diff] [blame] | 42 | SDNPMayLoad, |
Chris Lattner | bc0b9f7 | 2008-01-10 05:39:30 +0000 | [diff] [blame] | 43 | SDNPMayStore, |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame^] | 44 | SDNPSideEffect, |
| 45 | SDNPMemOperand |
Chris Lattner | c8478d8 | 2008-01-06 06:44:58 +0000 | [diff] [blame] | 46 | }; |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 47 | |
Christopher Lamb | 8535624 | 2008-01-31 07:27:46 +0000 | [diff] [blame] | 48 | // ComplexPattern attributes. |
| 49 | enum CPAttr { CPAttrParentAsRoot }; |
| 50 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 51 | /// getValueType - Return the MVT::SimpleValueType that the specified TableGen |
| 52 | /// record corresponds to. |
| 53 | MVT::SimpleValueType getValueType(Record *Rec); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 54 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 55 | std::string getName(MVT::SimpleValueType T); |
| 56 | std::string getEnumName(MVT::SimpleValueType T); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 57 | |
Chris Lattner | 6cefb77 | 2008-01-05 22:25:12 +0000 | [diff] [blame] | 58 | /// getQualifiedName - Return the name of the specified record, with a |
| 59 | /// namespace qualifier if the record contains one. |
| 60 | std::string getQualifiedName(const Record *R); |
| 61 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 62 | /// CodeGenTarget - This class corresponds to the Target class in the .td files. |
| 63 | /// |
| 64 | class CodeGenTarget { |
| 65 | Record *TargetRec; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 66 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 67 | mutable std::map<std::string, CodeGenInstruction> Instructions; |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 68 | mutable std::vector<CodeGenRegister> Registers; |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 69 | mutable std::vector<CodeGenRegisterClass> RegisterClasses; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 70 | mutable std::vector<MVT::SimpleValueType> LegalValueTypes; |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 71 | void ReadRegisters() const; |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 72 | void ReadRegisterClasses() const; |
| 73 | void ReadInstructions() const; |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 74 | void ReadLegalValueTypes() const; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 75 | public: |
| 76 | CodeGenTarget(); |
| 77 | |
| 78 | Record *getTargetRecord() const { return TargetRec; } |
| 79 | const std::string &getName() const; |
| 80 | |
Chris Lattner | 175580c | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 81 | /// getInstructionSet - Return the InstructionSet object. |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 82 | /// |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 83 | Record *getInstructionSet() const; |
| 84 | |
Chris Lattner | 175580c | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 85 | /// getAsmWriter - Return the AssemblyWriter definition for this target. |
| 86 | /// |
| 87 | Record *getAsmWriter() const; |
| 88 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 89 | const std::vector<CodeGenRegister> &getRegisters() const { |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 90 | if (Registers.empty()) ReadRegisters(); |
| 91 | return Registers; |
| 92 | } |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 93 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 94 | const std::vector<CodeGenRegisterClass> &getRegisterClasses() const { |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 95 | if (RegisterClasses.empty()) ReadRegisterClasses(); |
| 96 | return RegisterClasses; |
| 97 | } |
Nate Begeman | ddb3954 | 2005-12-01 00:06:14 +0000 | [diff] [blame] | 98 | |
| 99 | const CodeGenRegisterClass &getRegisterClass(Record *R) const { |
| 100 | const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses(); |
| 101 | for (unsigned i = 0, e = RC.size(); i != e; ++i) |
| 102 | if (RC[i].TheDef == R) |
| 103 | return RC[i]; |
| 104 | assert(0 && "Didn't find the register class"); |
| 105 | abort(); |
| 106 | } |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 107 | |
| 108 | /// getRegisterClassForRegister - Find the register class that contains the |
| 109 | /// specified physical register. If there register exists in multiple |
| 110 | /// register classes or is not in a register class, return null. |
| 111 | const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const { |
| 112 | const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses(); |
| 113 | const CodeGenRegisterClass *FoundRC = 0; |
| 114 | for (unsigned i = 0, e = RCs.size(); i != e; ++i) { |
| 115 | const CodeGenRegisterClass &RC = RegisterClasses[i]; |
| 116 | for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) { |
| 117 | if (R == RC.Elements[ei]) { |
| 118 | if (FoundRC) return 0; // In multiple RC's |
| 119 | FoundRC = &RC; |
| 120 | break; |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | return FoundRC; |
| 125 | } |
Evan Cheng | 44a65fa | 2006-05-16 07:05:30 +0000 | [diff] [blame] | 126 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 127 | /// getRegisterVTs - Find the union of all possible SimpleValueTypes for the |
Evan Cheng | 44a65fa | 2006-05-16 07:05:30 +0000 | [diff] [blame] | 128 | /// specified physical register. |
| 129 | std::vector<unsigned char> getRegisterVTs(Record *R) const; |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 130 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 131 | const std::vector<MVT::SimpleValueType> &getLegalValueTypes() const { |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 132 | if (LegalValueTypes.empty()) ReadLegalValueTypes(); |
| 133 | return LegalValueTypes; |
| 134 | } |
| 135 | |
| 136 | /// isLegalValueType - Return true if the specified value type is natively |
| 137 | /// supported by the target (i.e. there are registers that directly hold it). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 138 | bool isLegalValueType(MVT::SimpleValueType VT) const { |
| 139 | const std::vector<MVT::SimpleValueType> &LegalVTs = getLegalValueTypes(); |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 140 | for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i) |
| 141 | if (LegalVTs[i] == VT) return true; |
| 142 | return false; |
| 143 | } |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 144 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 145 | /// getInstructions - Return all of the instructions defined for this target. |
| 146 | /// |
| 147 | const std::map<std::string, CodeGenInstruction> &getInstructions() const { |
| 148 | if (Instructions.empty()) ReadInstructions(); |
| 149 | return Instructions; |
| 150 | } |
Dan Gohman | ee4fa19 | 2008-04-03 00:02:49 +0000 | [diff] [blame] | 151 | std::map<std::string, CodeGenInstruction> &getInstructions() { |
| 152 | if (Instructions.empty()) ReadInstructions(); |
| 153 | return Instructions; |
| 154 | } |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 155 | |
Chris Lattner | a974b20 | 2005-09-14 18:02:53 +0000 | [diff] [blame] | 156 | CodeGenInstruction &getInstruction(const std::string &Name) const { |
| 157 | const std::map<std::string, CodeGenInstruction> &Insts = getInstructions(); |
| 158 | assert(Insts.count(Name) && "Not an instruction!"); |
| 159 | return const_cast<CodeGenInstruction&>(Insts.find(Name)->second); |
| 160 | } |
| 161 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 162 | typedef std::map<std::string, |
| 163 | CodeGenInstruction>::const_iterator inst_iterator; |
| 164 | inst_iterator inst_begin() const { return getInstructions().begin(); } |
| 165 | inst_iterator inst_end() const { return Instructions.end(); } |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 166 | |
Chris Lattner | d648867 | 2005-01-22 18:58:51 +0000 | [diff] [blame] | 167 | /// getInstructionsByEnumValue - Return all of the instructions defined by the |
| 168 | /// target, ordered by their enum value. |
| 169 | void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*> |
| 170 | &NumberedInstructions); |
| 171 | |
| 172 | |
Misha Brukman | 35e83cc | 2004-10-14 05:50:43 +0000 | [diff] [blame] | 173 | /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]? |
| 174 | /// |
| 175 | bool isLittleEndianEncoding() const; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 176 | }; |
| 177 | |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 178 | /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern |
| 179 | /// tablegen class in TargetSelectionDAG.td |
| 180 | class ComplexPattern { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 181 | MVT::SimpleValueType Ty; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 182 | unsigned NumOperands; |
| 183 | std::string SelectFunc; |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 184 | std::vector<Record*> RootNodes; |
Christopher Lamb | 8535624 | 2008-01-31 07:27:46 +0000 | [diff] [blame] | 185 | unsigned Properties; // Node properties |
| 186 | unsigned Attributes; // Pattern attributes |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 187 | public: |
| 188 | ComplexPattern() : NumOperands(0) {}; |
| 189 | ComplexPattern(Record *R); |
| 190 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 191 | MVT::SimpleValueType getValueType() const { return Ty; } |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 192 | unsigned getNumOperands() const { return NumOperands; } |
| 193 | const std::string &getSelectFunc() const { return SelectFunc; } |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 194 | const std::vector<Record*> &getRootNodes() const { |
| 195 | return RootNodes; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 196 | } |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 197 | bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } |
Christopher Lamb | 8535624 | 2008-01-31 07:27:46 +0000 | [diff] [blame] | 198 | bool hasAttribute(enum CPAttr Attr) const { return Attributes & (1 << Attr); } |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 199 | }; |
| 200 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 201 | } // End llvm namespace |
| 202 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 203 | #endif |