Chris Lattner | fce9603 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 1 | //===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===// |
Misha Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | d303203 | 2003-10-20 20:20:30 +0000 | [diff] [blame] | 3 | // 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 Brukman | 650ba8e | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | d303203 | 2003-10-20 20:20:30 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | fce9603 | 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 | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Chris Lattner | fce9603 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 17 | #ifndef CODEGEN_TARGET_H |
| 18 | #define CODEGEN_TARGET_H |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 19 | |
Chris Lattner | 8af61dd | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 20 | #include "CodeGenRegisters.h" |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 21 | #include "CodeGenInstruction.h" |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 22 | #include <iosfwd> |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 23 | #include <map> |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 24 | |
| 25 | namespace llvm { |
| 26 | |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 27 | class Record; |
| 28 | class RecordKeeper; |
Chris Lattner | 7dfc2d2 | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 29 | struct CodeGenRegister; |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 30 | |
| 31 | /// getValueType - Return the MVT::ValueType that the specified TableGen record |
| 32 | /// corresponds to. |
| 33 | MVT::ValueType getValueType(Record *Rec); |
| 34 | |
| 35 | std::ostream &operator<<(std::ostream &OS, MVT::ValueType T); |
| 36 | std::string getName(MVT::ValueType T); |
| 37 | std::string getEnumName(MVT::ValueType T); |
| 38 | |
| 39 | |
| 40 | /// CodeGenTarget - This class corresponds to the Target class in the .td files. |
| 41 | /// |
| 42 | class CodeGenTarget { |
| 43 | Record *TargetRec; |
| 44 | std::vector<Record*> CalleeSavedRegisters; |
| 45 | MVT::ValueType PointerType; |
| 46 | |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 47 | mutable std::map<std::string, CodeGenInstruction> Instructions; |
Chris Lattner | 8af61dd | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 48 | mutable std::vector<CodeGenRegister> Registers; |
Chris Lattner | 2a86fab | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 49 | mutable std::vector<CodeGenRegisterClass> RegisterClasses; |
Chris Lattner | cee994b | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 50 | mutable std::vector<MVT::ValueType> LegalValueTypes; |
Chris Lattner | 8af61dd | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 51 | void ReadRegisters() const; |
Chris Lattner | 2a86fab | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 52 | void ReadRegisterClasses() const; |
| 53 | void ReadInstructions() const; |
Chris Lattner | cee994b | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 54 | void ReadLegalValueTypes() const; |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 55 | public: |
| 56 | CodeGenTarget(); |
| 57 | |
| 58 | Record *getTargetRecord() const { return TargetRec; } |
| 59 | const std::string &getName() const; |
| 60 | |
| 61 | const std::vector<Record*> &getCalleeSavedRegisters() const { |
| 62 | return CalleeSavedRegisters; |
| 63 | } |
| 64 | |
| 65 | MVT::ValueType getPointerType() const { return PointerType; } |
| 66 | |
Chris Lattner | 6ffa501 | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 67 | /// getInstructionSet - Return the InstructionSet object. |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 68 | /// |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 69 | Record *getInstructionSet() const; |
| 70 | |
Chris Lattner | 6ffa501 | 2004-08-14 22:50:53 +0000 | [diff] [blame] | 71 | /// getAsmWriter - Return the AssemblyWriter definition for this target. |
| 72 | /// |
| 73 | Record *getAsmWriter() const; |
| 74 | |
Chris Lattner | cee994b | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 75 | const std::vector<CodeGenRegister> &getRegisters() const { |
Chris Lattner | 8af61dd | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 76 | if (Registers.empty()) ReadRegisters(); |
| 77 | return Registers; |
| 78 | } |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 79 | |
Chris Lattner | cee994b | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 80 | const std::vector<CodeGenRegisterClass> &getRegisterClasses() const { |
Chris Lattner | 2a86fab | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 81 | if (RegisterClasses.empty()) ReadRegisterClasses(); |
| 82 | return RegisterClasses; |
| 83 | } |
Nate Begeman | cdf2c67 | 2005-12-01 00:06:14 +0000 | [diff] [blame] | 84 | |
| 85 | const CodeGenRegisterClass &getRegisterClass(Record *R) const { |
| 86 | const std::vector<CodeGenRegisterClass> &RC = getRegisterClasses(); |
| 87 | for (unsigned i = 0, e = RC.size(); i != e; ++i) |
| 88 | if (RC[i].TheDef == R) |
| 89 | return RC[i]; |
| 90 | assert(0 && "Didn't find the register class"); |
| 91 | abort(); |
| 92 | } |
Chris Lattner | 2a86fab | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 93 | |
Chris Lattner | cee994b | 2005-09-08 21:43:21 +0000 | [diff] [blame] | 94 | const std::vector<MVT::ValueType> &getLegalValueTypes() const { |
| 95 | if (LegalValueTypes.empty()) ReadLegalValueTypes(); |
| 96 | return LegalValueTypes; |
| 97 | } |
| 98 | |
| 99 | /// isLegalValueType - Return true if the specified value type is natively |
| 100 | /// supported by the target (i.e. there are registers that directly hold it). |
| 101 | bool isLegalValueType(MVT::ValueType VT) const { |
| 102 | const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes(); |
| 103 | for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i) |
| 104 | if (LegalVTs[i] == VT) return true; |
| 105 | return false; |
| 106 | } |
Chris Lattner | 2a86fab | 2004-08-21 04:05:00 +0000 | [diff] [blame] | 107 | |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 108 | /// getInstructions - Return all of the instructions defined for this target. |
| 109 | /// |
| 110 | const std::map<std::string, CodeGenInstruction> &getInstructions() const { |
| 111 | if (Instructions.empty()) ReadInstructions(); |
| 112 | return Instructions; |
| 113 | } |
| 114 | |
Chris Lattner | fcffc98 | 2005-09-14 18:02:53 +0000 | [diff] [blame] | 115 | CodeGenInstruction &getInstruction(const std::string &Name) const { |
| 116 | const std::map<std::string, CodeGenInstruction> &Insts = getInstructions(); |
| 117 | assert(Insts.count(Name) && "Not an instruction!"); |
| 118 | return const_cast<CodeGenInstruction&>(Insts.find(Name)->second); |
| 119 | } |
| 120 | |
Chris Lattner | c860eca | 2004-08-01 05:04:00 +0000 | [diff] [blame] | 121 | typedef std::map<std::string, |
| 122 | CodeGenInstruction>::const_iterator inst_iterator; |
| 123 | inst_iterator inst_begin() const { return getInstructions().begin(); } |
| 124 | inst_iterator inst_end() const { return Instructions.end(); } |
Chris Lattner | 8af61dd | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 125 | |
Chris Lattner | 945e865 | 2005-01-22 18:58:51 +0000 | [diff] [blame] | 126 | /// getInstructionsByEnumValue - Return all of the instructions defined by the |
| 127 | /// target, ordered by their enum value. |
| 128 | void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*> |
| 129 | &NumberedInstructions); |
| 130 | |
| 131 | |
Chris Lattner | 8af61dd | 2004-08-16 01:10:21 +0000 | [diff] [blame] | 132 | /// getPHIInstruction - Return the designated PHI instruction. |
| 133 | /// |
| 134 | const CodeGenInstruction &getPHIInstruction() const; |
Misha Brukman | 243ded5 | 2004-10-14 05:50:43 +0000 | [diff] [blame] | 135 | |
| 136 | /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]? |
| 137 | /// |
| 138 | bool isLittleEndianEncoding() const; |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 139 | }; |
| 140 | |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 141 | } // End llvm namespace |
| 142 | |
Chris Lattner | f5bd1b7 | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 143 | #endif |