[mips] Refactor load/store left/right and load-link and store-conditional
[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 //===----------------------------------------------------------------------===//
35 // Instructions specific format
36 //===----------------------------------------------------------------------===//
37 // Shifts
38 // 64-bit shift instructions.
39 let DecoderNamespace = "Mips64" in {
40 class shift_rotate_imm64<string opstr, SDPatternOperator OpNode = null_frag>:
41   shift_rotate_imm<opstr, immZExt6, shamt, CPU64Regs, OpNode>;
42
43 // Mul, Div
44 class Mult64<bits<6> func, string instr_asm, InstrItinClass itin>:
45   Mult<func, instr_asm, itin, CPU64Regs, [HI64, LO64]>;
46 class Div64<SDNode op, bits<6> func, string instr_asm, InstrItinClass itin>:
47   Div<op, func, instr_asm, itin, CPU64Regs, [HI64, LO64]>;
48
49 multiclass Atomic2Ops64<PatFrag Op> {
50   def #NAME# : Atomic2Ops<Op, CPU64Regs, CPURegs>,
51                Requires<[NotN64, HasStdEnc]>;
52   def _P8    : Atomic2Ops<Op, CPU64Regs, CPU64Regs>,
53                Requires<[IsN64, HasStdEnc]> {
54     let isCodeGenOnly = 1;
55   }
56 }
57
58 multiclass AtomicCmpSwap64<PatFrag Op>  {
59   def #NAME# : AtomicCmpSwap<Op, CPU64Regs, CPURegs>,
60                Requires<[NotN64, HasStdEnc]>;
61   def _P8    : AtomicCmpSwap<Op, CPU64Regs, CPU64Regs>,
62                Requires<[IsN64, HasStdEnc]> {
63     let isCodeGenOnly = 1;
64   }
65 }
66 }
67 let usesCustomInserter = 1, Predicates = [HasStdEnc],
68   DecoderNamespace = "Mips64" in {
69   defm ATOMIC_LOAD_ADD_I64  : Atomic2Ops64<atomic_load_add_64>;
70   defm ATOMIC_LOAD_SUB_I64  : Atomic2Ops64<atomic_load_sub_64>;
71   defm ATOMIC_LOAD_AND_I64  : Atomic2Ops64<atomic_load_and_64>;
72   defm ATOMIC_LOAD_OR_I64   : Atomic2Ops64<atomic_load_or_64>;
73   defm ATOMIC_LOAD_XOR_I64  : Atomic2Ops64<atomic_load_xor_64>;
74   defm ATOMIC_LOAD_NAND_I64 : Atomic2Ops64<atomic_load_nand_64>;
75   defm ATOMIC_SWAP_I64      : Atomic2Ops64<atomic_swap_64>;
76   defm ATOMIC_CMP_SWAP_I64  : AtomicCmpSwap64<atomic_cmp_swap_64>;
77 }
78
79 //===----------------------------------------------------------------------===//
80 // Instruction definition
81 //===----------------------------------------------------------------------===//
82 let DecoderNamespace = "Mips64" in {
83 /// Arithmetic Instructions (ALU Immediate)
84 def DADDi   : ArithLogicI<"daddi", simm16_64, CPU64Regs>, ADDI_FM<0x18>;
85 def DADDiu  : ArithLogicI<"daddiu", simm16_64, CPU64Regs, immSExt16, add>,
86               ADDI_FM<0x19>, IsAsCheapAsAMove;
87 def DANDi   : ArithLogicI<"andi", uimm16_64, CPU64Regs, immZExt16, and>,
88               ADDI_FM<0xc>;
89 def SLTi64  : SetCC_I<"slti", setlt, simm16_64, immSExt16, CPU64Regs>,
90               SLTI_FM<0xa>;
91 def SLTiu64 : SetCC_I<"sltiu", setult, simm16_64, immSExt16, CPU64Regs>,
92               SLTI_FM<0xb>;
93 def ORi64   : ArithLogicI<"ori", uimm16_64, CPU64Regs, immZExt16, or>,
94               ADDI_FM<0xd>;
95 def XORi64  : ArithLogicI<"xori", uimm16_64, CPU64Regs, immZExt16, xor>,
96               ADDI_FM<0xe>;
97 def LUi64   : LoadUpper<"lui", CPU64Regs, uimm16_64>, LUI_FM;
98
99 /// Arithmetic Instructions (3-Operand, R-Type)
100 def DADD   : ArithLogicR<"dadd", CPU64Regs>, ADD_FM<0, 0x2c>;
101 def DADDu  : ArithLogicR<"daddu", CPU64Regs, 1, IIAlu, add>, ADD_FM<0, 0x2d>;
102 def DSUBu  : ArithLogicR<"dsubu", CPU64Regs, 0, IIAlu, sub>, ADD_FM<0, 0x2f>;
103 def SLT64  : SetCC_R<"slt", setlt, CPU64Regs>, ADD_FM<0, 0x2a>;
104 def SLTu64 : SetCC_R<"sltu", setult, CPU64Regs>, ADD_FM<0, 0x2b>;
105 def AND64  : ArithLogicR<"and", CPU64Regs, 1, IIAlu, and>, ADD_FM<0, 0x24>;
106 def OR64   : ArithLogicR<"or", CPU64Regs, 1, IIAlu, or>, ADD_FM<0, 0x25>;
107 def XOR64  : ArithLogicR<"xor", CPU64Regs, 1, IIAlu, xor>, ADD_FM<0, 0x26>;
108 def NOR64  : LogicNOR<"nor", CPU64Regs>, ADD_FM<0, 0x27>;
109
110 /// Shift Instructions
111 def DSLL   : shift_rotate_imm64<"dsll", shl>, SRA_FM<0x38, 0>;
112 def DSRL   : shift_rotate_imm64<"dsrl", srl>, SRA_FM<0x3a, 0>;
113 def DSRA   : shift_rotate_imm64<"dsra", sra>, SRA_FM<0x3b, 0>;
114 def DSLLV  : shift_rotate_reg<"dsllv", shl, CPU64Regs>, SRLV_FM<0x14, 0>;
115 def DSRLV  : shift_rotate_reg<"dsrlv", srl, CPU64Regs>, SRLV_FM<0x16, 0>;
116 def DSRAV  : shift_rotate_reg<"dsrav", sra, CPU64Regs>, SRLV_FM<0x17, 0>;
117 def DSLL32 : shift_rotate_imm64<"dsll32">, SRA_FM<0x3c, 0>;
118 def DSRL32 : shift_rotate_imm64<"dsrl32">, SRA_FM<0x3e, 0>;
119 def DSRA32 : shift_rotate_imm64<"dsra32">, SRA_FM<0x3f, 0>;
120 }
121 // Rotate Instructions
122 let Predicates = [HasMips64r2, HasStdEnc],
123     DecoderNamespace = "Mips64" in {
124   def DROTR  : shift_rotate_imm64<"drotr", rotr>, SRA_FM<0x3a, 1>;
125   def DROTRV : shift_rotate_reg<"drotrv", rotr, CPU64Regs>, SRLV_FM<0x16, 1>;
126 }
127
128 let DecoderNamespace = "Mips64" in {
129 /// Load and Store Instructions
130 ///  aligned
131 defm LB64  : LoadM<"lb", sextloadi8, CPU64Regs>, LW_FM<0x20>;
132 defm LBu64 : LoadM<"lbu", zextloadi8, CPU64Regs>, LW_FM<0x24>;
133 defm LH64  : LoadM<"lh", sextloadi16, CPU64Regs>, LW_FM<0x21>;
134 defm LHu64 : LoadM<"lhu", zextloadi16, CPU64Regs>, LW_FM<0x25>;
135 defm LW64  : LoadM<"lw", sextloadi32, CPU64Regs>, LW_FM<0x23>;
136 defm LWu64 : LoadM<"lwu", zextloadi32, CPU64Regs>, LW_FM<0x27>;
137 defm SB64  : StoreM<"sb", truncstorei8, CPU64Regs>, LW_FM<0x28>;
138 defm SH64  : StoreM<"sh", truncstorei16, CPU64Regs>, LW_FM<0x29>;
139 defm SW64  : StoreM<"sw", truncstorei32, CPU64Regs>, LW_FM<0x2b>;
140 defm LD    : LoadM<"ld", load, CPU64Regs>, LW_FM<0x37>;
141 defm SD    : StoreM<"sd", store, CPU64Regs>, LW_FM<0x3f>;
142
143 /// load/store left/right
144 let isCodeGenOnly = 1 in {
145   defm LWL64 : LoadLeftRightM<"lwl", MipsLWL, CPU64Regs>, LW_FM<0x22>;
146   defm LWR64 : LoadLeftRightM<"lwr", MipsLWR, CPU64Regs>, LW_FM<0x26>;
147   defm SWL64 : StoreLeftRightM<"swl", MipsSWL, CPU64Regs>, LW_FM<0x2a>;
148   defm SWR64 : StoreLeftRightM<"swr", MipsSWR, CPU64Regs>, LW_FM<0x2e>;
149 }
150 defm LDL   : LoadLeftRightM<"ldl", MipsLDL, CPU64Regs>, LW_FM<0x1a>;
151 defm LDR   : LoadLeftRightM<"ldr", MipsLDR, CPU64Regs>, LW_FM<0x1b>;
152 defm SDL   : StoreLeftRightM<"sdl", MipsSDL, CPU64Regs>, LW_FM<0x2c>;
153 defm SDR   : StoreLeftRightM<"sdr", MipsSDR, CPU64Regs>, LW_FM<0x2d>;
154
155 /// Load-linked, Store-conditional
156 let Predicates = [NotN64, HasStdEnc] in {
157   def LLD : LLBase<"lld", CPU64Regs, mem>, LW_FM<0x34>;
158   def SCD : SCBase<"scd", CPU64Regs, mem>, LW_FM<0x3c>;
159 }
160
161 let Predicates = [IsN64, HasStdEnc], isCodeGenOnly = 1 in {
162   def LLD_P8 : LLBase<"lld", CPU64Regs, mem64>, LW_FM<0x34>;
163   def SCD_P8 : SCBase<"scd", CPU64Regs, mem64>, LW_FM<0x3c>;
164 }
165
166 /// Jump and Branch Instructions
167 def JR64   : IndirectBranch<CPU64Regs>;
168 def BEQ64  : CBranch<"beq", seteq, CPU64Regs>, BEQ_FM<4>;
169 def BNE64  : CBranch<"bne", setne, CPU64Regs>, BEQ_FM<5>;
170 def BGEZ64 : CBranchZero<"bgez", setge, CPU64Regs>, BGEZ_FM<1, 1>;
171 def BGTZ64 : CBranchZero<"bgtz", setgt, CPU64Regs>, BGEZ_FM<7, 0>;
172 def BLEZ64 : CBranchZero<"blez", setle, CPU64Regs>, BGEZ_FM<6, 0>;
173 def BLTZ64 : CBranchZero<"bltz", setlt, CPU64Regs>, BGEZ_FM<1, 0>;
174 }
175 let DecoderNamespace = "Mips64" in
176 def JALR64 : JumpLinkReg<0x00, 0x09, "jalr", CPU64Regs>;
177 def TAILCALL64_R : JumpFR<CPU64Regs, MipsTailCall>, IsTailCall;
178
179 let DecoderNamespace = "Mips64" in {
180 /// Multiply and Divide Instructions.
181 def DMULT    : Mult64<0x1c, "dmult", IIImul>;
182 def DMULTu   : Mult64<0x1d, "dmultu", IIImul>;
183 def DSDIV    : Div64<MipsDivRem, 0x1e, "ddiv", IIIdiv>;
184 def DUDIV    : Div64<MipsDivRemU, 0x1f, "ddivu", IIIdiv>;
185
186 def MTHI64 : MoveToLOHI<"mthi", CPU64Regs, [HI64]>, MTLO_FM<0x11>;
187 def MTLO64 : MoveToLOHI<"mtlo", CPU64Regs, [LO64]>, MTLO_FM<0x13>;
188 def MFHI64 : MoveFromLOHI<"mfhi", CPU64Regs, [HI64]>, MFLO_FM<0x10>;
189 def MFLO64 : MoveFromLOHI<"mflo", CPU64Regs, [LO64]>, MFLO_FM<0x12>;
190
191 /// Sign Ext In Register Instructions.
192 def SEB64 : SignExtInReg<"seb", i8, CPU64Regs>, SEB_FM<0x10>;
193 def SEH64 : SignExtInReg<"seh", i16, CPU64Regs>, SEB_FM<0x18>;
194
195 /// Count Leading
196 def DCLZ : CountLeading0<"dclz", CPU64Regs>, CLO_FM<0x24>;
197 def DCLO : CountLeading1<"dclo", CPU64Regs>, CLO_FM<0x25>;
198
199 /// Double Word Swap Bytes/HalfWords
200 def DSBH : SubwordSwap<0x24, 0x2, "dsbh", CPU64Regs>;
201 def DSHD : SubwordSwap<0x24, 0x5, "dshd", CPU64Regs>;
202
203 def LEA_ADDiu64 : EffectiveAddress<0x19,"daddiu\t$rt, $addr", CPU64Regs, mem_ea_64>;
204 }
205 let DecoderNamespace = "Mips64" in {
206 def RDHWR64 : ReadHardware<CPU64Regs, HWRegs64>;
207
208 def DEXT : ExtBase<3, "dext", CPU64Regs>;
209 let Pattern = []<dag> in {
210   def DEXTU : ExtBase<2, "dextu", CPU64Regs>;
211   def DEXTM : ExtBase<1, "dextm", CPU64Regs>;
212 }
213 def DINS : InsBase<7, "dins", CPU64Regs>;
214 let Pattern = []<dag> in {
215   def DINSU : InsBase<6, "dinsu", CPU64Regs>;
216   def DINSM : InsBase<5, "dinsm", CPU64Regs>;
217 }
218
219 let isCodeGenOnly = 1, rs = 0, shamt = 0 in {
220   def DSLL64_32 : FR<0x00, 0x3c, (outs CPU64Regs:$rd), (ins CPURegs:$rt),
221                      "dsll\t$rd, $rt, 32", [], IIAlu>;
222   def SLL64_32 : FR<0x0, 0x00, (outs CPU64Regs:$rd), (ins CPURegs:$rt),
223                     "sll\t$rd, $rt, 0", [], IIAlu>;
224   def SLL64_64 : FR<0x0, 0x00, (outs CPU64Regs:$rd), (ins CPU64Regs:$rt),
225                     "sll\t$rd, $rt, 0", [], IIAlu>;
226 }
227 }
228 //===----------------------------------------------------------------------===//
229 //  Arbitrary patterns that map to one or more instructions
230 //===----------------------------------------------------------------------===//
231
232 // extended loads
233 let Predicates = [NotN64, HasStdEnc] in {
234   def : MipsPat<(i64 (extloadi1  addr:$src)), (LB64 addr:$src)>;
235   def : MipsPat<(i64 (extloadi8  addr:$src)), (LB64 addr:$src)>;
236   def : MipsPat<(i64 (extloadi16 addr:$src)), (LH64 addr:$src)>;
237   def : MipsPat<(i64 (extloadi32 addr:$src)), (LW64 addr:$src)>;
238 }
239 let Predicates = [IsN64, HasStdEnc] in {
240   def : MipsPat<(i64 (extloadi1  addr:$src)), (LB64_P8 addr:$src)>;
241   def : MipsPat<(i64 (extloadi8  addr:$src)), (LB64_P8 addr:$src)>;
242   def : MipsPat<(i64 (extloadi16 addr:$src)), (LH64_P8 addr:$src)>;
243   def : MipsPat<(i64 (extloadi32 addr:$src)), (LW64_P8 addr:$src)>;
244 }
245
246 // hi/lo relocs
247 def : MipsPat<(MipsHi tglobaladdr:$in), (LUi64 tglobaladdr:$in)>;
248 def : MipsPat<(MipsHi tblockaddress:$in), (LUi64 tblockaddress:$in)>;
249 def : MipsPat<(MipsHi tjumptable:$in), (LUi64 tjumptable:$in)>;
250 def : MipsPat<(MipsHi tconstpool:$in), (LUi64 tconstpool:$in)>;
251 def : MipsPat<(MipsHi tglobaltlsaddr:$in), (LUi64 tglobaltlsaddr:$in)>;
252 def : MipsPat<(MipsHi texternalsym:$in), (LUi64 texternalsym:$in)>;
253
254 def : MipsPat<(MipsLo tglobaladdr:$in), (DADDiu ZERO_64, tglobaladdr:$in)>;
255 def : MipsPat<(MipsLo tblockaddress:$in), (DADDiu ZERO_64, tblockaddress:$in)>;
256 def : MipsPat<(MipsLo tjumptable:$in), (DADDiu ZERO_64, tjumptable:$in)>;
257 def : MipsPat<(MipsLo tconstpool:$in), (DADDiu ZERO_64, tconstpool:$in)>;
258 def : MipsPat<(MipsLo tglobaltlsaddr:$in),
259               (DADDiu ZERO_64, tglobaltlsaddr:$in)>;
260 def : MipsPat<(MipsLo texternalsym:$in), (DADDiu ZERO_64, texternalsym:$in)>;
261
262 def : MipsPat<(add CPU64Regs:$hi, (MipsLo tglobaladdr:$lo)),
263               (DADDiu CPU64Regs:$hi, tglobaladdr:$lo)>;
264 def : MipsPat<(add CPU64Regs:$hi, (MipsLo tblockaddress:$lo)),
265               (DADDiu CPU64Regs:$hi, tblockaddress:$lo)>;
266 def : MipsPat<(add CPU64Regs:$hi, (MipsLo tjumptable:$lo)),
267               (DADDiu CPU64Regs:$hi, tjumptable:$lo)>;
268 def : MipsPat<(add CPU64Regs:$hi, (MipsLo tconstpool:$lo)),
269               (DADDiu CPU64Regs:$hi, tconstpool:$lo)>;
270 def : MipsPat<(add CPU64Regs:$hi, (MipsLo tglobaltlsaddr:$lo)),
271               (DADDiu CPU64Regs:$hi, tglobaltlsaddr:$lo)>;
272
273 def : WrapperPat<tglobaladdr, DADDiu, CPU64Regs>;
274 def : WrapperPat<tconstpool, DADDiu, CPU64Regs>;
275 def : WrapperPat<texternalsym, DADDiu, CPU64Regs>;
276 def : WrapperPat<tblockaddress, DADDiu, CPU64Regs>;
277 def : WrapperPat<tjumptable, DADDiu, CPU64Regs>;
278 def : WrapperPat<tglobaltlsaddr, DADDiu, CPU64Regs>;
279
280 defm : BrcondPats<CPU64Regs, BEQ64, BNE64, SLT64, SLTu64, SLTi64, SLTiu64,
281                   ZERO_64>;
282
283 // setcc patterns
284 defm : SeteqPats<CPU64Regs, SLTiu64, XOR64, SLTu64, ZERO_64>;
285 defm : SetlePats<CPU64Regs, SLT64, SLTu64>;
286 defm : SetgtPats<CPU64Regs, SLT64, SLTu64>;
287 defm : SetgePats<CPU64Regs, SLT64, SLTu64>;
288 defm : SetgeImmPats<CPU64Regs, SLTi64, SLTiu64>;
289
290 // truncate
291 def : MipsPat<(i32 (trunc CPU64Regs:$src)),
292               (SLL (EXTRACT_SUBREG CPU64Regs:$src, sub_32), 0)>,
293       Requires<[IsN64, HasStdEnc]>;
294
295 // 32-to-64-bit extension
296 def : MipsPat<(i64 (anyext CPURegs:$src)), (SLL64_32 CPURegs:$src)>;
297 def : MipsPat<(i64 (zext CPURegs:$src)), (DSRL (DSLL64_32 CPURegs:$src), 32)>;
298 def : MipsPat<(i64 (sext CPURegs:$src)), (SLL64_32 CPURegs:$src)>;
299
300 // Sign extend in register
301 def : MipsPat<(i64 (sext_inreg CPU64Regs:$src, i32)),
302               (SLL64_64 CPU64Regs:$src)>;
303
304 // bswap MipsPattern
305 def : MipsPat<(bswap CPU64Regs:$rt), (DSHD (DSBH CPU64Regs:$rt))>;
306
307 //===----------------------------------------------------------------------===//
308 // Instruction aliases
309 //===----------------------------------------------------------------------===//
310 def : InstAlias<"move $dst,$src", (DADD CPU64Regs:$dst,CPU64Regs:$src,ZERO_64)>;
311
312 /// Move between CPU and coprocessor registers
313 let DecoderNamespace = "Mips64" in {
314 def MFC0_3OP64  : MFC3OP<0x10, 0, (outs CPU64Regs:$rt), 
315                        (ins CPU64Regs:$rd, uimm16:$sel),"mfc0\t$rt, $rd, $sel">;
316 def MTC0_3OP64  : MFC3OP<0x10, 4, (outs CPU64Regs:$rd, uimm16:$sel),
317                        (ins CPU64Regs:$rt),"mtc0\t$rt, $rd, $sel">;
318 def MFC2_3OP64  : MFC3OP<0x12, 0, (outs CPU64Regs:$rt),
319                        (ins CPU64Regs:$rd, uimm16:$sel),"mfc2\t$rt, $rd, $sel">;
320 def MTC2_3OP64  : MFC3OP<0x12, 4, (outs CPU64Regs:$rd, uimm16:$sel),
321                        (ins CPU64Regs:$rt),"mtc2\t$rt, $rd, $sel">;
322 def DMFC0_3OP64  : MFC3OP<0x10, 1, (outs CPU64Regs:$rt), 
323                        (ins CPU64Regs:$rd, uimm16:$sel),"dmfc0\t$rt, $rd, $sel">;
324 def DMTC0_3OP64  : MFC3OP<0x10, 5, (outs CPU64Regs:$rd, uimm16:$sel),
325                        (ins CPU64Regs:$rt),"dmtc0\t$rt, $rd, $sel">;
326 def DMFC2_3OP64  : MFC3OP<0x12, 1, (outs CPU64Regs:$rt),
327                        (ins CPU64Regs:$rd, uimm16:$sel),"dmfc2\t$rt, $rd, $sel">;
328 def DMTC2_3OP64  : MFC3OP<0x12, 5, (outs CPU64Regs:$rd, uimm16:$sel),
329                        (ins CPU64Regs:$rt),"dmtc2\t$rt, $rd, $sel">;
330 }
331 // Two operand (implicit 0 selector) versions:
332 def : InstAlias<"mfc0 $rt, $rd", (MFC0_3OP64 CPU64Regs:$rt, CPU64Regs:$rd, 0)>;
333 def : InstAlias<"mtc0 $rt, $rd", (MTC0_3OP64 CPU64Regs:$rd, 0, CPU64Regs:$rt)>;
334 def : InstAlias<"mfc2 $rt, $rd", (MFC2_3OP64 CPU64Regs:$rt, CPU64Regs:$rd, 0)>;
335 def : InstAlias<"mtc2 $rt, $rd", (MTC2_3OP64 CPU64Regs:$rd, 0, CPU64Regs:$rt)>;
336 def : InstAlias<"dmfc0 $rt, $rd", (DMFC0_3OP64 CPU64Regs:$rt, CPU64Regs:$rd, 0)>;
337 def : InstAlias<"dmtc0 $rt, $rd", (DMTC0_3OP64 CPU64Regs:$rd, 0, CPU64Regs:$rt)>;
338 def : InstAlias<"dmfc2 $rt, $rd", (DMFC2_3OP64 CPU64Regs:$rt, CPU64Regs:$rd, 0)>;
339 def : InstAlias<"dmtc2 $rt, $rd", (DMTC2_3OP64 CPU64Regs:$rd, 0, CPU64Regs:$rt)>;
340