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 | |
Daniel Dunbar | 1a55180 | 2009-07-03 00:10:29 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 21 | #include "CodeGenRegisters.h" |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 22 | #include "CodeGenInstruction.h" |
Dan Gohman | 8a17870 | 2009-04-13 15:24:11 +0000 | [diff] [blame] | 23 | #include <algorithm> |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 24 | #include <map> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 25 | |
| 26 | namespace llvm { |
| 27 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 28 | class Record; |
| 29 | class RecordKeeper; |
Chris Lattner | 1fca5ff | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 30 | struct CodeGenRegister; |
Chris Lattner | 8850a1b | 2006-03-27 22:48:18 +0000 | [diff] [blame] | 31 | class CodeGenTarget; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 32 | |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 33 | // SelectionDAG node properties. |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 34 | // SDNPMemOperand: indicates that a node touches memory and therefore must |
| 35 | // have an associated memory operand that describes the access. |
Chris Lattner | c8478d8 | 2008-01-06 06:44:58 +0000 | [diff] [blame] | 36 | enum SDNP { |
| 37 | SDNPCommutative, |
| 38 | SDNPAssociative, |
| 39 | SDNPHasChain, |
| 40 | SDNPOutFlag, |
| 41 | SDNPInFlag, |
| 42 | SDNPOptInFlag, |
Chris Lattner | 710e995 | 2008-01-10 04:38:57 +0000 | [diff] [blame] | 43 | SDNPMayLoad, |
Chris Lattner | bc0b9f7 | 2008-01-10 05:39:30 +0000 | [diff] [blame] | 44 | SDNPMayStore, |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 45 | SDNPSideEffect, |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 46 | SDNPMemOperand |
Chris Lattner | c8478d8 | 2008-01-06 06:44:58 +0000 | [diff] [blame] | 47 | }; |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 48 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 49 | /// getValueType - Return the MVT::SimpleValueType that the specified TableGen |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 50 | /// record corresponds to. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 51 | MVT::SimpleValueType getValueType(Record *Rec); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 52 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 53 | std::string getName(MVT::SimpleValueType T); |
| 54 | std::string getEnumName(MVT::SimpleValueType T); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 6cefb77 | 2008-01-05 22:25:12 +0000 | [diff] [blame] | 56 | /// getQualifiedName - Return the name of the specified record, with a |
| 57 | /// namespace qualifier if the record contains one. |
| 58 | std::string getQualifiedName(const Record *R); |
| 59 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 60 | /// CodeGenTarget - This class corresponds to the Target class in the .td files. |
| 61 | /// |
| 62 | class CodeGenTarget { |
| 63 | Record *TargetRec; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 64 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 65 | mutable std::map<std::string, CodeGenInstruction> Instructions; |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 66 | mutable std::vector<CodeGenRegister> Registers; |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 67 | mutable std::vector<CodeGenRegisterClass> RegisterClasses; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 68 | mutable std::vector<MVT::SimpleValueType> LegalValueTypes; |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 69 | void ReadRegisters() const; |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 70 | void ReadRegisterClasses() const; |
| 71 | void ReadInstructions() const; |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 72 | void ReadLegalValueTypes() const; |
Chris Lattner | f650278 | 2010-03-19 00:34:35 +0000 | [diff] [blame^] | 73 | |
| 74 | std::vector<const CodeGenInstruction*> InstrsByEnum; |
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 | |
Dan Gohman | 1e0ee4b | 2008-08-20 21:45:57 +0000 | [diff] [blame] | 81 | /// getInstNamespace - Return the target-specific instruction namespace. |
| 82 | /// |
| 83 | std::string getInstNamespace() const; |
| 84 | |
Chris Lattner | 175580c | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 85 | /// getInstructionSet - Return the InstructionSet object. |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 86 | /// |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 87 | Record *getInstructionSet() const; |
| 88 | |
Daniel Dunbar | 0e2771f | 2009-07-29 00:02:19 +0000 | [diff] [blame] | 89 | /// getAsmParser - Return the AssemblyParser definition for this target. |
| 90 | /// |
| 91 | Record *getAsmParser() const; |
| 92 | |
Chris Lattner | 175580c | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 93 | /// getAsmWriter - Return the AssemblyWriter definition for this target. |
| 94 | /// |
| 95 | Record *getAsmWriter() const; |
| 96 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 97 | const std::vector<CodeGenRegister> &getRegisters() const { |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 98 | if (Registers.empty()) ReadRegisters(); |
| 99 | return Registers; |
| 100 | } |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 101 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 102 | const std::vector<CodeGenRegisterClass> &getRegisterClasses() const { |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 103 | if (RegisterClasses.empty()) ReadRegisterClasses(); |
| 104 | return RegisterClasses; |
| 105 | } |
Nate Begeman | ddb3954 | 2005-12-01 00:06:14 +0000 | [diff] [blame] | 106 | |
| 107 | const CodeGenRegisterClass &getRegisterClass(Record *R) const { |
| 108 | const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses(); |
| 109 | for (unsigned i = 0, e = RC.size(); i != e; ++i) |
| 110 | if (RC[i].TheDef == R) |
| 111 | return RC[i]; |
| 112 | assert(0 && "Didn't find the register class"); |
| 113 | abort(); |
| 114 | } |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 115 | |
| 116 | /// getRegisterClassForRegister - Find the register class that contains the |
Dan Gohman | 8a17870 | 2009-04-13 15:24:11 +0000 | [diff] [blame] | 117 | /// specified physical register. If the register is not in a register |
| 118 | /// class, return null. If the register is in multiple classes, and the |
| 119 | /// classes have a superset-subset relationship and the same set of |
| 120 | /// types, return the superclass. Otherwise return null. |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 121 | const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const { |
| 122 | const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses(); |
| 123 | const CodeGenRegisterClass *FoundRC = 0; |
| 124 | for (unsigned i = 0, e = RCs.size(); i != e; ++i) { |
| 125 | const CodeGenRegisterClass &RC = RegisterClasses[i]; |
| 126 | for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) { |
Dan Gohman | 8a17870 | 2009-04-13 15:24:11 +0000 | [diff] [blame] | 127 | if (R != RC.Elements[ei]) |
| 128 | continue; |
| 129 | |
| 130 | // If a register's classes have different types, return null. |
| 131 | if (FoundRC && RC.getValueTypes() != FoundRC->getValueTypes()) |
| 132 | return 0; |
| 133 | |
| 134 | // If this is the first class that contains the register, |
| 135 | // make a note of it and go on to the next class. |
| 136 | if (!FoundRC) { |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 137 | FoundRC = &RC; |
| 138 | break; |
| 139 | } |
Dan Gohman | 8a17870 | 2009-04-13 15:24:11 +0000 | [diff] [blame] | 140 | |
| 141 | std::vector<Record *> Elements(RC.Elements); |
| 142 | std::vector<Record *> FoundElements(FoundRC->Elements); |
| 143 | std::sort(Elements.begin(), Elements.end()); |
| 144 | std::sort(FoundElements.begin(), FoundElements.end()); |
| 145 | |
| 146 | // Check to see if the previously found class that contains |
| 147 | // the register is a subclass of the current class. If so, |
| 148 | // prefer the superclass. |
| 149 | if (std::includes(Elements.begin(), Elements.end(), |
| 150 | FoundElements.begin(), FoundElements.end())) { |
| 151 | FoundRC = &RC; |
| 152 | break; |
| 153 | } |
| 154 | |
| 155 | // Check to see if the previously found class that contains |
| 156 | // the register is a superclass of the current class. If so, |
| 157 | // prefer the superclass. |
| 158 | if (std::includes(FoundElements.begin(), FoundElements.end(), |
| 159 | Elements.begin(), Elements.end())) |
| 160 | break; |
| 161 | |
| 162 | // Multiple classes, and neither is a superclass of the other. |
| 163 | // Return null. |
| 164 | return 0; |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | return FoundRC; |
| 168 | } |
Evan Cheng | 44a65fa | 2006-05-16 07:05:30 +0000 | [diff] [blame] | 169 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 170 | /// getRegisterVTs - Find the union of all possible SimpleValueTypes for the |
Evan Cheng | 44a65fa | 2006-05-16 07:05:30 +0000 | [diff] [blame] | 171 | /// specified physical register. |
Chris Lattner | 2cacec5 | 2010-03-15 06:00:16 +0000 | [diff] [blame] | 172 | std::vector<MVT::SimpleValueType> getRegisterVTs(Record *R) const; |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 173 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 174 | const std::vector<MVT::SimpleValueType> &getLegalValueTypes() const { |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 175 | if (LegalValueTypes.empty()) ReadLegalValueTypes(); |
| 176 | return LegalValueTypes; |
| 177 | } |
| 178 | |
| 179 | /// isLegalValueType - Return true if the specified value type is natively |
| 180 | /// supported by the target (i.e. there are registers that directly hold it). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 181 | bool isLegalValueType(MVT::SimpleValueType VT) const { |
| 182 | const std::vector<MVT::SimpleValueType> &LegalVTs = getLegalValueTypes(); |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 183 | for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i) |
| 184 | if (LegalVTs[i] == VT) return true; |
| 185 | return false; |
| 186 | } |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 187 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 188 | /// getInstructions - Return all of the instructions defined for this target. |
| 189 | /// |
Chris Lattner | b61e09d | 2010-03-19 00:18:23 +0000 | [diff] [blame] | 190 | private: |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 191 | const std::map<std::string, CodeGenInstruction> &getInstructions() const { |
| 192 | if (Instructions.empty()) ReadInstructions(); |
| 193 | return Instructions; |
| 194 | } |
Dan Gohman | ee4fa19 | 2008-04-03 00:02:49 +0000 | [diff] [blame] | 195 | std::map<std::string, CodeGenInstruction> &getInstructions() { |
| 196 | if (Instructions.empty()) ReadInstructions(); |
| 197 | return Instructions; |
| 198 | } |
Chris Lattner | a974b20 | 2005-09-14 18:02:53 +0000 | [diff] [blame] | 199 | CodeGenInstruction &getInstruction(const std::string &Name) const { |
| 200 | const std::map<std::string, CodeGenInstruction> &Insts = getInstructions(); |
| 201 | assert(Insts.count(Name) && "Not an instruction!"); |
| 202 | return const_cast<CodeGenInstruction&>(Insts.find(Name)->second); |
| 203 | } |
Chris Lattner | f30187a | 2010-03-19 00:07:20 +0000 | [diff] [blame] | 204 | public: |
| 205 | |
| 206 | CodeGenInstruction &getInstruction(const Record *InstRec) const; |
Chris Lattner | a974b20 | 2005-09-14 18:02:53 +0000 | [diff] [blame] | 207 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 208 | typedef std::map<std::string, |
| 209 | CodeGenInstruction>::const_iterator inst_iterator; |
| 210 | inst_iterator inst_begin() const { return getInstructions().begin(); } |
| 211 | inst_iterator inst_end() const { return Instructions.end(); } |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 212 | |
Chris Lattner | d648867 | 2005-01-22 18:58:51 +0000 | [diff] [blame] | 213 | /// getInstructionsByEnumValue - Return all of the instructions defined by the |
| 214 | /// target, ordered by their enum value. |
Chris Lattner | f650278 | 2010-03-19 00:34:35 +0000 | [diff] [blame^] | 215 | const std::vector<const CodeGenInstruction*> &getInstructionsByEnumValue() { |
| 216 | if (InstrsByEnum.empty()) ComputeInstrsByEnum(); |
| 217 | return InstrsByEnum; |
| 218 | } |
Chris Lattner | d648867 | 2005-01-22 18:58:51 +0000 | [diff] [blame] | 219 | |
Dale Johannesen | 874ae25 | 2009-06-02 03:12:52 +0000 | [diff] [blame] | 220 | |
Misha Brukman | 35e83cc | 2004-10-14 05:50:43 +0000 | [diff] [blame] | 221 | /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]? |
| 222 | /// |
| 223 | bool isLittleEndianEncoding() const; |
Chris Lattner | f650278 | 2010-03-19 00:34:35 +0000 | [diff] [blame^] | 224 | |
| 225 | private: |
| 226 | void ComputeInstrsByEnum(); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 227 | }; |
| 228 | |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 229 | /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern |
| 230 | /// tablegen class in TargetSelectionDAG.td |
| 231 | class ComplexPattern { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 232 | MVT::SimpleValueType Ty; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 233 | unsigned NumOperands; |
| 234 | std::string SelectFunc; |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 235 | std::vector<Record*> RootNodes; |
Christopher Lamb | 8535624 | 2008-01-31 07:27:46 +0000 | [diff] [blame] | 236 | unsigned Properties; // Node properties |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 237 | public: |
Chris Lattner | c128b3e | 2009-11-06 06:33:01 +0000 | [diff] [blame] | 238 | ComplexPattern() : NumOperands(0) {} |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 239 | ComplexPattern(Record *R); |
| 240 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 241 | MVT::SimpleValueType getValueType() const { return Ty; } |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 242 | unsigned getNumOperands() const { return NumOperands; } |
| 243 | const std::string &getSelectFunc() const { return SelectFunc; } |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 244 | const std::vector<Record*> &getRootNodes() const { |
| 245 | return RootNodes; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 246 | } |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 247 | bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 248 | }; |
| 249 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 250 | } // End llvm namespace |
| 251 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 252 | #endif |