]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / 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 // Unsigned Operand
19 def uimm16_64      : Operand<i64> {
20   let PrintMethod = "printUnsignedImm";
21 }
22
23 // Transformation Function - get Imm - 32.
24 def Subtract32 : SDNodeXForm<imm, [{
25   return getImm(N, (unsigned)N->getZExtValue() - 32);
26 }]>;
27
28 // shamt must fit in 6 bits.
29 def immZExt6 : ImmLeaf<i32, [{return Imm == (Imm & 0x3f);}]>;
30
31 //===----------------------------------------------------------------------===//
32 // Instructions specific format
33 //===----------------------------------------------------------------------===//
34 let usesCustomInserter = 1 in {
35   def ATOMIC_LOAD_ADD_I64  : Atomic2Ops<atomic_load_add_64, GPR64>;
36   def ATOMIC_LOAD_SUB_I64  : Atomic2Ops<atomic_load_sub_64, GPR64>;
37   def ATOMIC_LOAD_AND_I64  : Atomic2Ops<atomic_load_and_64, GPR64>;
38   def ATOMIC_LOAD_OR_I64   : Atomic2Ops<atomic_load_or_64, GPR64>;
39   def ATOMIC_LOAD_XOR_I64  : Atomic2Ops<atomic_load_xor_64, GPR64>;
40   def ATOMIC_LOAD_NAND_I64 : Atomic2Ops<atomic_load_nand_64, GPR64>;
41   def ATOMIC_SWAP_I64      : Atomic2Ops<atomic_swap_64, GPR64>;
42   def ATOMIC_CMP_SWAP_I64  : AtomicCmpSwap<atomic_cmp_swap_64, GPR64>;
43 }
44
45 /// Pseudo instructions for loading and storing accumulator registers.
46 let isPseudo = 1, isCodeGenOnly = 1 in {
47   def LOAD_ACC128  : Load<"", ACC128>;
48   def STORE_ACC128 : Store<"", ACC128>;
49 }
50
51 //===----------------------------------------------------------------------===//
52 // Instruction definition
53 //===----------------------------------------------------------------------===//
54 let DecoderNamespace = "Mips64" in {
55 /// Arithmetic Instructions (ALU Immediate)
56 def DADDi   : ArithLogicI<"daddi", simm16_64, GPR64Opnd>, ADDI_FM<0x18>;
57 def DADDiu  : ArithLogicI<"daddiu", simm16_64, GPR64Opnd, IIArith,
58                           immSExt16, add>,
59               ADDI_FM<0x19>, IsAsCheapAsAMove;
60
61 let isCodeGenOnly = 1 in {
62 def SLTi64  : SetCC_I<"slti", setlt, simm16_64, immSExt16, GPR64Opnd>,
63               SLTI_FM<0xa>;
64 def SLTiu64 : SetCC_I<"sltiu", setult, simm16_64, immSExt16, GPR64Opnd>,
65               SLTI_FM<0xb>;
66 def ANDi64 : ArithLogicI<"andi", uimm16_64, GPR64Opnd, IILogic, immZExt16,
67                          and>,
68              ADDI_FM<0xc>;
69 def ORi64   : ArithLogicI<"ori", uimm16_64, GPR64Opnd, IILogic, immZExt16,
70                           or>,
71               ADDI_FM<0xd>;
72 def XORi64  : ArithLogicI<"xori", uimm16_64, GPR64Opnd, IILogic, immZExt16,
73                           xor>,
74               ADDI_FM<0xe>;
75 def LUi64   : LoadUpper<"lui", GPR64Opnd, uimm16_64>, LUI_FM;
76 }
77
78 /// Arithmetic Instructions (3-Operand, R-Type)
79 def DADD   : ArithLogicR<"dadd", GPR64Opnd>, ADD_FM<0, 0x2c>;
80 def DADDu  : ArithLogicR<"daddu", GPR64Opnd, 1, IIArith, add>,
81                               ADD_FM<0, 0x2d>;
82 def DSUBu  : ArithLogicR<"dsubu", GPR64Opnd, 0, IIArith, sub>,
83                               ADD_FM<0, 0x2f>;
84
85 let isCodeGenOnly = 1 in {
86 def SLT64  : SetCC_R<"slt", setlt, GPR64Opnd>, ADD_FM<0, 0x2a>;
87 def SLTu64 : SetCC_R<"sltu", setult, GPR64Opnd>, ADD_FM<0, 0x2b>;
88 def AND64  : ArithLogicR<"and", GPR64Opnd, 1, IIArith, and>, ADD_FM<0, 0x24>;
89 def OR64   : ArithLogicR<"or", GPR64Opnd, 1, IIArith, or>, ADD_FM<0, 0x25>;
90 def XOR64  : ArithLogicR<"xor", GPR64Opnd, 1, IIArith, xor>, ADD_FM<0, 0x26>;
91 def NOR64  : LogicNOR<"nor", GPR64Opnd>, ADD_FM<0, 0x27>;
92 }
93
94 /// Shift Instructions
95 def DSLL   : shift_rotate_imm<"dsll", uimm6, GPR64Opnd, shl, immZExt6>,
96              SRA_FM<0x38, 0>;
97 def DSRL   : shift_rotate_imm<"dsrl", uimm6, GPR64Opnd, srl, immZExt6>,
98              SRA_FM<0x3a, 0>;
99 def DSRA   : shift_rotate_imm<"dsra", uimm6, GPR64Opnd, sra, immZExt6>,
100              SRA_FM<0x3b, 0>;
101 def DSLLV  : shift_rotate_reg<"dsllv", GPR64Opnd, shl>, SRLV_FM<0x14, 0>;
102 def DSRLV  : shift_rotate_reg<"dsrlv", GPR64Opnd, srl>, SRLV_FM<0x16, 0>;
103 def DSRAV  : shift_rotate_reg<"dsrav", GPR64Opnd, sra>, SRLV_FM<0x17, 0>;
104 def DSLL32 : shift_rotate_imm<"dsll32", uimm5, GPR64Opnd>, SRA_FM<0x3c, 0>;
105 def DSRL32 : shift_rotate_imm<"dsrl32", uimm5, GPR64Opnd>, SRA_FM<0x3e, 0>;
106 def DSRA32 : shift_rotate_imm<"dsra32", uimm5, GPR64Opnd>, SRA_FM<0x3f, 0>;
107
108 // Rotate Instructions
109 let Predicates = [HasMips64r2, HasStdEnc] in {
110   def DROTR  : shift_rotate_imm<"drotr", uimm6, GPR64Opnd, rotr, immZExt6>,
111                SRA_FM<0x3a, 1>;
112   def DROTRV : shift_rotate_reg<"drotrv", GPR64Opnd, rotr>,
113                SRLV_FM<0x16, 1>;
114   def DROTR32 : shift_rotate_imm<"drotr32", uimm5, GPR64Opnd>, SRA_FM<0x3e, 1>;
115 }
116
117 /// Load and Store Instructions
118 ///  aligned
119 let isCodeGenOnly = 1 in {
120 def LB64  : Load<"lb", GPR64Opnd, sextloadi8, IILoad>, LW_FM<0x20>;
121 def LBu64 : Load<"lbu", GPR64Opnd, zextloadi8, IILoad>, LW_FM<0x24>;
122 def LH64  : Load<"lh", GPR64Opnd, sextloadi16, IILoad>, LW_FM<0x21>;
123 def LHu64 : Load<"lhu", GPR64Opnd, zextloadi16, IILoad>, LW_FM<0x25>;
124 def LW64  : Load<"lw", GPR64Opnd, sextloadi32, IILoad>, LW_FM<0x23>;
125 def SB64  : Store<"sb", GPR64Opnd, truncstorei8, IIStore>, LW_FM<0x28>;
126 def SH64  : Store<"sh", GPR64Opnd, truncstorei16, IIStore>, LW_FM<0x29>;
127 def SW64  : Store<"sw", GPR64Opnd, truncstorei32, IIStore>, LW_FM<0x2b>;
128 }
129
130 def LWu   : Load<"lwu", GPR64Opnd, zextloadi32, IILoad>, LW_FM<0x27>;
131 def LD    : Load<"ld", GPR64Opnd, load, IILoad>, LW_FM<0x37>;
132 def SD    : Store<"sd", GPR64Opnd, store, IIStore>, LW_FM<0x3f>;
133
134 /// load/store left/right
135 let isCodeGenOnly = 1 in {
136 def LWL64 : LoadLeftRight<"lwl", MipsLWL, GPR64Opnd, IILoad>, LW_FM<0x22>;
137 def LWR64 : LoadLeftRight<"lwr", MipsLWR, GPR64Opnd, IILoad>, LW_FM<0x26>;
138 def SWL64 : StoreLeftRight<"swl", MipsSWL, GPR64Opnd, IIStore>, LW_FM<0x2a>;
139 def SWR64 : StoreLeftRight<"swr", MipsSWR, GPR64Opnd, IIStore>, LW_FM<0x2e>;
140 }
141
142 def LDL   : LoadLeftRight<"ldl", MipsLDL, GPR64Opnd, IILoad>, LW_FM<0x1a>;
143 def LDR   : LoadLeftRight<"ldr", MipsLDR, GPR64Opnd, IILoad>, LW_FM<0x1b>;
144 def SDL   : StoreLeftRight<"sdl", MipsSDL, GPR64Opnd, IIStore>, LW_FM<0x2c>;
145 def SDR   : StoreLeftRight<"sdr", MipsSDR, GPR64Opnd, IIStore>, LW_FM<0x2d>;
146
147 /// Load-linked, Store-conditional
148 def LLD : LLBase<"lld", GPR64Opnd>, LW_FM<0x34>;
149 def SCD : SCBase<"scd", GPR64Opnd>, LW_FM<0x3c>;
150
151 /// Jump and Branch Instructions
152 let isCodeGenOnly = 1 in {
153 def JR64   : IndirectBranch<"jr", GPR64Opnd>, MTLO_FM<8>;
154 def BEQ64  : CBranch<"beq", brtarget, seteq, GPR64Opnd>, BEQ_FM<4>;
155 def BNE64  : CBranch<"bne", brtarget, setne, GPR64Opnd>, BEQ_FM<5>;
156 def BGEZ64 : CBranchZero<"bgez", brtarget, setge, GPR64Opnd>, BGEZ_FM<1, 1>;
157 def BGTZ64 : CBranchZero<"bgtz", brtarget, setgt, GPR64Opnd>, BGEZ_FM<7, 0>;
158 def BLEZ64 : CBranchZero<"blez", brtarget, setle, GPR64Opnd>, BGEZ_FM<6, 0>;
159 def BLTZ64 : CBranchZero<"bltz", brtarget, setlt, GPR64Opnd>, BGEZ_FM<1, 0>;
160 def JALR64 : JumpLinkReg<"jalr", GPR64Opnd>, JALR_FM;
161 def JALR64Pseudo : JumpLinkRegPseudo<GPR64Opnd, JALR, RA, GPR32Opnd>;
162 def TAILCALL64_R : JumpFR<"tcallr", GPR64Opnd, MipsTailCall>,
163                    MTLO_FM<8>, IsTailCall;
164 }
165
166 /// Multiply and Divide Instructions.
167 def DMULT  : Mult<"dmult", IIImult, GPR64Opnd, [HI0_64, LO0_64]>,
168              MULT_FM<0, 0x1c>;
169 def DMULTu : Mult<"dmultu", IIImult, GPR64Opnd, [HI0_64, LO0_64]>,
170              MULT_FM<0, 0x1d>;
171 def PseudoDMULT  : MultDivPseudo<DMULT, ACC128, GPR64Opnd, MipsMult,
172                                  IIImult>;
173 def PseudoDMULTu : MultDivPseudo<DMULTu, ACC128, GPR64Opnd, MipsMultu,
174                                  IIImult>;
175 def DSDIV : Div<"ddiv", IIIdiv, GPR64Opnd, [HI0_64, LO0_64]>, MULT_FM<0, 0x1e>;
176 def DUDIV : Div<"ddivu", IIIdiv, GPR64Opnd, [HI0_64, LO0_64]>, MULT_FM<0, 0x1f>;
177 def PseudoDSDIV : MultDivPseudo<DSDIV, ACC128, GPR64Opnd, MipsDivRem,
178                                 IIIdiv, 0, 1, 1>;
179 def PseudoDUDIV : MultDivPseudo<DUDIV, ACC128, GPR64Opnd, MipsDivRemU,
180                                 IIIdiv, 0, 1, 1>;
181
182 let isCodeGenOnly = 1 in {
183 def MTHI64 : MoveToLOHI<"mthi", GPR64Opnd, [HI0_64]>, MTLO_FM<0x11>;
184 def MTLO64 : MoveToLOHI<"mtlo", GPR64Opnd, [LO0_64]>, MTLO_FM<0x13>;
185 def MFHI64 : MoveFromLOHI<"mfhi", GPR64Opnd, AC0_64>, MFLO_FM<0x10>;
186 def MFLO64 : MoveFromLOHI<"mflo", GPR64Opnd, AC0_64>, MFLO_FM<0x12>;
187 def PseudoMFHI64 : PseudoMFLOHI<GPR64, ACC128, MipsMFHI>;
188 def PseudoMFLO64 : PseudoMFLOHI<GPR64, ACC128, MipsMFLO>;
189 def PseudoMTLOHI64 : PseudoMTLOHI<ACC128, GPR64>;
190
191 /// Sign Ext In Register Instructions.
192 def SEB64 : SignExtInReg<"seb", i8, GPR64Opnd>, SEB_FM<0x10, 0x20>;
193 def SEH64 : SignExtInReg<"seh", i16, GPR64Opnd>, SEB_FM<0x18, 0x20>;
194 }
195
196 /// Count Leading
197 def DCLZ : CountLeading0<"dclz", GPR64Opnd>, CLO_FM<0x24>;
198 def DCLO : CountLeading1<"dclo", GPR64Opnd>, CLO_FM<0x25>;
199
200 /// Double Word Swap Bytes/HalfWords
201 def DSBH : SubwordSwap<"dsbh", GPR64Opnd>, SEB_FM<2, 0x24>;
202 def DSHD : SubwordSwap<"dshd", GPR64Opnd>, SEB_FM<5, 0x24>;
203
204 def LEA_ADDiu64 : EffectiveAddress<"daddiu", GPR64Opnd>, LW_FM<0x19>;
205
206 let isCodeGenOnly = 1 in
207 def RDHWR64 : ReadHardware<GPR64Opnd, HWRegsOpnd>, RDHWR_FM;
208
209 def DEXT : ExtBase<"dext", GPR64Opnd, uimm6, MipsExt>, EXT_FM<3>;
210 def DEXTU : ExtBase<"dextu", GPR64Opnd, uimm6>, EXT_FM<2>;
211 def DEXTM : ExtBase<"dextm", GPR64Opnd, uimm5>, EXT_FM<1>;
212
213 def DINS : InsBase<"dins", GPR64Opnd, uimm6, MipsIns>, EXT_FM<7>;
214 def DINSU : InsBase<"dinsu", GPR64Opnd, uimm6>, EXT_FM<6>;
215 def DINSM : InsBase<"dinsm", GPR64Opnd, uimm5>, EXT_FM<5>;
216
217 let isCodeGenOnly = 1, rs = 0, shamt = 0 in {
218   def DSLL64_32 : FR<0x00, 0x3c, (outs GPR64:$rd), (ins GPR32:$rt),
219                      "dsll\t$rd, $rt, 32", [], IIArith>;
220   def SLL64_32 : FR<0x0, 0x00, (outs GPR64:$rd), (ins GPR32:$rt),
221                     "sll\t$rd, $rt, 0", [], IIArith>;
222   def SLL64_64 : FR<0x0, 0x00, (outs GPR64:$rd), (ins GPR64:$rt),
223                     "sll\t$rd, $rt, 0", [], IIArith>;
224 }
225 }
226 //===----------------------------------------------------------------------===//
227 //  Arbitrary patterns that map to one or more instructions
228 //===----------------------------------------------------------------------===//
229
230 // extended loads
231 let Predicates = [HasStdEnc] in {
232   def : MipsPat<(i64 (extloadi1  addr:$src)), (LB64 addr:$src)>;
233   def : MipsPat<(i64 (extloadi8  addr:$src)), (LB64 addr:$src)>;
234   def : MipsPat<(i64 (extloadi16 addr:$src)), (LH64 addr:$src)>;
235   def : MipsPat<(i64 (extloadi32 addr:$src)), (LW64 addr:$src)>;
236 }
237
238 // hi/lo relocs
239 def : MipsPat<(MipsHi tglobaladdr:$in), (LUi64 tglobaladdr:$in)>;
240 def : MipsPat<(MipsHi tblockaddress:$in), (LUi64 tblockaddress:$in)>;
241 def : MipsPat<(MipsHi tjumptable:$in), (LUi64 tjumptable:$in)>;
242 def : MipsPat<(MipsHi tconstpool:$in), (LUi64 tconstpool:$in)>;
243 def : MipsPat<(MipsHi tglobaltlsaddr:$in), (LUi64 tglobaltlsaddr:$in)>;
244 def : MipsPat<(MipsHi texternalsym:$in), (LUi64 texternalsym:$in)>;
245
246 def : MipsPat<(MipsLo tglobaladdr:$in), (DADDiu ZERO_64, tglobaladdr:$in)>;
247 def : MipsPat<(MipsLo tblockaddress:$in), (DADDiu ZERO_64, tblockaddress:$in)>;
248 def : MipsPat<(MipsLo tjumptable:$in), (DADDiu ZERO_64, tjumptable:$in)>;
249 def : MipsPat<(MipsLo tconstpool:$in), (DADDiu ZERO_64, tconstpool:$in)>;
250 def : MipsPat<(MipsLo tglobaltlsaddr:$in),
251               (DADDiu ZERO_64, tglobaltlsaddr:$in)>;
252 def : MipsPat<(MipsLo texternalsym:$in), (DADDiu ZERO_64, texternalsym:$in)>;
253
254 def : MipsPat<(add GPR64:$hi, (MipsLo tglobaladdr:$lo)),
255               (DADDiu GPR64:$hi, tglobaladdr:$lo)>;
256 def : MipsPat<(add GPR64:$hi, (MipsLo tblockaddress:$lo)),
257               (DADDiu GPR64:$hi, tblockaddress:$lo)>;
258 def : MipsPat<(add GPR64:$hi, (MipsLo tjumptable:$lo)),
259               (DADDiu GPR64:$hi, tjumptable:$lo)>;
260 def : MipsPat<(add GPR64:$hi, (MipsLo tconstpool:$lo)),
261               (DADDiu GPR64:$hi, tconstpool:$lo)>;
262 def : MipsPat<(add GPR64:$hi, (MipsLo tglobaltlsaddr:$lo)),
263               (DADDiu GPR64:$hi, tglobaltlsaddr:$lo)>;
264
265 def : WrapperPat<tglobaladdr, DADDiu, GPR64>;
266 def : WrapperPat<tconstpool, DADDiu, GPR64>;
267 def : WrapperPat<texternalsym, DADDiu, GPR64>;
268 def : WrapperPat<tblockaddress, DADDiu, GPR64>;
269 def : WrapperPat<tjumptable, DADDiu, GPR64>;
270 def : WrapperPat<tglobaltlsaddr, DADDiu, GPR64>;
271
272 defm : BrcondPats<GPR64, BEQ64, BNE64, SLT64, SLTu64, SLTi64, SLTiu64,
273                   ZERO_64>;
274
275 def : MipsPat<(brcond (i32 (setlt i64:$lhs, 1)), bb:$dst),
276               (BLEZ64 i64:$lhs, bb:$dst)>;
277 def : MipsPat<(brcond (i32 (setgt i64:$lhs, -1)), bb:$dst),
278               (BGEZ64 i64:$lhs, bb:$dst)>;
279
280 // setcc patterns
281 defm : SeteqPats<GPR64, SLTiu64, XOR64, SLTu64, ZERO_64>;
282 defm : SetlePats<GPR64, SLT64, SLTu64>;
283 defm : SetgtPats<GPR64, SLT64, SLTu64>;
284 defm : SetgePats<GPR64, SLT64, SLTu64>;
285 defm : SetgeImmPats<GPR64, SLTi64, SLTiu64>;
286
287 // truncate
288 def : MipsPat<(i32 (trunc GPR64:$src)),
289               (SLL (EXTRACT_SUBREG GPR64:$src, sub_32), 0)>,
290       Requires<[HasStdEnc]>;
291
292 // 32-to-64-bit extension
293 def : MipsPat<(i64 (anyext GPR32:$src)), (SLL64_32 GPR32:$src)>;
294 def : MipsPat<(i64 (zext GPR32:$src)), (DSRL (DSLL64_32 GPR32:$src), 32)>;
295 def : MipsPat<(i64 (sext GPR32:$src)), (SLL64_32 GPR32:$src)>;
296
297 // Sign extend in register
298 def : MipsPat<(i64 (sext_inreg GPR64:$src, i32)),
299               (SLL64_64 GPR64:$src)>;
300
301 // bswap MipsPattern
302 def : MipsPat<(bswap GPR64:$rt), (DSHD (DSBH GPR64:$rt))>;
303
304 //===----------------------------------------------------------------------===//
305 // Instruction aliases
306 //===----------------------------------------------------------------------===//
307 def : InstAlias<"move $dst, $src",
308                 (DADDu GPR64Opnd:$dst,  GPR64Opnd:$src, ZERO_64), 1>,
309       Requires<[HasMips64]>;
310 def : InstAlias<"daddu $rs, $rt, $imm",
311                 (DADDiu GPR64Opnd:$rs, GPR64Opnd:$rt, simm16_64:$imm),
312                 0>;
313 def : InstAlias<"dadd $rs, $rt, $imm",
314                 (DADDi GPR64Opnd:$rs, GPR64Opnd:$rt, simm16_64:$imm),
315                 0>;
316
317 /// Move between CPU and coprocessor registers
318 let DecoderNamespace = "Mips64", Predicates = [HasMips64] in {
319 def DMFC0 : MFC3OP<"dmfc0", GPR64Opnd>, MFC3OP_FM<0x10, 1>;
320 def DMTC0 : MFC3OP<"dmtc0", GPR64Opnd>, MFC3OP_FM<0x10, 5>;
321 def DMFC2 : MFC3OP<"dmfc2", GPR64Opnd>, MFC3OP_FM<0x12, 1>;
322 def DMTC2 : MFC3OP<"dmtc2", GPR64Opnd>, MFC3OP_FM<0x12, 5>;
323 }
324
325 // Two operand (implicit 0 selector) versions:
326 def : InstAlias<"dmfc0 $rt, $rd", (DMFC0 GPR64Opnd:$rt, GPR64Opnd:$rd, 0), 0>;
327 def : InstAlias<"dmtc0 $rt, $rd", (DMTC0 GPR64Opnd:$rt, GPR64Opnd:$rd, 0), 0>;
328 def : InstAlias<"dmfc2 $rt, $rd", (DMFC2 GPR64Opnd:$rt, GPR64Opnd:$rd, 0), 0>;
329 def : InstAlias<"dmtc2 $rt, $rd", (DMTC2 GPR64Opnd:$rt, GPR64Opnd:$rd, 0), 0>;
330