Add 64-bit extload patterns.
[oota-llvm.git] / lib / Target / Mips / Mips64InstrInfo.td
1 //===- Mips64InstrInfo.td - Mips64 Instruction Information -*- tablegen -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes Mips64 instructions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 // Mips Operand, Complex Patterns and Transformations Definitions.
16 //===----------------------------------------------------------------------===//
17
18 // Instruction operand types
19 def shamt_64       : Operand<i64>;
20
21 // Unsigned Operand
22 def uimm16_64      : Operand<i64> {
23   let PrintMethod = "printUnsignedImm";
24 }
25
26 // Transformation Function - get Imm - 32.
27 def Subtract32 : SDNodeXForm<imm, [{
28   return getImm(N, (unsigned)N->getZExtValue() - 32);
29 }]>;
30
31 // shamt must fit in 6 bits.
32 def immZExt6 : ImmLeaf<i32, [{return Imm == (Imm & 0x3f);}]>;
33
34 // Is a 32-bit int.
35 def immSExt32 : ImmLeaf<i64, [{return isInt<32>(Imm);}]>;
36
37 // Transformation Function - get the higher 16 bits.
38 def HIGHER : SDNodeXForm<imm, [{
39   return getImm(N, (N->getZExtValue() >> 32) & 0xFFFF);
40 }]>;
41
42 // Transformation Function - get the highest 16 bits.
43 def HIGHEST : SDNodeXForm<imm, [{
44   return getImm(N, (N->getZExtValue() >> 48) & 0xFFFF);
45 }]>;
46
47 //===----------------------------------------------------------------------===//
48 // Instructions specific format
49 //===----------------------------------------------------------------------===//
50 // Shifts
51 // 64-bit shift instructions.
52 class shift_rotate_imm64<bits<6> func, bits<5> isRotate, string instr_asm,
53                          SDNode OpNode>:
54   shift_rotate_imm<func, isRotate, instr_asm, OpNode, immZExt6, shamt,
55                    CPU64Regs>;
56
57 // Jump and Link (Call)
58 let isCall=1, hasDelaySlot=1,
59   // All calls clobber the non-callee saved registers...
60   Defs = [AT, V0, V1, A0, A1, A2, A3, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9,
61           K0, K1, D0, D1, D2, D3, D4, D5, D6, D7, D8, D9], Uses = [GP] in {
62   class JumpLink64<bits<6> op, string instr_asm>:
63     FJ<op, (outs), (ins calltarget64:$target, variable_ops),
64        !strconcat(instr_asm, "\t$target"), [(MipsJmpLink imm:$target)],
65        IIBranch>;
66
67   class JumpLinkReg64<bits<6> op, bits<6> func, string instr_asm>:
68     FR<op, func, (outs), (ins CPU64Regs:$rs, variable_ops),
69        !strconcat(instr_asm, "\t$rs"),
70        [(MipsJmpLink CPU64Regs:$rs)], IIBranch> {
71     let rt = 0;
72     let rd = 31;
73     let shamt = 0;
74   }
75
76   class BranchLink64<string instr_asm>:
77     FI<0x1, (outs), (ins CPU64Regs:$rs, brtarget:$imm16, variable_ops),
78        !strconcat(instr_asm, "\t$rs, $imm16"), [], IIBranch>;
79 }
80
81 // Mul, Div
82 class Mult64<bits<6> func, string instr_asm, InstrItinClass itin>:
83   Mult<func, instr_asm, itin, CPU64Regs, [HI64, LO64]>;
84 class Div64<SDNode op, bits<6> func, string instr_asm, InstrItinClass itin>:
85   Div<op, func, instr_asm, itin, CPU64Regs, [HI64, LO64]>;
86
87 multiclass Atomic2Ops64<PatFrag Op, string Opstr> {
88   def #NAME# : Atomic2Ops<Op, Opstr, CPU64Regs, CPURegs>, Requires<[NotN64]>;
89   def _P8    : Atomic2Ops<Op, Opstr, CPU64Regs, CPU64Regs>, Requires<[IsN64]>;
90 }
91
92 multiclass AtomicCmpSwap64<PatFrag Op, string Width>  {
93   def #NAME# : AtomicCmpSwap<Op, Width, CPU64Regs, CPURegs>, Requires<[NotN64]>;
94   def _P8    : AtomicCmpSwap<Op, Width, CPU64Regs, CPU64Regs>,
95                Requires<[IsN64]>;
96 }
97
98 let usesCustomInserter = 1, Predicates = [HasMips64] in {
99   defm ATOMIC_LOAD_ADD_I64  : Atomic2Ops64<atomic_load_add_64, "load_add_64">;
100   defm ATOMIC_LOAD_SUB_I64  : Atomic2Ops64<atomic_load_sub_64, "load_sub_64">;
101   defm ATOMIC_LOAD_AND_I64  : Atomic2Ops64<atomic_load_and_64, "load_and_64">;
102   defm ATOMIC_LOAD_OR_I64   : Atomic2Ops64<atomic_load_or_64, "load_or_64">;
103   defm ATOMIC_LOAD_XOR_I64  : Atomic2Ops64<atomic_load_xor_64, "load_xor_64">;
104   defm ATOMIC_LOAD_NAND_I64 : Atomic2Ops64<atomic_load_nand_64, "load_nand_64">;
105   defm ATOMIC_SWAP_I64      : Atomic2Ops64<atomic_swap_64, "swap_64">;
106   defm ATOMIC_CMP_SWAP_I64  : AtomicCmpSwap64<atomic_cmp_swap_64, "64">;
107 }
108
109 //===----------------------------------------------------------------------===//
110 // Instruction definition
111 //===----------------------------------------------------------------------===//
112
113 /// Arithmetic Instructions (ALU Immediate)
114 def DADDiu   : ArithLogicI<0x19, "daddiu", add, simm16_64, immSExt16,
115                            CPU64Regs>;
116 def DANDi    : ArithLogicI<0x0c, "andi", and, uimm16_64, immZExt16, CPU64Regs>;
117 def SLTi64   : SetCC_I<0x0a, "slti", setlt, simm16_64, immSExt16, CPU64Regs>;
118 def SLTiu64  : SetCC_I<0x0b, "sltiu", setult, simm16_64, immSExt16, CPU64Regs>;
119 def ORi64    : ArithLogicI<0x0d, "ori", or, uimm16_64, immZExt16, CPU64Regs>;
120 def XORi64   : ArithLogicI<0x0e, "xori", xor, uimm16_64, immZExt16, CPU64Regs>;
121 def LUi64    : LoadUpper<0x0f, "lui", CPU64Regs, uimm16_64>;
122
123 /// Arithmetic Instructions (3-Operand, R-Type)
124 def DADDu    : ArithLogicR<0x00, 0x2d, "daddu", add, IIAlu, CPU64Regs, 1>;
125 def DSUBu    : ArithLogicR<0x00, 0x2f, "dsubu", sub, IIAlu, CPU64Regs>;
126 def SLT64    : SetCC_R<0x00, 0x2a, "slt", setlt, CPU64Regs>;
127 def SLTu64   : SetCC_R<0x00, 0x2b, "sltu", setult, CPU64Regs>;
128 def AND64    : ArithLogicR<0x00, 0x24, "and", and, IIAlu, CPU64Regs, 1>;
129 def OR64     : ArithLogicR<0x00, 0x25, "or", or, IIAlu, CPU64Regs, 1>;
130 def XOR64    : ArithLogicR<0x00, 0x26, "xor", xor, IIAlu, CPU64Regs, 1>;
131 def NOR64    : LogicNOR<0x00, 0x27, "nor", CPU64Regs>;
132
133 /// Shift Instructions
134 def DSLL     : shift_rotate_imm64<0x38, 0x00, "dsll", shl>;
135 def DSRL     : shift_rotate_imm64<0x3a, 0x00, "dsrl", srl>;
136 def DSRA     : shift_rotate_imm64<0x3b, 0x00, "dsra", sra>;
137 def DSLLV    : shift_rotate_reg<0x24, 0x00, "dsllv", shl, CPU64Regs>;
138 def DSRLV    : shift_rotate_reg<0x26, 0x00, "dsrlv", srl, CPU64Regs>;
139 def DSRAV    : shift_rotate_reg<0x27, 0x00, "dsrav", sra, CPU64Regs>;
140
141 // Rotate Instructions
142 let Predicates = [HasMips64r2] in {
143   def DROTR    : shift_rotate_imm64<0x3a, 0x01, "drotr", rotr>;
144   def DROTRV   : shift_rotate_reg<0x16, 0x01, "drotrv", rotr, CPU64Regs>;
145 }
146
147 /// Load and Store Instructions
148 ///  aligned 
149 defm LB64    : LoadM64<0x20, "lb",  sextloadi8>;
150 defm LBu64   : LoadM64<0x24, "lbu", zextloadi8>;
151 defm LH64    : LoadM64<0x21, "lh",  sextloadi16_a>;
152 defm LHu64   : LoadM64<0x25, "lhu", zextloadi16_a>;
153 defm LW64    : LoadM64<0x23, "lw",  sextloadi32_a>;
154 defm LWu64   : LoadM64<0x27, "lwu", zextloadi32_a>;
155 defm SB64    : StoreM64<0x28, "sb", truncstorei8>;
156 defm SH64    : StoreM64<0x29, "sh", truncstorei16_a>;
157 defm SW64    : StoreM64<0x2b, "sw", truncstorei32_a>;
158 defm LD      : LoadM64<0x37, "ld",  load_a>;
159 defm SD      : StoreM64<0x3f, "sd", store_a>;
160
161 ///  unaligned
162 defm ULH64     : LoadM64<0x21, "ulh",  sextloadi16_u, 1>;
163 defm ULHu64    : LoadM64<0x25, "ulhu", zextloadi16_u, 1>;
164 defm ULW64     : LoadM64<0x23, "ulw",  sextloadi32_u, 1>;
165 defm USH64     : StoreM64<0x29, "ush", truncstorei16_u, 1>;
166 defm USW64     : StoreM64<0x2b, "usw", truncstorei32_u, 1>;
167 defm ULD       : LoadM64<0x37, "uld",  load_u, 1>;
168 defm USD       : StoreM64<0x3f, "usd", store_u, 1>;
169
170 /// Load-linked, Store-conditional
171 def LLD    : LLBase<0x34, "lld", CPU64Regs, mem>, Requires<[NotN64]>;
172 def LLD_P8 : LLBase<0x34, "lld", CPU64Regs, mem64>, Requires<[IsN64]>;
173 def SCD    : SCBase<0x3c, "scd", CPU64Regs, mem>, Requires<[NotN64]>;
174 def SCD_P8 : SCBase<0x3c, "scd", CPU64Regs, mem64>, Requires<[IsN64]>;
175
176 /// Jump and Branch Instructions
177 def JR64   : JumpFR<0x00, 0x08, "jr", CPU64Regs>;
178 def JAL64  : JumpLink64<0x03, "jal">;
179 def JALR64 : JumpLinkReg64<0x00, 0x09, "jalr">;
180 def BEQ64  : CBranch<0x04, "beq", seteq, CPU64Regs>;
181 def BNE64  : CBranch<0x05, "bne", setne, CPU64Regs>;
182 def BGEZ64 : CBranchZero<0x01, 1, "bgez", setge, CPU64Regs>;
183 def BGTZ64 : CBranchZero<0x07, 0, "bgtz", setgt, CPU64Regs>;
184 def BLEZ64 : CBranchZero<0x07, 0, "blez", setle, CPU64Regs>;
185 def BLTZ64 : CBranchZero<0x01, 0, "bltz", setlt, CPU64Regs>;
186
187 /// Multiply and Divide Instructions.
188 def DMULT    : Mult64<0x1c, "dmult", IIImul>;
189 def DMULTu   : Mult64<0x1d, "dmultu", IIImul>;
190 def DSDIV    : Div64<MipsDivRem, 0x1e, "ddiv", IIIdiv>;
191 def DUDIV    : Div64<MipsDivRemU, 0x1f, "ddivu", IIIdiv>;
192
193 def MTHI64 : MoveToLOHI<0x11, "mthi", CPU64Regs, [HI64]>;
194 def MTLO64 : MoveToLOHI<0x13, "mtlo", CPU64Regs, [LO64]>;
195 def MFHI64 : MoveFromLOHI<0x10, "mfhi", CPU64Regs, [HI64]>;
196 def MFLO64 : MoveFromLOHI<0x12, "mflo", CPU64Regs, [LO64]>;
197
198 /// Count Leading
199 def DCLZ : CountLeading0<0x24, "dclz", CPU64Regs>;
200 def DCLO : CountLeading1<0x25, "dclo", CPU64Regs>;
201
202 def LEA_ADDiu64 : EffectiveAddress<"addiu\t$rt, $addr", CPU64Regs, mem_ea_64>;
203
204 let Uses = [SP_64] in
205 def DynAlloc64 : EffectiveAddress<"daddiu\t$rt, $addr", CPU64Regs, mem_ea_64>,
206                  Requires<[IsN64]>;
207
208 def RDHWR64 : ReadHardware<CPU64Regs, HWRegs64>;
209
210 def DEXT : ExtBase<3, "dext", CPU64Regs>;
211 def DINS : InsBase<7, "dins", CPU64Regs>;
212
213 def DSLL64_32 : FR<0x3c, 0x00, (outs CPU64Regs:$rd), (ins CPURegs:$rt),
214                    "dsll\t$rd, $rt, 32", [], IIAlu>;
215
216 def SLL64_32 : FR<0x0, 0x00, (outs CPU64Regs:$rd), (ins CPURegs:$rt),
217                   "sll\t$rd, $rt, 0", [], IIAlu>;
218
219 //===----------------------------------------------------------------------===//
220 //  Arbitrary patterns that map to one or more instructions
221 //===----------------------------------------------------------------------===//
222
223 // Small immediates
224 def : Pat<(i64 immSExt16:$in),
225           (DADDiu ZERO_64, imm:$in)>;
226 def : Pat<(i64 immZExt16:$in),
227           (ORi64 ZERO_64, imm:$in)>;
228 def : Pat<(i64 immLUiOpnd:$in),
229           (LUi64 (HI16 imm:$in))>;
230
231 // 32-bit immediates
232 def : Pat<(i64 immSExt32:$imm),
233           (ORi64 (LUi64 (HI16 imm:$imm)), (LO16 imm:$imm))>;
234
235 // Arbitrary immediates
236 def : Pat<(i64 imm:$imm),
237           (ORi64 (DSLL (ORi64 (DSLL (ORi64 (LUi64 (HIGHEST imm:$imm)),
238            (HIGHER imm:$imm)), 16), (HI16 imm:$imm)), 16),
239            (LO16 imm:$imm))>;
240
241 // extended loads
242 let Predicates = [NotN64] in {
243   def : Pat<(i64 (extloadi1  addr:$src)), (LB64 addr:$src)>;
244   def : Pat<(i64 (extloadi8  addr:$src)), (LB64 addr:$src)>;
245   def : Pat<(i64 (extloadi16_a addr:$src)), (LH64 addr:$src)>;
246   def : Pat<(i64 (extloadi16_u addr:$src)), (ULH64 addr:$src)>;
247   def : Pat<(i64 (extloadi32_a addr:$src)), (LW64 addr:$src)>;
248   def : Pat<(i64 (extloadi32_u addr:$src)), (ULW64 addr:$src)>;
249   def : Pat<(zextloadi32_u addr:$a), (DSRL (DSLL (ULW64 addr:$a), 32), 32)>;
250 }
251 let Predicates = [IsN64] in {
252   def : Pat<(i64 (extloadi1  addr:$src)), (LB64_P8 addr:$src)>;
253   def : Pat<(i64 (extloadi8  addr:$src)), (LB64_P8 addr:$src)>;
254   def : Pat<(i64 (extloadi16_a addr:$src)), (LH64_P8 addr:$src)>;
255   def : Pat<(i64 (extloadi16_u addr:$src)), (ULH64_P8 addr:$src)>;
256   def : Pat<(i64 (extloadi32_a addr:$src)), (LW64_P8 addr:$src)>;
257   def : Pat<(i64 (extloadi32_u addr:$src)), (ULW64_P8 addr:$src)>;
258   def : Pat<(zextloadi32_u addr:$a), (DSRL (DSLL (ULW64_P8 addr:$a), 32), 32)>;
259 }
260
261 // hi/lo relocs
262 def : Pat<(MipsHi tglobaladdr:$in), (LUi64 tglobaladdr:$in)>;
263 def : Pat<(MipsHi tblockaddress:$in), (LUi64 tblockaddress:$in)>;
264 def : Pat<(MipsHi tjumptable:$in), (LUi64 tjumptable:$in)>;
265 def : Pat<(MipsHi tconstpool:$in), (LUi64 tconstpool:$in)>;
266 def : Pat<(MipsHi tglobaltlsaddr:$in), (LUi64 tglobaltlsaddr:$in)>;
267
268 def : Pat<(MipsLo tglobaladdr:$in), (DADDiu ZERO_64, tglobaladdr:$in)>;
269 def : Pat<(MipsLo tblockaddress:$in), (DADDiu ZERO_64, tblockaddress:$in)>;
270 def : Pat<(MipsLo tjumptable:$in), (DADDiu ZERO_64, tjumptable:$in)>;
271 def : Pat<(MipsLo tconstpool:$in), (DADDiu ZERO_64, tconstpool:$in)>;
272 def : Pat<(MipsLo tglobaltlsaddr:$in), (DADDiu ZERO_64, tglobaltlsaddr:$in)>;
273
274 def : Pat<(add CPU64Regs:$hi, (MipsLo tglobaladdr:$lo)),
275           (DADDiu CPU64Regs:$hi, tglobaladdr:$lo)>;
276 def : Pat<(add CPU64Regs:$hi, (MipsLo tblockaddress:$lo)),
277           (DADDiu CPU64Regs:$hi, tblockaddress:$lo)>;
278 def : Pat<(add CPU64Regs:$hi, (MipsLo tjumptable:$lo)),
279           (DADDiu CPU64Regs:$hi, tjumptable:$lo)>;
280 def : Pat<(add CPU64Regs:$hi, (MipsLo tconstpool:$lo)),
281           (DADDiu CPU64Regs:$hi, tconstpool:$lo)>;
282 def : Pat<(add CPU64Regs:$hi, (MipsLo tglobaltlsaddr:$lo)),
283           (DADDiu CPU64Regs:$hi, tglobaltlsaddr:$lo)>;
284
285 def : WrapperPat<tglobaladdr, DADDiu, GP_64>;
286 def : WrapperPat<tconstpool, DADDiu, GP_64>;
287 def : WrapperPat<texternalsym, DADDiu, GP_64>;
288 def : WrapperPat<tblockaddress, DADDiu, GP_64>;
289 def : WrapperPat<tjumptable, DADDiu, GP_64>;
290 def : WrapperPat<tglobaltlsaddr, DADDiu, GP_64>;
291
292 defm : BrcondPats<CPU64Regs, BEQ64, BNE64, SLT64, SLTu64, SLTi64, SLTiu64,
293                   ZERO_64>;
294
295 // setcc patterns
296 defm : SeteqPats<CPU64Regs, SLTiu64, XOR64, SLTu64, ZERO_64>;
297 defm : SetlePats<CPU64Regs, SLT64, SLTu64>;
298 defm : SetgtPats<CPU64Regs, SLT64, SLTu64>;
299 defm : SetgePats<CPU64Regs, SLT64, SLTu64>;
300 defm : SetgeImmPats<CPU64Regs, SLTi64, SLTiu64>;
301
302 // select MipsDynAlloc
303 def : Pat<(MipsDynAlloc addr:$f), (DynAlloc64 addr:$f)>, Requires<[IsN64]>;
304
305 // truncate
306 def : Pat<(i32 (trunc CPU64Regs:$src)),
307           (SLL (EXTRACT_SUBREG CPU64Regs:$src, sub_32), 0)>, Requires<[IsN64]>;
308  
309 // 32-to-64-bit extension
310 def : Pat<(i64 (anyext CPURegs:$src)), (SLL64_32 CPURegs:$src)>;
311 def : Pat<(i64 (zext CPURegs:$src)), (DSRL (DSLL64_32 CPURegs:$src), 32)>;
312 def : Pat<(i64 (sext CPURegs:$src)), (SLL64_32 CPURegs:$src)>;
313