Chris Lattner | ee6b5f6 | 2003-07-29 23:07:13 +0000 | [diff] [blame] | 1 | //===- Target.td - Target Independent TableGen interface --------*- C++ -*-===// |
| 2 | // |
| 3 | // This file defines the target-independent interfaces which should be |
| 4 | // implemented by each target which is using a TableGen based code generator. |
| 5 | // |
Misha Brukman | 01c1638 | 2003-05-29 18:48:17 +0000 | [diff] [blame] | 6 | //===----------------------------------------------------------------------===// |
| 7 | |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 8 | |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | // |
Chris Lattner | b3aa319 | 2003-07-28 04:24:59 +0000 | [diff] [blame] | 11 | // Value types - These values correspond to the register types defined in the |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 12 | // ValueTypes.h file. If you update anything here, you must update it there as |
| 13 | // well! |
Chris Lattner | 0ad1361 | 2003-07-30 22:16:41 +0000 | [diff] [blame] | 14 | // |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 15 | class ValueType<int size, int value> { |
| 16 | string Namespace = "MVT"; |
| 17 | int Size = size; |
| 18 | int Value = value; |
| 19 | } |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 20 | |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 21 | def i1 : ValueType<1 , 1>; // One bit boolean value |
| 22 | def i8 : ValueType<8 , 2>; // 8-bit integer value |
| 23 | def i16 : ValueType<16 , 3>; // 16-bit integer value |
| 24 | def i32 : ValueType<32 , 4>; // 32-bit integer value |
| 25 | def i64 : ValueType<64 , 5>; // 64-bit integer value |
| 26 | def i128 : ValueType<128, 5>; // 128-bit integer value |
| 27 | def f32 : ValueType<32 , 7>; // 32-bit floating point value |
| 28 | def f64 : ValueType<64 , 8>; // 64-bit floating point value |
| 29 | def f80 : ValueType<80 , 9>; // 80-bit floating point value |
| 30 | def f128 : ValueType<128, 9>; // 128-bit floating point value |
| 31 | def isVoid : ValueType<0 , 11>; // Produces no value |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 32 | |
| 33 | //===----------------------------------------------------------------------===// |
| 34 | // Register file description - These classes are used to fill in the target |
| 35 | // description classes in llvm/Target/MRegisterInfo.h |
| 36 | |
| 37 | |
| 38 | // Register - You should define one instance of this class for each register in |
| 39 | // the target machine. |
| 40 | // |
Misha Brukman | 01c1638 | 2003-05-29 18:48:17 +0000 | [diff] [blame] | 41 | class Register { |
| 42 | string Namespace = ""; |
Chris Lattner | 76bf868 | 2003-08-03 22:12:37 +0000 | [diff] [blame] | 43 | string Name = ""; |
| 44 | } |
| 45 | |
| 46 | // NamedReg - If the name for the 'def' of the register should not become the |
| 47 | // "name" of the register, you can use this to specify a custom name instead. |
| 48 | // |
| 49 | class NamedReg<string n> : Register { |
Chris Lattner | 60e81db | 2003-08-04 04:58:12 +0000 | [diff] [blame] | 50 | let Name = n; |
Misha Brukman | 01c1638 | 2003-05-29 18:48:17 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 53 | // RegisterAliases - You should define instances of this class to indicate which |
| 54 | // registers in the register file are aliased together. This allows the code |
| 55 | // generator to be careful not to put two values with overlapping live ranges |
| 56 | // into registers which alias. |
| 57 | // |
| 58 | class RegisterAliases<Register reg, list<Register> aliases> { |
| 59 | Register Reg = reg; |
| 60 | list<Register> Aliases = aliases; |
| 61 | } |
| 62 | |
| 63 | // RegisterClass - Now that all of the registers are defined, and aliases |
| 64 | // between registers are defined, specify which registers belong to which |
| 65 | // register classes. This also defines the default allocation order of |
| 66 | // registers by register allocators. |
| 67 | // |
| 68 | class RegisterClass<ValueType regType, int alignment, list<Register> regList> { |
Chris Lattner | 0ad1361 | 2003-07-30 22:16:41 +0000 | [diff] [blame] | 69 | // RegType - Specify the ValueType of the registers in this register class. |
| 70 | // Note that all registers in a register class must have the same ValueType. |
| 71 | // |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 72 | ValueType RegType = regType; |
Chris Lattner | 0ad1361 | 2003-07-30 22:16:41 +0000 | [diff] [blame] | 73 | |
| 74 | // Alignment - Specify the alignment required of the registers when they are |
| 75 | // stored or loaded to memory. |
| 76 | // |
Chris Lattner | de04dd7 | 2003-08-01 05:18:03 +0000 | [diff] [blame] | 77 | int Size = RegType.Size; |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 78 | int Alignment = alignment; |
Chris Lattner | 0ad1361 | 2003-07-30 22:16:41 +0000 | [diff] [blame] | 79 | |
| 80 | // MemberList - Specify which registers are in this class. If the |
| 81 | // allocation_order_* method are not specified, this also defines the order of |
| 82 | // allocation used by the register allocator. |
| 83 | // |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 84 | list<Register> MemberList = regList; |
Chris Lattner | 0ad1361 | 2003-07-30 22:16:41 +0000 | [diff] [blame] | 85 | |
Chris Lattner | be84e3c | 2003-08-01 22:21:49 +0000 | [diff] [blame] | 86 | // Methods - This member can be used to insert arbitrary code into a generated |
| 87 | // register class. The normal usage of this is to overload virtual methods. |
| 88 | code Methods = [{}]; |
Chris Lattner | b6ef5c8 | 2003-08-15 04:35:14 +0000 | [diff] [blame] | 89 | |
| 90 | // isDummyClass - If this is set to true, this register class is not really |
| 91 | // part of the target, it is just used for other purposes. |
| 92 | bit isDummyClass = 0; |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | |
| 96 | //===----------------------------------------------------------------------===// |
Chris Lattner | a5100d9 | 2003-08-03 18:18:31 +0000 | [diff] [blame] | 97 | // Instruction set description - These classes correspond to the C++ classes in |
| 98 | // the Target/TargetInstrInfo.h file. |
Chris Lattner | 7c28952 | 2003-07-30 05:50:12 +0000 | [diff] [blame] | 99 | // |
| 100 | |
Misha Brukman | 01c1638 | 2003-05-29 18:48:17 +0000 | [diff] [blame] | 101 | class Instruction { |
| 102 | string Name; // The opcode string for this instruction |
| 103 | string Namespace = ""; |
| 104 | |
| 105 | list<Register> Uses = []; // Default to using no non-operand registers |
| 106 | list<Register> Defs = []; // Default to modifying no non-operand registers |
| 107 | |
| 108 | // These bits capture information about the high-level semantics of the |
| 109 | // instruction. |
Chris Lattner | 84c40c1 | 2003-07-29 23:02:49 +0000 | [diff] [blame] | 110 | bit isReturn = 0; // Is this instruction a return instruction? |
| 111 | bit isBranch = 0; // Is this instruction a branch instruction? |
| 112 | bit isCall = 0; // Is this instruction a call instruction? |
| 113 | bit isTwoAddress = 0; // Is this a two address instruction? |
| 114 | bit isTerminator = 0; // Is this part of the terminator for a basic block? |
Chris Lattner | 244883e | 2003-08-04 21:07:37 +0000 | [diff] [blame] | 115 | |
| 116 | // Pattern - Set to the DAG pattern for this instruction, if we know of one, |
| 117 | // otherwise, uninitialized. |
| 118 | dag Pattern; |
Chris Lattner | a5100d9 | 2003-08-03 18:18:31 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 121 | class Expander<dag pattern, list<dag> result> { |
| 122 | dag Pattern = pattern; |
| 123 | list<dag> Result = result; |
| 124 | } |
| 125 | |
| 126 | |
Chris Lattner | a5100d9 | 2003-08-03 18:18:31 +0000 | [diff] [blame] | 127 | // InstrInfo - This class should only be instantiated once to provide parameters |
| 128 | // which are global to the the target machine. |
| 129 | // |
| 130 | class InstrInfo { |
| 131 | Instruction PHIInst; |
Chris Lattner | 34a2068 | 2003-08-03 21:52:28 +0000 | [diff] [blame] | 132 | |
| 133 | // If the target wants to associate some target-specific information with each |
| 134 | // instruction, it should provide these two lists to indicate how to assemble |
| 135 | // the target specific information into the 32 bits available. |
| 136 | // |
| 137 | list<string> TSFlagsFields = []; |
| 138 | list<int> TSFlagsShifts = []; |
Chris Lattner | a5100d9 | 2003-08-03 18:18:31 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | |
| 142 | //===----------------------------------------------------------------------===// |
| 143 | // Target - This class contains the "global" target information |
| 144 | // |
| 145 | class Target { |
| 146 | // CalleeSavedRegisters - As you might guess, this is a list of the callee |
| 147 | // saved registers for a target. |
| 148 | list<Register> CalleeSavedRegisters = []; |
| 149 | |
| 150 | // PointerType - Specify the value type to be used to represent pointers in |
| 151 | // this target. Typically this is an i32 or i64 type. |
| 152 | ValueType PointerType; |
| 153 | |
| 154 | // InstructionSet - Instruction set description for this target |
| 155 | InstrInfo InstructionSet; |
Misha Brukman | 01c1638 | 2003-05-29 18:48:17 +0000 | [diff] [blame] | 156 | } |
Chris Lattner | 244883e | 2003-08-04 21:07:37 +0000 | [diff] [blame] | 157 | |
| 158 | |
| 159 | //===----------------------------------------------------------------------===// |
| 160 | // DAG node definitions used by the instruction selector... |
| 161 | // |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 162 | class DagNodeValType; |
Chris Lattner | b6ef5c8 | 2003-08-15 04:35:14 +0000 | [diff] [blame] | 163 | def DNVT_any : DagNodeValType; // No constraint on tree node |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 164 | def DNVT_void : DagNodeValType; // Tree node always returns void |
| 165 | def DNVT_val : DagNodeValType; // A non-void type |
| 166 | def DNVT_arg0 : DagNodeValType; // Tree node returns same type as Arg0 |
Chris Lattner | c0bb13d | 2003-08-11 21:29:40 +0000 | [diff] [blame] | 167 | def DNVT_arg1 : DagNodeValType; // Tree node returns same type as Arg1 |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 168 | def DNVT_ptr : DagNodeValType; // The target pointer type |
Chris Lattner | c12a614 | 2003-08-12 04:28:21 +0000 | [diff] [blame] | 169 | def DNVT_i8 : DagNodeValType; // Always have an i8 value |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 170 | |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 171 | class DagNode<DagNodeValType ret, list<DagNodeValType> args> { |
| 172 | DagNodeValType RetType = ret; |
| 173 | list<DagNodeValType> ArgTypes = args; |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 174 | string EnumName = ?; |
| 175 | } |
| 176 | |
| 177 | // BuiltinDagNodes are built into the instruction selector and correspond to |
| 178 | // enum values. |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 179 | class BuiltinDagNode<DagNodeValType Ret, list<DagNodeValType> Args, |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 180 | string Ename> : DagNode<Ret, Args> { |
| 181 | let EnumName = Ename; |
| 182 | } |
| 183 | |
| 184 | // Magic nodes... |
Chris Lattner | b6ef5c8 | 2003-08-15 04:35:14 +0000 | [diff] [blame] | 185 | def Void : RegisterClass<isVoid,0,[]> { let isDummyClass = 1; } |
| 186 | def set : DagNode<DNVT_void, [DNVT_val, DNVT_arg0]>; |
| 187 | def chain : BuiltinDagNode<DNVT_void, [DNVT_void, DNVT_void], "ChainNode">; |
| 188 | def blockchain : BuiltinDagNode<DNVT_void, [DNVT_void, DNVT_void], |
| 189 | "BlockChainNode">; |
| 190 | def ChainExpander : Expander<(chain Void, Void), []>; |
| 191 | def BlockChainExpander : Expander<(blockchain Void, Void), []>; |
| 192 | |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 193 | |
| 194 | // Terminals... |
Chris Lattner | c847796 | 2003-08-12 04:17:29 +0000 | [diff] [blame] | 195 | def imm : BuiltinDagNode<DNVT_val, [], "Constant">; |
| 196 | def frameidx : BuiltinDagNode<DNVT_ptr, [], "FrameIndex">; |
| 197 | def basicblock : BuiltinDagNode<DNVT_ptr, [], "BasicBlock">; |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 198 | |
| 199 | // Arithmetic... |
Chris Lattner | c0bb13d | 2003-08-11 21:29:40 +0000 | [diff] [blame] | 200 | def plus : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "Plus">; |
| 201 | def minus : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "Minus">; |
| 202 | def times : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "Times">; |
| 203 | def sdiv : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "SDiv">; |
| 204 | def udiv : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "UDiv">; |
| 205 | def srem : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "SRem">; |
| 206 | def urem : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "URem">; |
| 207 | def and : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "And">; |
| 208 | def or : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "Or">; |
| 209 | def xor : BuiltinDagNode<DNVT_arg0, [DNVT_arg1, DNVT_arg0], "Xor">; |
Chris Lattner | 622003f | 2003-08-11 15:23:05 +0000 | [diff] [blame] | 210 | |
Chris Lattner | c847796 | 2003-08-12 04:17:29 +0000 | [diff] [blame] | 211 | // Comparisons... |
Chris Lattner | c12a614 | 2003-08-12 04:28:21 +0000 | [diff] [blame] | 212 | def seteq : BuiltinDagNode<DNVT_i8 , [DNVT_arg1, DNVT_arg0], "SetEQ">; |
| 213 | def setne : BuiltinDagNode<DNVT_i8 , [DNVT_arg1, DNVT_arg0], "SetNE">; |
| 214 | def setlt : BuiltinDagNode<DNVT_i8 , [DNVT_arg1, DNVT_arg0], "SetLT">; |
| 215 | def setle : BuiltinDagNode<DNVT_i8 , [DNVT_arg1, DNVT_arg0], "SetLE">; |
| 216 | def setgt : BuiltinDagNode<DNVT_i8 , [DNVT_arg1, DNVT_arg0], "SetGT">; |
| 217 | def setge : BuiltinDagNode<DNVT_i8 , [DNVT_arg1, DNVT_arg0], "SetGE">; |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 218 | |
Chris Lattner | c0bb13d | 2003-08-11 21:29:40 +0000 | [diff] [blame] | 219 | def load : BuiltinDagNode<DNVT_val, [DNVT_ptr], "Load">; |
| 220 | //def store : BuiltinDagNode<DNVT_Void, [DNVT_ptr, DNVT_val]>; |
Chris Lattner | 3e77d6e | 2003-08-06 15:31:02 +0000 | [diff] [blame] | 221 | |
| 222 | // Other... |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 223 | def ret : BuiltinDagNode<DNVT_void, [DNVT_val], "Ret">; |
| 224 | def retvoid : BuiltinDagNode<DNVT_void, [], "RetVoid">; |
Chris Lattner | c847796 | 2003-08-12 04:17:29 +0000 | [diff] [blame] | 225 | def br : BuiltinDagNode<DNVT_void, [DNVT_ptr], "Br">; |
Chris Lattner | c12a614 | 2003-08-12 04:28:21 +0000 | [diff] [blame] | 226 | def brcond : BuiltinDagNode<DNVT_void, [DNVT_i8, DNVT_ptr, DNVT_ptr], |
Chris Lattner | c847796 | 2003-08-12 04:17:29 +0000 | [diff] [blame] | 227 | "BrCond">; |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 228 | |
Chris Lattner | b6ef5c8 | 2003-08-15 04:35:14 +0000 | [diff] [blame] | 229 | def unspec1 : BuiltinDagNode<DNVT_any , [DNVT_val], "Unspec1">; |
| 230 | def unspec2 : BuiltinDagNode<DNVT_any , [DNVT_val, DNVT_val], "Unspec2">; |
| 231 | |
Chris Lattner | ec4f523 | 2003-08-07 13:52:22 +0000 | [diff] [blame] | 232 | //===----------------------------------------------------------------------===// |
| 233 | // DAG nonterminals definitions used by the instruction selector... |
| 234 | // |
| 235 | class Nonterminal<dag pattern> { |
| 236 | dag Pattern = pattern; |
| 237 | bit BuiltIn = 0; |
| 238 | } |
| 239 | |