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. |
| 33 | enum SDNP { SDNPCommutative, SDNPAssociative, SDNPHasChain, |
| 34 | SDNPOutFlag, SDNPInFlag, SDNPOptInFlag }; |
| 35 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 36 | /// getValueType - Return the MVT::ValueType that the specified TableGen record |
| 37 | /// corresponds to. |
Dan Gohman | 3bf6e18 | 2007-07-13 20:16:50 +0000 | [diff] [blame] | 38 | MVT::ValueType getValueType(Record *Rec); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 39 | |
Chris Lattner | d3464c1 | 2003-08-07 23:15:21 +0000 | [diff] [blame] | 40 | std::string getName(MVT::ValueType T); |
Chris Lattner | b72fb7e | 2003-08-10 19:50:32 +0000 | [diff] [blame] | 41 | std::string getEnumName(MVT::ValueType T); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 42 | |
Chris Lattner | 6cefb77 | 2008-01-05 22:25:12 +0000 | [diff] [blame^] | 43 | /// getQualifiedName - Return the name of the specified record, with a |
| 44 | /// namespace qualifier if the record contains one. |
| 45 | std::string getQualifiedName(const Record *R); |
| 46 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 47 | /// CodeGenTarget - This class corresponds to the Target class in the .td files. |
| 48 | /// |
| 49 | class CodeGenTarget { |
| 50 | Record *TargetRec; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 51 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 52 | mutable std::map<std::string, CodeGenInstruction> Instructions; |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 53 | mutable std::vector<CodeGenRegister> Registers; |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 54 | mutable std::vector<CodeGenRegisterClass> RegisterClasses; |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 55 | mutable std::vector<MVT::ValueType> LegalValueTypes; |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 56 | void ReadRegisters() const; |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 57 | void ReadRegisterClasses() const; |
| 58 | void ReadInstructions() const; |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 59 | void ReadLegalValueTypes() const; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 60 | public: |
| 61 | CodeGenTarget(); |
| 62 | |
| 63 | Record *getTargetRecord() const { return TargetRec; } |
| 64 | const std::string &getName() const; |
| 65 | |
Chris Lattner | 175580c | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 66 | /// getInstructionSet - Return the InstructionSet object. |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 67 | /// |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 68 | Record *getInstructionSet() const; |
| 69 | |
Chris Lattner | 175580c | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 70 | /// getAsmWriter - Return the AssemblyWriter definition for this target. |
| 71 | /// |
| 72 | Record *getAsmWriter() const; |
| 73 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 74 | const std::vector<CodeGenRegister> &getRegisters() const { |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 75 | if (Registers.empty()) ReadRegisters(); |
| 76 | return Registers; |
| 77 | } |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 78 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 79 | const std::vector<CodeGenRegisterClass> &getRegisterClasses() const { |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 80 | if (RegisterClasses.empty()) ReadRegisterClasses(); |
| 81 | return RegisterClasses; |
| 82 | } |
Nate Begeman | ddb3954 | 2005-12-01 00:06:14 +0000 | [diff] [blame] | 83 | |
| 84 | const CodeGenRegisterClass &getRegisterClass(Record *R) const { |
| 85 | const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses(); |
| 86 | for (unsigned i = 0, e = RC.size(); i != e; ++i) |
| 87 | if (RC[i].TheDef == R) |
| 88 | return RC[i]; |
| 89 | assert(0 && "Didn't find the register class"); |
| 90 | abort(); |
| 91 | } |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 92 | |
| 93 | /// getRegisterClassForRegister - Find the register class that contains the |
| 94 | /// specified physical register. If there register exists in multiple |
| 95 | /// register classes or is not in a register class, return null. |
| 96 | const CodeGenRegisterClass *getRegisterClassForRegister(Record *R) const { |
| 97 | const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses(); |
| 98 | const CodeGenRegisterClass *FoundRC = 0; |
| 99 | for (unsigned i = 0, e = RCs.size(); i != e; ++i) { |
| 100 | const CodeGenRegisterClass &RC = RegisterClasses[i]; |
| 101 | for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) { |
| 102 | if (R == RC.Elements[ei]) { |
| 103 | if (FoundRC) return 0; // In multiple RC's |
| 104 | FoundRC = &RC; |
| 105 | break; |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | return FoundRC; |
| 110 | } |
Evan Cheng | 44a65fa | 2006-05-16 07:05:30 +0000 | [diff] [blame] | 111 | |
| 112 | /// getRegisterVTs - Find the union of all possible ValueTypes for the |
| 113 | /// specified physical register. |
| 114 | std::vector<unsigned char> getRegisterVTs(Record *R) const; |
Chris Lattner | 5c4736a | 2005-12-05 02:35:08 +0000 | [diff] [blame] | 115 | |
Chris Lattner | e9f4ba8 | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 116 | const std::vector<MVT::ValueType> &getLegalValueTypes() const { |
| 117 | if (LegalValueTypes.empty()) ReadLegalValueTypes(); |
| 118 | return LegalValueTypes; |
| 119 | } |
| 120 | |
| 121 | /// isLegalValueType - Return true if the specified value type is natively |
| 122 | /// supported by the target (i.e. there are registers that directly hold it). |
| 123 | bool isLegalValueType(MVT::ValueType VT) const { |
| 124 | const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes(); |
| 125 | for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i) |
| 126 | if (LegalVTs[i] == VT) return true; |
| 127 | return false; |
| 128 | } |
Chris Lattner | 056afef | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 129 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 130 | /// getInstructions - Return all of the instructions defined for this target. |
| 131 | /// |
| 132 | const std::map<std::string, CodeGenInstruction> &getInstructions() const { |
| 133 | if (Instructions.empty()) ReadInstructions(); |
| 134 | return Instructions; |
| 135 | } |
| 136 | |
Chris Lattner | a974b20 | 2005-09-14 18:02:53 +0000 | [diff] [blame] | 137 | CodeGenInstruction &getInstruction(const std::string &Name) const { |
| 138 | const std::map<std::string, CodeGenInstruction> &Insts = getInstructions(); |
| 139 | assert(Insts.count(Name) && "Not an instruction!"); |
| 140 | return const_cast<CodeGenInstruction&>(Insts.find(Name)->second); |
| 141 | } |
| 142 | |
Chris Lattner | ec35240 | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 143 | typedef std::map<std::string, |
| 144 | CodeGenInstruction>::const_iterator inst_iterator; |
| 145 | inst_iterator inst_begin() const { return getInstructions().begin(); } |
| 146 | inst_iterator inst_end() const { return Instructions.end(); } |
Chris Lattner | 2669311 | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 147 | |
Chris Lattner | d648867 | 2005-01-22 18:58:51 +0000 | [diff] [blame] | 148 | /// getInstructionsByEnumValue - Return all of the instructions defined by the |
| 149 | /// target, ordered by their enum value. |
| 150 | void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*> |
| 151 | &NumberedInstructions); |
| 152 | |
| 153 | |
Misha Brukman | 35e83cc | 2004-10-14 05:50:43 +0000 | [diff] [blame] | 154 | /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]? |
| 155 | /// |
| 156 | bool isLittleEndianEncoding() const; |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 157 | }; |
| 158 | |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 159 | /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern |
| 160 | /// tablegen class in TargetSelectionDAG.td |
| 161 | class ComplexPattern { |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 162 | MVT::ValueType Ty; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 163 | unsigned NumOperands; |
| 164 | std::string SelectFunc; |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 165 | std::vector<Record*> RootNodes; |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 166 | unsigned Properties; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 167 | public: |
| 168 | ComplexPattern() : NumOperands(0) {}; |
| 169 | ComplexPattern(Record *R); |
| 170 | |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 171 | MVT::ValueType getValueType() const { return Ty; } |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 172 | unsigned getNumOperands() const { return NumOperands; } |
| 173 | const std::string &getSelectFunc() const { return SelectFunc; } |
Evan Cheng | 3aa39f4 | 2005-12-08 02:14:08 +0000 | [diff] [blame] | 174 | const std::vector<Record*> &getRootNodes() const { |
| 175 | return RootNodes; |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 176 | } |
Evan Cheng | 94b3040 | 2006-10-11 21:02:01 +0000 | [diff] [blame] | 177 | bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } |
| 178 | |
Evan Cheng | 0fc7198 | 2005-12-08 02:00:36 +0000 | [diff] [blame] | 179 | }; |
| 180 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 181 | } // End llvm namespace |
| 182 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 183 | #endif |