Mips64InstrInfo.td revision e035f65b16956cdb7ba29e741b7e3c04a8ce4d24
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
19def shamt_64       : Operand<i64>;
20
21// Unsigned Operand
22def uimm16_64      : Operand<i64> {
23  let PrintMethod = "printUnsignedImm";
24}
25
26// Transformation Function - get Imm - 32.
27def Subtract32 : SDNodeXForm<imm, [{
28  return getImm(N, (unsigned)N->getZExtValue() - 32);
29}]>;
30
31// shamt must fit in 6 bits.
32def immZExt6 : ImmLeaf<i32, [{return Imm == (Imm & 0x3f);}]>;
33
34//===----------------------------------------------------------------------===//
35// Instructions specific format
36//===----------------------------------------------------------------------===//
37// Shifts
38// 64-bit shift instructions.
39let DecoderNamespace = "Mips64" in {
40class shift_rotate_imm64<bits<6> func, bits<5> isRotate, string instr_asm,
41                         SDNode OpNode>:
42  shift_rotate_imm<func, isRotate, instr_asm, OpNode, immZExt6, shamt,
43                   CPU64Regs>;
44
45// Mul, Div
46class Mult64<bits<6> func, string instr_asm, InstrItinClass itin>:
47  Mult<func, instr_asm, itin, CPU64Regs, [HI64, LO64]>;
48class Div64<SDNode op, bits<6> func, string instr_asm, InstrItinClass itin>:
49  Div<op, func, instr_asm, itin, CPU64Regs, [HI64, LO64]>;
50
51multiclass Atomic2Ops64<PatFrag Op, string Opstr> {
52  def #NAME# : Atomic2Ops<Op, Opstr, CPU64Regs, CPURegs>,
53               Requires<[NotN64, HasStandardEncoding]>;
54  def _P8    : Atomic2Ops<Op, Opstr, CPU64Regs, CPU64Regs>,
55               Requires<[IsN64, HasStandardEncoding]> {
56    let isCodeGenOnly = 1;
57  }
58}
59
60multiclass AtomicCmpSwap64<PatFrag Op, string Width>  {
61  def #NAME# : AtomicCmpSwap<Op, Width, CPU64Regs, CPURegs>,
62               Requires<[NotN64, HasStandardEncoding]>;
63  def _P8    : AtomicCmpSwap<Op, Width, CPU64Regs, CPU64Regs>,
64               Requires<[IsN64, HasStandardEncoding]> {
65    let isCodeGenOnly = 1;
66  }
67}
68}
69let usesCustomInserter = 1, Predicates = [HasMips64, HasStandardEncoding],
70  DecoderNamespace = "Mips64" in {
71  defm ATOMIC_LOAD_ADD_I64  : Atomic2Ops64<atomic_load_add_64, "load_add_64">;
72  defm ATOMIC_LOAD_SUB_I64  : Atomic2Ops64<atomic_load_sub_64, "load_sub_64">;
73  defm ATOMIC_LOAD_AND_I64  : Atomic2Ops64<atomic_load_and_64, "load_and_64">;
74  defm ATOMIC_LOAD_OR_I64   : Atomic2Ops64<atomic_load_or_64, "load_or_64">;
75  defm ATOMIC_LOAD_XOR_I64  : Atomic2Ops64<atomic_load_xor_64, "load_xor_64">;
76  defm ATOMIC_LOAD_NAND_I64 : Atomic2Ops64<atomic_load_nand_64, "load_nand_64">;
77  defm ATOMIC_SWAP_I64      : Atomic2Ops64<atomic_swap_64, "swap_64">;
78  defm ATOMIC_CMP_SWAP_I64  : AtomicCmpSwap64<atomic_cmp_swap_64, "64">;
79}
80
81//===----------------------------------------------------------------------===//
82// Instruction definition
83//===----------------------------------------------------------------------===//
84let DecoderNamespace = "Mips64" in {
85/// Arithmetic Instructions (ALU Immediate)
86def DADDiu   : ArithLogicI<0x19, "daddiu", add, simm16_64, immSExt16,
87                           CPU64Regs>;
88def DANDi    : ArithLogicI<0x0c, "andi", and, uimm16_64, immZExt16, CPU64Regs>;
89def SLTi64   : SetCC_I<0x0a, "slti", setlt, simm16_64, immSExt16, CPU64Regs>;
90def SLTiu64  : SetCC_I<0x0b, "sltiu", setult, simm16_64, immSExt16, CPU64Regs>;
91def ORi64    : ArithLogicI<0x0d, "ori", or, uimm16_64, immZExt16, CPU64Regs>;
92def XORi64   : ArithLogicI<0x0e, "xori", xor, uimm16_64, immZExt16, CPU64Regs>;
93def LUi64    : LoadUpper<0x0f, "lui", CPU64Regs, uimm16_64>;
94
95/// Arithmetic Instructions (3-Operand, R-Type)
96def DADDu    : ArithLogicR<0x00, 0x2d, "daddu", add, IIAlu, CPU64Regs, 1>;
97def DSUBu    : ArithLogicR<0x00, 0x2f, "dsubu", sub, IIAlu, CPU64Regs>;
98def SLT64    : SetCC_R<0x00, 0x2a, "slt", setlt, CPU64Regs>;
99def SLTu64   : SetCC_R<0x00, 0x2b, "sltu", setult, CPU64Regs>;
100def AND64    : ArithLogicR<0x00, 0x24, "and", and, IIAlu, CPU64Regs, 1>;
101def OR64     : ArithLogicR<0x00, 0x25, "or", or, IIAlu, CPU64Regs, 1>;
102def XOR64    : ArithLogicR<0x00, 0x26, "xor", xor, IIAlu, CPU64Regs, 1>;
103def NOR64    : LogicNOR<0x00, 0x27, "nor", CPU64Regs>;
104
105/// Shift Instructions
106def DSLL     : shift_rotate_imm64<0x38, 0x00, "dsll", shl>;
107def DSRL     : shift_rotate_imm64<0x3a, 0x00, "dsrl", srl>;
108def DSRA     : shift_rotate_imm64<0x3b, 0x00, "dsra", sra>;
109def DSLLV    : shift_rotate_reg<0x14, 0x00, "dsllv", shl, CPU64Regs>;
110def DSRLV    : shift_rotate_reg<0x16, 0x00, "dsrlv", srl, CPU64Regs>;
111def DSRAV    : shift_rotate_reg<0x17, 0x00, "dsrav", sra, CPU64Regs>;
112let Pattern = []<dag> in {
113def DSLL32   : shift_rotate_imm64<0x3c, 0x00, "dsll32", shl>;
114def DSRL32   : shift_rotate_imm64<0x3e, 0x00, "dsrl32", srl>;
115def DSRA32   : shift_rotate_imm64<0x3f, 0x00, "dsra32", sra>;
116}
117}
118// Rotate Instructions
119let Predicates = [HasMips64r2, HasStandardEncoding],
120    DecoderNamespace = "Mips64" in {
121  def DROTR    : shift_rotate_imm64<0x3a, 0x01, "drotr", rotr>;
122  def DROTRV   : shift_rotate_reg<0x16, 0x01, "drotrv", rotr, CPU64Regs>;
123}
124
125let DecoderNamespace = "Mips64" in {
126/// Load and Store Instructions
127///  aligned
128defm LB64    : LoadM64<0x20, "lb",  sextloadi8>;
129defm LBu64   : LoadM64<0x24, "lbu", zextloadi8>;
130defm LH64    : LoadM64<0x21, "lh",  sextloadi16_a>;
131defm LHu64   : LoadM64<0x25, "lhu", zextloadi16_a>;
132defm LW64    : LoadM64<0x23, "lw",  sextloadi32_a>;
133defm LWu64   : LoadM64<0x27, "lwu", zextloadi32_a>;
134defm SB64    : StoreM64<0x28, "sb", truncstorei8>;
135defm SH64    : StoreM64<0x29, "sh", truncstorei16_a>;
136defm SW64    : StoreM64<0x2b, "sw", truncstorei32_a>;
137defm LD      : LoadM64<0x37, "ld",  load_a>;
138defm SD      : StoreM64<0x3f, "sd", store_a>;
139
140///  unaligned
141defm ULH64     : LoadM64<0x21, "ulh",  sextloadi16_u, 1>;
142defm ULHu64    : LoadM64<0x25, "ulhu", zextloadi16_u, 1>;
143defm ULW64     : LoadM64<0x23, "ulw",  sextloadi32_u, 1>;
144defm USH64     : StoreM64<0x29, "ush", truncstorei16_u, 1>;
145defm USW64     : StoreM64<0x2b, "usw", truncstorei32_u, 1>;
146defm ULD       : LoadM64<0x37, "uld",  load_u, 1>;
147defm USD       : StoreM64<0x3f, "usd", store_u, 1>;
148
149/// load/store left/right
150let isCodeGenOnly = 1 in {
151  defm LWL64 : LoadLeftRightM64<0x22, "lwl", MipsLWL>;
152  defm LWR64 : LoadLeftRightM64<0x26, "lwr", MipsLWR>;
153  defm SWL64 : StoreLeftRightM64<0x2a, "swl", MipsSWL>;
154  defm SWR64 : StoreLeftRightM64<0x2e, "swr", MipsSWR>;
155}
156defm LDL   : LoadLeftRightM64<0x1a, "ldl", MipsLDL>;
157defm LDR   : LoadLeftRightM64<0x1b, "ldr", MipsLDR>;
158defm SDL   : StoreLeftRightM64<0x2c, "sdl", MipsSDL>;
159defm SDR   : StoreLeftRightM64<0x2d, "sdr", MipsSDR>;
160
161/// Load-linked, Store-conditional
162def LLD    : LLBase<0x34, "lld", CPU64Regs, mem>,
163             Requires<[NotN64, HasStandardEncoding]>;
164def LLD_P8 : LLBase<0x34, "lld", CPU64Regs, mem64>,
165             Requires<[IsN64, HasStandardEncoding]> {
166  let isCodeGenOnly = 1;
167}
168def SCD    : SCBase<0x3c, "scd", CPU64Regs, mem>,
169             Requires<[NotN64, HasStandardEncoding]>;
170def SCD_P8 : SCBase<0x3c, "scd", CPU64Regs, mem64>,
171             Requires<[IsN64, HasStandardEncoding]> {
172  let isCodeGenOnly = 1;
173}
174
175/// Jump and Branch Instructions
176def JR64   : IndirectBranch<CPU64Regs>;
177def BEQ64  : CBranch<0x04, "beq", seteq, CPU64Regs>;
178def BNE64  : CBranch<0x05, "bne", setne, CPU64Regs>;
179def BGEZ64 : CBranchZero<0x01, 1, "bgez", setge, CPU64Regs>;
180def BGTZ64 : CBranchZero<0x07, 0, "bgtz", setgt, CPU64Regs>;
181def BLEZ64 : CBranchZero<0x06, 0, "blez", setle, CPU64Regs>;
182def BLTZ64 : CBranchZero<0x01, 0, "bltz", setlt, CPU64Regs>;
183}
184let DecoderNamespace = "Mips64" in
185def JALR64 : JumpLinkReg<0x00, 0x09, "jalr", CPU64Regs>;
186
187let DecoderNamespace = "Mips64" in {
188/// Multiply and Divide Instructions.
189def DMULT    : Mult64<0x1c, "dmult", IIImul>;
190def DMULTu   : Mult64<0x1d, "dmultu", IIImul>;
191def DSDIV    : Div64<MipsDivRem, 0x1e, "ddiv", IIIdiv>;
192def DUDIV    : Div64<MipsDivRemU, 0x1f, "ddivu", IIIdiv>;
193
194def MTHI64 : MoveToLOHI<0x11, "mthi", CPU64Regs, [HI64]>;
195def MTLO64 : MoveToLOHI<0x13, "mtlo", CPU64Regs, [LO64]>;
196def MFHI64 : MoveFromLOHI<0x10, "mfhi", CPU64Regs, [HI64]>;
197def MFLO64 : MoveFromLOHI<0x12, "mflo", CPU64Regs, [LO64]>;
198
199/// Sign Ext In Register Instructions.
200def SEB64 : SignExtInReg<0x10, "seb", i8, CPU64Regs>;
201def SEH64 : SignExtInReg<0x18, "seh", i16, CPU64Regs>;
202
203/// Count Leading
204def DCLZ : CountLeading0<0x24, "dclz", CPU64Regs>;
205def DCLO : CountLeading1<0x25, "dclo", CPU64Regs>;
206
207/// Double Word Swap Bytes/HalfWords
208def DSBH : SubwordSwap<0x24, 0x2, "dsbh", CPU64Regs>;
209def DSHD : SubwordSwap<0x24, 0x5, "dshd", CPU64Regs>;
210
211def LEA_ADDiu64 : EffectiveAddress<"daddiu\t$rt, $addr", CPU64Regs, mem_ea_64>;
212}
213let Uses = [SP_64], DecoderNamespace = "Mips64" in
214def DynAlloc64 : EffectiveAddress<"daddiu\t$rt, $addr", CPU64Regs, mem_ea_64>,
215                 Requires<[IsN64, HasStandardEncoding]> {
216  let isCodeGenOnly = 1;
217}
218let DecoderNamespace = "Mips64" in {
219def RDHWR64 : ReadHardware<CPU64Regs, HWRegs64>;
220
221def DEXT : ExtBase<3, "dext", CPU64Regs>;
222def DINS : InsBase<7, "dins", CPU64Regs>;
223
224def DSLL64_32 : FR<0x3c, 0x00, (outs CPU64Regs:$rd), (ins CPURegs:$rt),
225                   "dsll\t$rd, $rt, 32", [], IIAlu>;
226def SLL64_32 : FR<0x0, 0x00, (outs CPU64Regs:$rd), (ins CPURegs:$rt),
227                  "sll\t$rd, $rt, 0", [], IIAlu>;
228let isCodeGenOnly = 1 in
229def SLL64_64 : FR<0x0, 0x00, (outs CPU64Regs:$rd), (ins CPU64Regs:$rt),
230                  "sll\t$rd, $rt, 0", [], IIAlu>;
231}
232//===----------------------------------------------------------------------===//
233//  Arbitrary patterns that map to one or more instructions
234//===----------------------------------------------------------------------===//
235
236// extended loads
237let Predicates = [NotN64, HasStandardEncoding] in {
238  def : MipsPat<(i64 (extloadi1  addr:$src)), (LB64 addr:$src)>;
239  def : MipsPat<(i64 (extloadi8  addr:$src)), (LB64 addr:$src)>;
240  def : MipsPat<(i64 (extloadi16_a addr:$src)), (LH64 addr:$src)>;
241  def : MipsPat<(i64 (extloadi16_u addr:$src)), (ULH64 addr:$src)>;
242  def : MipsPat<(i64 (extloadi32_a addr:$src)), (LW64 addr:$src)>;
243  def : MipsPat<(i64 (extloadi32_u addr:$src)), (ULW64 addr:$src)>;
244  def : MipsPat<(zextloadi32_u addr:$a), (DSRL (DSLL (ULW64 addr:$a), 32), 32)>;
245}
246let Predicates = [IsN64, HasStandardEncoding] in {
247  def : MipsPat<(i64 (extloadi1  addr:$src)), (LB64_P8 addr:$src)>;
248  def : MipsPat<(i64 (extloadi8  addr:$src)), (LB64_P8 addr:$src)>;
249  def : MipsPat<(i64 (extloadi16_a addr:$src)), (LH64_P8 addr:$src)>;
250  def : MipsPat<(i64 (extloadi16_u addr:$src)), (ULH64_P8 addr:$src)>;
251  def : MipsPat<(i64 (extloadi32_a addr:$src)), (LW64_P8 addr:$src)>;
252  def : MipsPat<(i64 (extloadi32_u addr:$src)), (ULW64_P8 addr:$src)>;
253  def : MipsPat<(zextloadi32_u addr:$a),
254                (DSRL (DSLL (ULW64_P8 addr:$a), 32), 32)>;
255}
256
257// hi/lo relocs
258def : MipsPat<(MipsHi tglobaladdr:$in), (LUi64 tglobaladdr:$in)>;
259def : MipsPat<(MipsHi tblockaddress:$in), (LUi64 tblockaddress:$in)>;
260def : MipsPat<(MipsHi tjumptable:$in), (LUi64 tjumptable:$in)>;
261def : MipsPat<(MipsHi tconstpool:$in), (LUi64 tconstpool:$in)>;
262def : MipsPat<(MipsHi tglobaltlsaddr:$in), (LUi64 tglobaltlsaddr:$in)>;
263
264def : MipsPat<(MipsLo tglobaladdr:$in), (DADDiu ZERO_64, tglobaladdr:$in)>;
265def : MipsPat<(MipsLo tblockaddress:$in), (DADDiu ZERO_64, tblockaddress:$in)>;
266def : MipsPat<(MipsLo tjumptable:$in), (DADDiu ZERO_64, tjumptable:$in)>;
267def : MipsPat<(MipsLo tconstpool:$in), (DADDiu ZERO_64, tconstpool:$in)>;
268def : MipsPat<(MipsLo tglobaltlsaddr:$in),
269              (DADDiu ZERO_64, tglobaltlsaddr:$in)>;
270
271def : MipsPat<(add CPU64Regs:$hi, (MipsLo tglobaladdr:$lo)),
272              (DADDiu CPU64Regs:$hi, tglobaladdr:$lo)>;
273def : MipsPat<(add CPU64Regs:$hi, (MipsLo tblockaddress:$lo)),
274              (DADDiu CPU64Regs:$hi, tblockaddress:$lo)>;
275def : MipsPat<(add CPU64Regs:$hi, (MipsLo tjumptable:$lo)),
276              (DADDiu CPU64Regs:$hi, tjumptable:$lo)>;
277def : MipsPat<(add CPU64Regs:$hi, (MipsLo tconstpool:$lo)),
278              (DADDiu CPU64Regs:$hi, tconstpool:$lo)>;
279def : MipsPat<(add CPU64Regs:$hi, (MipsLo tglobaltlsaddr:$lo)),
280              (DADDiu CPU64Regs:$hi, tglobaltlsaddr:$lo)>;
281
282def : WrapperPat<tglobaladdr, DADDiu, CPU64Regs>;
283def : WrapperPat<tconstpool, DADDiu, CPU64Regs>;
284def : WrapperPat<texternalsym, DADDiu, CPU64Regs>;
285def : WrapperPat<tblockaddress, DADDiu, CPU64Regs>;
286def : WrapperPat<tjumptable, DADDiu, CPU64Regs>;
287def : WrapperPat<tglobaltlsaddr, DADDiu, CPU64Regs>;
288
289defm : BrcondPats<CPU64Regs, BEQ64, BNE64, SLT64, SLTu64, SLTi64, SLTiu64,
290                  ZERO_64>;
291
292// setcc patterns
293defm : SeteqPats<CPU64Regs, SLTiu64, XOR64, SLTu64, ZERO_64>;
294defm : SetlePats<CPU64Regs, SLT64, SLTu64>;
295defm : SetgtPats<CPU64Regs, SLT64, SLTu64>;
296defm : SetgePats<CPU64Regs, SLT64, SLTu64>;
297defm : SetgeImmPats<CPU64Regs, SLTi64, SLTiu64>;
298
299// select MipsDynAlloc
300def : MipsPat<(MipsDynAlloc addr:$f), (DynAlloc64 addr:$f)>,
301      Requires<[IsN64, HasStandardEncoding]>;
302
303// truncate
304def : MipsPat<(i32 (trunc CPU64Regs:$src)),
305              (SLL (EXTRACT_SUBREG CPU64Regs:$src, sub_32), 0)>,
306      Requires<[IsN64, HasStandardEncoding]>;
307
308// 32-to-64-bit extension
309def : MipsPat<(i64 (anyext CPURegs:$src)), (SLL64_32 CPURegs:$src)>;
310def : MipsPat<(i64 (zext CPURegs:$src)), (DSRL (DSLL64_32 CPURegs:$src), 32)>;
311def : MipsPat<(i64 (sext CPURegs:$src)), (SLL64_32 CPURegs:$src)>;
312
313// Sign extend in register
314def : MipsPat<(i64 (sext_inreg CPU64Regs:$src, i32)),
315              (SLL64_64 CPU64Regs:$src)>;
316
317// bswap MipsPattern
318def : MipsPat<(bswap CPU64Regs:$rt), (DSHD (DSBH CPU64Regs:$rt))>;
319