R600/SI: Fix VOP3b encoding on VI
[oota-llvm.git] / lib / Target / R600 / SIInstrInfo.td
1 //===-- SIInstrInfo.td - SI Instruction Infos -------------*- 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 class vop {
11   field bits<9> SI3;
12   field bits<10> VI3;
13 }
14
15 class vopc <bits<8> si, bits<8> vi = !add(0x40, si)> : vop {
16   field bits<8> SI = si;
17   field bits<8> VI = vi;
18
19   field bits<9>  SI3 = {0, si{7-0}};
20   field bits<10> VI3 = {0, 0, vi{7-0}};
21 }
22
23 class vop1 <bits<8> si, bits<8> vi = si> : vop {
24   field bits<8> SI = si;
25   field bits<8> VI = vi;
26
27   field bits<9>  SI3 = {1, 1, si{6-0}};
28   field bits<10> VI3 = !add(0x140, vi);
29 }
30
31 class vop2 <bits<6> si, bits<6> vi = si> : vop {
32   field bits<6> SI = si;
33   field bits<6> VI = vi;
34
35   field bits<9>  SI3 = {1, 0, 0, si{5-0}};
36   field bits<10> VI3 = {0, 1, 0, 0, vi{5-0}};
37 }
38
39 // Specify a VOP2 opcode for SI and VOP3 opcode for VI
40 // that doesn't have VOP2 encoding on VI
41 class vop23 <bits<6> si, bits<10> vi> : vop2 <si> {
42   let VI3 = vi;
43 }
44
45 class vop3 <bits<9> si, bits<10> vi = {0, si}> : vop {
46   let SI3 = si;
47   let VI3 = vi;
48 }
49
50 class sop1 <bits<8> si, bits<8> vi = si> {
51   field bits<8> SI = si;
52   field bits<8> VI = vi;
53 }
54
55 class sop2 <bits<7> si, bits<7> vi = si> {
56   field bits<7> SI = si;
57   field bits<7> VI = vi;
58 }
59
60 class sopk <bits<5> si, bits<5> vi = si> {
61   field bits<5> SI = si;
62   field bits<5> VI = vi;
63 }
64
65 // Execpt for the NONE field, this must be kept in sync with the SISubtarget enum
66 // in AMDGPUInstrInfo.cpp
67 def SISubtarget {
68   int NONE = -1;
69   int SI = 0;
70   int VI = 1;
71 }
72
73 //===----------------------------------------------------------------------===//
74 // SI DAG Nodes
75 //===----------------------------------------------------------------------===//
76
77 def SIload_constant : SDNode<"AMDGPUISD::LOAD_CONSTANT",
78   SDTypeProfile<1, 2, [SDTCisVT<0, f32>, SDTCisVT<1, v4i32>, SDTCisVT<2, i32>]>,
79                       [SDNPMayLoad, SDNPMemOperand]
80 >;
81
82 def SItbuffer_store : SDNode<"AMDGPUISD::TBUFFER_STORE_FORMAT",
83   SDTypeProfile<0, 13,
84     [SDTCisVT<0, v4i32>,   // rsrc(SGPR)
85      SDTCisVT<1, iAny>,   // vdata(VGPR)
86      SDTCisVT<2, i32>,    // num_channels(imm)
87      SDTCisVT<3, i32>,    // vaddr(VGPR)
88      SDTCisVT<4, i32>,    // soffset(SGPR)
89      SDTCisVT<5, i32>,    // inst_offset(imm)
90      SDTCisVT<6, i32>,    // dfmt(imm)
91      SDTCisVT<7, i32>,    // nfmt(imm)
92      SDTCisVT<8, i32>,    // offen(imm)
93      SDTCisVT<9, i32>,    // idxen(imm)
94      SDTCisVT<10, i32>,   // glc(imm)
95      SDTCisVT<11, i32>,   // slc(imm)
96      SDTCisVT<12, i32>    // tfe(imm)
97     ]>,
98   [SDNPMayStore, SDNPMemOperand, SDNPHasChain]
99 >;
100
101 def SIload_input : SDNode<"AMDGPUISD::LOAD_INPUT",
102   SDTypeProfile<1, 3, [SDTCisVT<0, v4f32>, SDTCisVT<1, v4i32>, SDTCisVT<2, i16>,
103                        SDTCisVT<3, i32>]>
104 >;
105
106 class SDSample<string opcode> : SDNode <opcode,
107   SDTypeProfile<1, 4, [SDTCisVT<0, v4f32>, SDTCisVT<2, v32i8>,
108                        SDTCisVT<3, v4i32>, SDTCisVT<4, i32>]>
109 >;
110
111 def SIsample : SDSample<"AMDGPUISD::SAMPLE">;
112 def SIsampleb : SDSample<"AMDGPUISD::SAMPLEB">;
113 def SIsampled : SDSample<"AMDGPUISD::SAMPLED">;
114 def SIsamplel : SDSample<"AMDGPUISD::SAMPLEL">;
115
116 def SIconstdata_ptr : SDNode<
117   "AMDGPUISD::CONST_DATA_PTR", SDTypeProfile <1, 0, [SDTCisVT<0, i64>]>
118 >;
119
120 // Transformation function, extract the lower 32bit of a 64bit immediate
121 def LO32 : SDNodeXForm<imm, [{
122   return CurDAG->getTargetConstant(N->getZExtValue() & 0xffffffff, MVT::i32);
123 }]>;
124
125 def LO32f : SDNodeXForm<fpimm, [{
126   APInt V = N->getValueAPF().bitcastToAPInt().trunc(32);
127   return CurDAG->getTargetConstantFP(APFloat(APFloat::IEEEsingle, V), MVT::f32);
128 }]>;
129
130 // Transformation function, extract the upper 32bit of a 64bit immediate
131 def HI32 : SDNodeXForm<imm, [{
132   return CurDAG->getTargetConstant(N->getZExtValue() >> 32, MVT::i32);
133 }]>;
134
135 def HI32f : SDNodeXForm<fpimm, [{
136   APInt V = N->getValueAPF().bitcastToAPInt().lshr(32).trunc(32);
137   return CurDAG->getTargetConstantFP(APFloat(APFloat::IEEEsingle, V), MVT::f32);
138 }]>;
139
140 def IMM8bitDWORD : PatLeaf <(imm),
141   [{return (N->getZExtValue() & ~0x3FC) == 0;}]
142 >;
143
144 def as_dword_i32imm : SDNodeXForm<imm, [{
145   return CurDAG->getTargetConstant(N->getZExtValue() >> 2, MVT::i32);
146 }]>;
147
148 def as_i1imm : SDNodeXForm<imm, [{
149   return CurDAG->getTargetConstant(N->getZExtValue(), MVT::i1);
150 }]>;
151
152 def as_i8imm : SDNodeXForm<imm, [{
153   return CurDAG->getTargetConstant(N->getZExtValue(), MVT::i8);
154 }]>;
155
156 def as_i16imm : SDNodeXForm<imm, [{
157   return CurDAG->getTargetConstant(N->getSExtValue(), MVT::i16);
158 }]>;
159
160 def as_i32imm: SDNodeXForm<imm, [{
161   return CurDAG->getTargetConstant(N->getSExtValue(), MVT::i32);
162 }]>;
163
164 def as_i64imm: SDNodeXForm<imm, [{
165   return CurDAG->getTargetConstant(N->getSExtValue(), MVT::i64);
166 }]>;
167
168 // Copied from the AArch64 backend:
169 def bitcast_fpimm_to_i32 : SDNodeXForm<fpimm, [{
170 return CurDAG->getTargetConstant(
171   N->getValueAPF().bitcastToAPInt().getZExtValue(), MVT::i32);
172 }]>;
173
174 // Copied from the AArch64 backend:
175 def bitcast_fpimm_to_i64 : SDNodeXForm<fpimm, [{
176 return CurDAG->getTargetConstant(
177   N->getValueAPF().bitcastToAPInt().getZExtValue(), MVT::i64);
178 }]>;
179
180 def IMM8bit : PatLeaf <(imm),
181   [{return isUInt<8>(N->getZExtValue());}]
182 >;
183
184 def IMM12bit : PatLeaf <(imm),
185   [{return isUInt<12>(N->getZExtValue());}]
186 >;
187
188 def IMM16bit : PatLeaf <(imm),
189   [{return isUInt<16>(N->getZExtValue());}]
190 >;
191
192 def IMM20bit : PatLeaf <(imm),
193   [{return isUInt<20>(N->getZExtValue());}]
194 >;
195
196 def IMM32bit : PatLeaf <(imm),
197   [{return isUInt<32>(N->getZExtValue());}]
198 >;
199
200 def mubuf_vaddr_offset : PatFrag<
201   (ops node:$ptr, node:$offset, node:$imm_offset),
202   (add (add node:$ptr, node:$offset), node:$imm_offset)
203 >;
204
205 class InlineImm <ValueType vt> : PatLeaf <(vt imm), [{
206   return isInlineImmediate(N);
207 }]>;
208
209 class InlineFPImm <ValueType vt> : PatLeaf <(vt fpimm), [{
210   return isInlineImmediate(N);
211 }]>;
212
213 class SGPRImm <dag frag> : PatLeaf<frag, [{
214   if (Subtarget->getGeneration() < AMDGPUSubtarget::SOUTHERN_ISLANDS) {
215     return false;
216   }
217   const SIRegisterInfo *SIRI =
218       static_cast<const SIRegisterInfo *>(Subtarget->getRegisterInfo());
219   for (SDNode::use_iterator U = N->use_begin(), E = SDNode::use_end();
220                                                 U != E; ++U) {
221     if (SIRI->isSGPRClass(getOperandRegClass(*U, U.getOperandNo()))) {
222       return true;
223     }
224   }
225   return false;
226 }]>;
227
228 //===----------------------------------------------------------------------===//
229 // Custom Operands
230 //===----------------------------------------------------------------------===//
231
232 def FRAMEri32 : Operand<iPTR> {
233   let MIOperandInfo = (ops i32:$ptr, i32imm:$index);
234 }
235
236 def sopp_brtarget : Operand<OtherVT> {
237   let EncoderMethod = "getSOPPBrEncoding";
238   let OperandType = "OPERAND_PCREL";
239 }
240
241 include "SIInstrFormats.td"
242 include "VIInstrFormats.td"
243
244 let OperandType = "OPERAND_IMMEDIATE" in {
245
246 def offen : Operand<i1> {
247   let PrintMethod = "printOffen";
248 }
249 def idxen : Operand<i1> {
250   let PrintMethod = "printIdxen";
251 }
252 def addr64 : Operand<i1> {
253   let PrintMethod = "printAddr64";
254 }
255 def mbuf_offset : Operand<i16> {
256   let PrintMethod = "printMBUFOffset";
257 }
258 def ds_offset : Operand<i16> {
259   let PrintMethod = "printDSOffset";
260 }
261 def ds_offset0 : Operand<i8> {
262   let PrintMethod = "printDSOffset0";
263 }
264 def ds_offset1 : Operand<i8> {
265   let PrintMethod = "printDSOffset1";
266 }
267 def glc : Operand <i1> {
268   let PrintMethod = "printGLC";
269 }
270 def slc : Operand <i1> {
271   let PrintMethod = "printSLC";
272 }
273 def tfe : Operand <i1> {
274   let PrintMethod = "printTFE";
275 }
276
277 def omod : Operand <i32> {
278   let PrintMethod = "printOModSI";
279 }
280
281 def ClampMod : Operand <i1> {
282   let PrintMethod = "printClampSI";
283 }
284
285 } // End OperandType = "OPERAND_IMMEDIATE"
286
287 //===----------------------------------------------------------------------===//
288 // Complex patterns
289 //===----------------------------------------------------------------------===//
290
291 def DS1Addr1Offset : ComplexPattern<i32, 2, "SelectDS1Addr1Offset">;
292 def DS64Bit4ByteAligned : ComplexPattern<i32, 3, "SelectDS64Bit4ByteAligned">;
293
294 def MUBUFAddr32 : ComplexPattern<i64, 9, "SelectMUBUFAddr32">;
295 def MUBUFAddr64 : ComplexPattern<i64, 4, "SelectMUBUFAddr64">;
296 def MUBUFAddr64Atomic : ComplexPattern<i64, 5, "SelectMUBUFAddr64">;
297 def MUBUFScratch : ComplexPattern<i64, 4, "SelectMUBUFScratch">;
298 def MUBUFOffset : ComplexPattern<i64, 6, "SelectMUBUFOffset">;
299 def MUBUFOffsetAtomic : ComplexPattern<i64, 4, "SelectMUBUFOffset">;
300
301 def VOP3Mods0 : ComplexPattern<untyped, 4, "SelectVOP3Mods0">;
302 def VOP3Mods0Clamp : ComplexPattern<untyped, 3, "SelectVOP3Mods0Clamp">;
303 def VOP3Mods0Clamp0OMod : ComplexPattern<untyped, 4, "SelectVOP3Mods0Clamp0OMod">;
304 def VOP3Mods  : ComplexPattern<untyped, 2, "SelectVOP3Mods">;
305
306 //===----------------------------------------------------------------------===//
307 // SI assembler operands
308 //===----------------------------------------------------------------------===//
309
310 def SIOperand {
311   int ZERO = 0x80;
312   int VCC = 0x6A;
313   int FLAT_SCR = 0x68;
314 }
315
316 def SRCMODS {
317   int NONE = 0;
318 }
319
320 def DSTCLAMP {
321   int NONE = 0;
322 }
323
324 def DSTOMOD {
325   int NONE = 0;
326 }
327
328 //===----------------------------------------------------------------------===//
329 //
330 // SI Instruction multiclass helpers.
331 //
332 // Instructions with _32 take 32-bit operands.
333 // Instructions with _64 take 64-bit operands.
334 //
335 // VOP_* instructions can use either a 32-bit or 64-bit encoding.  The 32-bit
336 // encoding is the standard encoding, but instruction that make use of
337 // any of the instruction modifiers must use the 64-bit encoding.
338 //
339 // Instructions with _e32 use the 32-bit encoding.
340 // Instructions with _e64 use the 64-bit encoding.
341 //
342 //===----------------------------------------------------------------------===//
343
344 class SIMCInstr <string pseudo, int subtarget> {
345   string PseudoInstr = pseudo;
346   int Subtarget = subtarget;
347 }
348
349 //===----------------------------------------------------------------------===//
350 // EXP classes
351 //===----------------------------------------------------------------------===//
352
353 class EXPCommon : InstSI<
354   (outs),
355   (ins i32imm:$en, i32imm:$tgt, i32imm:$compr, i32imm:$done, i32imm:$vm,
356        VGPR_32:$src0, VGPR_32:$src1, VGPR_32:$src2, VGPR_32:$src3),
357   "exp $en, $tgt, $compr, $done, $vm, $src0, $src1, $src2, $src3",
358   [] > {
359
360   let EXP_CNT = 1;
361   let Uses = [EXEC];
362 }
363
364 multiclass EXP_m {
365
366   let isPseudo = 1 in {
367     def "" : EXPCommon, SIMCInstr <"exp", SISubtarget.NONE> ;
368   }
369
370   def _si : EXPCommon, SIMCInstr <"exp", SISubtarget.SI>, EXPe;
371
372   def _vi : EXPCommon, SIMCInstr <"exp", SISubtarget.VI>, EXPe_vi;
373 }
374
375 //===----------------------------------------------------------------------===//
376 // Scalar classes
377 //===----------------------------------------------------------------------===//
378
379 class SOP1_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
380   SOP1 <outs, ins, "", pattern>,
381   SIMCInstr<opName, SISubtarget.NONE> {
382   let isPseudo = 1;
383 }
384
385 class SOP1_Real_si <sop1 op, string opName, dag outs, dag ins, string asm> :
386   SOP1 <outs, ins, asm, []>,
387   SOP1e <op.SI>,
388   SIMCInstr<opName, SISubtarget.SI>;
389
390 class SOP1_Real_vi <sop1 op, string opName, dag outs, dag ins, string asm> :
391   SOP1 <outs, ins, asm, []>,
392   SOP1e <op.VI>,
393   SIMCInstr<opName, SISubtarget.VI>;
394
395 multiclass SOP1_m <sop1 op, string opName, dag outs, dag ins, string asm,
396                    list<dag> pattern> {
397
398   def "" : SOP1_Pseudo <opName, outs, ins, pattern>;
399
400   def _si : SOP1_Real_si <op, opName, outs, ins, asm>;
401
402   def _vi : SOP1_Real_vi <op, opName, outs, ins, asm>;
403
404 }
405
406 multiclass SOP1_32 <sop1 op, string opName, list<dag> pattern> : SOP1_m <
407     op, opName, (outs SReg_32:$dst), (ins SSrc_32:$src0),
408     opName#" $dst, $src0", pattern
409 >;
410
411 multiclass SOP1_64 <sop1 op, string opName, list<dag> pattern> : SOP1_m <
412     op, opName, (outs SReg_64:$dst), (ins SSrc_64:$src0),
413     opName#" $dst, $src0", pattern
414 >;
415
416 // no input, 64-bit output.
417 multiclass SOP1_64_0 <sop1 op, string opName, list<dag> pattern> {
418   def "" : SOP1_Pseudo <opName, (outs SReg_64:$dst), (ins), pattern>;
419
420   def _si : SOP1_Real_si <op, opName, (outs SReg_64:$dst), (ins),
421     opName#" $dst"> {
422     let SSRC0 = 0;
423   }
424
425   def _vi : SOP1_Real_vi <op, opName, (outs SReg_64:$dst), (ins),
426     opName#" $dst"> {
427     let SSRC0 = 0;
428   }
429 }
430
431 // 64-bit input, 32-bit output.
432 multiclass SOP1_32_64 <sop1 op, string opName, list<dag> pattern> : SOP1_m <
433     op, opName, (outs SReg_32:$dst), (ins SSrc_64:$src0),
434     opName#" $dst, $src0", pattern
435 >;
436
437 class SOP2_Pseudo<string opName, dag outs, dag ins, list<dag> pattern> :
438   SOP2<outs, ins, "", pattern>,
439   SIMCInstr<opName, SISubtarget.NONE> {
440   let isPseudo = 1;
441   let Size = 4;
442 }
443
444 class SOP2_Real_si<sop2 op, string opName, dag outs, dag ins, string asm> :
445   SOP2<outs, ins, asm, []>,
446   SOP2e<op.SI>,
447   SIMCInstr<opName, SISubtarget.SI>;
448
449 class SOP2_Real_vi<sop2 op, string opName, dag outs, dag ins, string asm> :
450   SOP2<outs, ins, asm, []>,
451   SOP2e<op.VI>,
452   SIMCInstr<opName, SISubtarget.VI>;
453
454 multiclass SOP2_SELECT_32 <sop2 op, string opName, list<dag> pattern> {
455   def "" : SOP2_Pseudo <opName, (outs SReg_32:$dst),
456     (ins SSrc_32:$src0, SSrc_32:$src1, SCCReg:$scc), pattern>;
457
458   def _si : SOP2_Real_si <op, opName, (outs SReg_32:$dst),
459     (ins SSrc_32:$src0, SSrc_32:$src1, SCCReg:$scc),
460     opName#" $dst, $src0, $src1 [$scc]">;
461
462   def _vi : SOP2_Real_vi <op, opName, (outs SReg_32:$dst),
463     (ins SSrc_32:$src0, SSrc_32:$src1, SCCReg:$scc),
464     opName#" $dst, $src0, $src1 [$scc]">;
465 }
466
467 multiclass SOP2_32 <sop2 op, string opName, list<dag> pattern> {
468   def "" : SOP2_Pseudo <opName, (outs SReg_32:$dst),
469     (ins SSrc_32:$src0, SSrc_32:$src1), pattern>;
470
471   def _si : SOP2_Real_si <op, opName, (outs SReg_32:$dst),
472     (ins SSrc_32:$src0, SSrc_32:$src1), opName#" $dst, $src0, $src1">;
473
474   def _vi : SOP2_Real_vi <op, opName, (outs SReg_32:$dst),
475     (ins SSrc_32:$src0, SSrc_32:$src1), opName#" $dst, $src0, $src1">;
476 }
477
478 multiclass SOP2_64 <sop2 op, string opName, list<dag> pattern> {
479   def "" : SOP2_Pseudo <opName, (outs SReg_64:$dst),
480     (ins SSrc_64:$src0, SSrc_64:$src1), pattern>;
481
482   def _si : SOP2_Real_si <op, opName, (outs SReg_64:$dst),
483     (ins SSrc_64:$src0, SSrc_64:$src1), opName#" $dst, $src0, $src1">;
484
485   def _vi : SOP2_Real_vi <op, opName, (outs SReg_64:$dst),
486     (ins SSrc_64:$src0, SSrc_64:$src1), opName#" $dst, $src0, $src1">;
487 }
488
489 multiclass SOP2_64_32 <sop2 op, string opName, list<dag> pattern> {
490   def "" : SOP2_Pseudo <opName, (outs SReg_64:$dst),
491     (ins SSrc_64:$src0, SSrc_32:$src1), pattern>;
492
493   def _si : SOP2_Real_si <op, opName, (outs SReg_64:$dst),
494     (ins SSrc_64:$src0, SSrc_32:$src1), opName#" $dst, $src0, $src1">;
495
496   def _vi : SOP2_Real_vi <op, opName, (outs SReg_64:$dst),
497     (ins SSrc_64:$src0, SSrc_32:$src1), opName#" $dst, $src0, $src1">;
498 }
499
500
501 class SOPC_Helper <bits<7> op, RegisterOperand rc, ValueType vt,
502                     string opName, PatLeaf cond> : SOPC <
503   op, (outs SCCReg:$dst), (ins rc:$src0, rc:$src1),
504   opName#" $dst, $src0, $src1", []>;
505
506 class SOPC_32<bits<7> op, string opName, PatLeaf cond = COND_NULL>
507   : SOPC_Helper<op, SSrc_32, i32, opName, cond>;
508
509 class SOPC_64<bits<7> op, string opName, PatLeaf cond = COND_NULL>
510   : SOPC_Helper<op, SSrc_64, i64, opName, cond>;
511
512 class SOPK_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
513   SOPK <outs, ins, "", pattern>,
514   SIMCInstr<opName, SISubtarget.NONE> {
515   let isPseudo = 1;
516 }
517
518 class SOPK_Real_si <sopk op, string opName, dag outs, dag ins, string asm> :
519   SOPK <outs, ins, asm, []>,
520   SOPKe <op.SI>,
521   SIMCInstr<opName, SISubtarget.SI>;
522
523 class SOPK_Real_vi <sopk op, string opName, dag outs, dag ins, string asm> :
524   SOPK <outs, ins, asm, []>,
525   SOPKe <op.VI>,
526   SIMCInstr<opName, SISubtarget.VI>;
527
528 multiclass SOPK_32 <sopk op, string opName, list<dag> pattern> {
529   def "" : SOPK_Pseudo <opName, (outs SReg_32:$dst), (ins u16imm:$src0),
530     pattern>;
531
532   def _si : SOPK_Real_si <op, opName, (outs SReg_32:$dst), (ins u16imm:$src0),
533     opName#" $dst, $src0">;
534
535   def _vi : SOPK_Real_vi <op, opName, (outs SReg_32:$dst), (ins u16imm:$src0),
536     opName#" $dst, $src0">;
537 }
538
539 multiclass SOPK_SCC <sopk op, string opName, list<dag> pattern> {
540   def "" : SOPK_Pseudo <opName, (outs SCCReg:$dst),
541     (ins SReg_32:$src0, u16imm:$src1), pattern>;
542
543   def _si : SOPK_Real_si <op, opName, (outs SCCReg:$dst),
544     (ins SReg_32:$src0, u16imm:$src1), opName#" $dst, $src0">;
545
546   def _vi : SOPK_Real_vi <op, opName, (outs SCCReg:$dst),
547     (ins SReg_32:$src0, u16imm:$src1), opName#" $dst, $src0">;
548 }
549
550 //===----------------------------------------------------------------------===//
551 // SMRD classes
552 //===----------------------------------------------------------------------===//
553
554 class SMRD_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
555   SMRD <outs, ins, "", pattern>,
556   SIMCInstr<opName, SISubtarget.NONE> {
557   let isPseudo = 1;
558 }
559
560 class SMRD_Real_si <bits<5> op, string opName, bit imm, dag outs, dag ins,
561                     string asm> :
562   SMRD <outs, ins, asm, []>,
563   SMRDe <op, imm>,
564   SIMCInstr<opName, SISubtarget.SI>;
565
566 class SMRD_Real_vi <bits<8> op, string opName, bit imm, dag outs, dag ins,
567                     string asm> :
568   SMRD <outs, ins, asm, []>,
569   SMEMe_vi <op, imm>,
570   SIMCInstr<opName, SISubtarget.VI>;
571
572 multiclass SMRD_m <bits<5> op, string opName, bit imm, dag outs, dag ins,
573                    string asm, list<dag> pattern> {
574
575   def "" : SMRD_Pseudo <opName, outs, ins, pattern>;
576
577   def _si : SMRD_Real_si <op, opName, imm, outs, ins, asm>;
578
579   def _vi : SMRD_Real_vi <{0, 0, 0, op}, opName, imm, outs, ins, asm>;
580 }
581
582 multiclass SMRD_Helper <bits<5> op, string opName, RegisterClass baseClass,
583                         RegisterClass dstClass> {
584   defm _IMM : SMRD_m <
585     op, opName#"_IMM", 1, (outs dstClass:$dst),
586     (ins baseClass:$sbase, u32imm:$offset),
587     opName#" $dst, $sbase, $offset", []
588   >;
589
590   defm _SGPR : SMRD_m <
591     op, opName#"_SGPR", 0, (outs dstClass:$dst),
592     (ins baseClass:$sbase, SReg_32:$soff),
593     opName#" $dst, $sbase, $soff", []
594   >;
595 }
596
597 //===----------------------------------------------------------------------===//
598 // Vector ALU classes
599 //===----------------------------------------------------------------------===//
600
601 // This must always be right before the operand being input modified.
602 def InputMods : OperandWithDefaultOps <i32, (ops (i32 0))> {
603   let PrintMethod = "printOperandAndMods";
604 }
605 def InputModsNoDefault : Operand <i32> {
606   let PrintMethod = "printOperandAndMods";
607 }
608
609 class getNumSrcArgs<ValueType Src1, ValueType Src2> {
610   int ret =
611     !if (!eq(Src1.Value, untyped.Value),      1,   // VOP1
612          !if (!eq(Src2.Value, untyped.Value), 2,   // VOP2
613                                               3)); // VOP3
614 }
615
616 // Returns the register class to use for the destination of VOP[123C]
617 // instructions for the given VT.
618 class getVALUDstForVT<ValueType VT> {
619   RegisterClass ret = !if(!eq(VT.Size, 32), VGPR_32,
620                           !if(!eq(VT.Size, 64), VReg_64,
621                             SReg_64)); // else VT == i1
622 }
623
624 // Returns the register class to use for source 0 of VOP[12C]
625 // instructions for the given VT.
626 class getVOPSrc0ForVT<ValueType VT> {
627   RegisterOperand ret = !if(!eq(VT.Size, 32), VSrc_32, VSrc_64);
628 }
629
630 // Returns the register class to use for source 1 of VOP[12C] for the
631 // given VT.
632 class getVOPSrc1ForVT<ValueType VT> {
633   RegisterClass ret = !if(!eq(VT.Size, 32), VGPR_32, VReg_64);
634 }
635
636 // Returns the register class to use for sources of VOP3 instructions for the
637 // given VT.
638 class getVOP3SrcForVT<ValueType VT> {
639   RegisterOperand ret = !if(!eq(VT.Size, 32), VCSrc_32, VCSrc_64);
640 }
641
642 // Returns 1 if the source arguments have modifiers, 0 if they do not.
643 class hasModifiers<ValueType SrcVT> {
644   bit ret = !if(!eq(SrcVT.Value, f32.Value), 1,
645             !if(!eq(SrcVT.Value, f64.Value), 1, 0));
646 }
647
648 // Returns the input arguments for VOP[12C] instructions for the given SrcVT.
649 class getIns32 <RegisterOperand Src0RC, RegisterClass Src1RC, int NumSrcArgs> {
650   dag ret = !if(!eq(NumSrcArgs, 1), (ins Src0RC:$src0),               // VOP1
651             !if(!eq(NumSrcArgs, 2), (ins Src0RC:$src0, Src1RC:$src1), // VOP2
652                                     (ins)));
653 }
654
655 // Returns the input arguments for VOP3 instructions for the given SrcVT.
656 class getIns64 <RegisterOperand Src0RC, RegisterOperand Src1RC,
657                 RegisterOperand Src2RC, int NumSrcArgs,
658                 bit HasModifiers> {
659
660   dag ret =
661     !if (!eq(NumSrcArgs, 1),
662       !if (!eq(HasModifiers, 1),
663         // VOP1 with modifiers
664         (ins InputModsNoDefault:$src0_modifiers, Src0RC:$src0,
665              ClampMod:$clamp, omod:$omod)
666       /* else */,
667         // VOP1 without modifiers
668         (ins Src0RC:$src0)
669       /* endif */ ),
670     !if (!eq(NumSrcArgs, 2),
671       !if (!eq(HasModifiers, 1),
672         // VOP 2 with modifiers
673         (ins InputModsNoDefault:$src0_modifiers, Src0RC:$src0,
674              InputModsNoDefault:$src1_modifiers, Src1RC:$src1,
675              ClampMod:$clamp, omod:$omod)
676       /* else */,
677         // VOP2 without modifiers
678         (ins Src0RC:$src0, Src1RC:$src1)
679       /* endif */ )
680     /* NumSrcArgs == 3 */,
681       !if (!eq(HasModifiers, 1),
682         // VOP3 with modifiers
683         (ins InputModsNoDefault:$src0_modifiers, Src0RC:$src0,
684              InputModsNoDefault:$src1_modifiers, Src1RC:$src1,
685              InputModsNoDefault:$src2_modifiers, Src2RC:$src2,
686              ClampMod:$clamp, omod:$omod)
687       /* else */,
688         // VOP3 without modifiers
689         (ins Src0RC:$src0, Src1RC:$src1, Src2RC:$src2)
690       /* endif */ )));
691 }
692
693 // Returns the assembly string for the inputs and outputs of a VOP[12C]
694 // instruction.  This does not add the _e32 suffix, so it can be reused
695 // by getAsm64.
696 class getAsm32 <int NumSrcArgs> {
697   string src1 = ", $src1";
698   string src2 = ", $src2";
699   string ret = " $dst, $src0"#
700                !if(!eq(NumSrcArgs, 1), "", src1)#
701                !if(!eq(NumSrcArgs, 3), src2, "");
702 }
703
704 // Returns the assembly string for the inputs and outputs of a VOP3
705 // instruction.
706 class getAsm64 <int NumSrcArgs, bit HasModifiers> {
707   string src0 = !if(!eq(NumSrcArgs, 1), "$src0_modifiers", "$src0_modifiers,");
708   string src1 = !if(!eq(NumSrcArgs, 1), "",
709                    !if(!eq(NumSrcArgs, 2), " $src1_modifiers",
710                                            " $src1_modifiers,"));
711   string src2 = !if(!eq(NumSrcArgs, 3), " $src2_modifiers", "");
712   string ret =
713   !if(!eq(HasModifiers, 0),
714       getAsm32<NumSrcArgs>.ret,
715       " $dst, "#src0#src1#src2#"$clamp"#"$omod");
716 }
717
718
719 class VOPProfile <list<ValueType> _ArgVT> {
720
721   field list<ValueType> ArgVT = _ArgVT;
722
723   field ValueType DstVT = ArgVT[0];
724   field ValueType Src0VT = ArgVT[1];
725   field ValueType Src1VT = ArgVT[2];
726   field ValueType Src2VT = ArgVT[3];
727   field RegisterClass DstRC = getVALUDstForVT<DstVT>.ret;
728   field RegisterOperand Src0RC32 = getVOPSrc0ForVT<Src0VT>.ret;
729   field RegisterClass Src1RC32 = getVOPSrc1ForVT<Src1VT>.ret;
730   field RegisterOperand Src0RC64 = getVOP3SrcForVT<Src0VT>.ret;
731   field RegisterOperand Src1RC64 = getVOP3SrcForVT<Src1VT>.ret;
732   field RegisterOperand Src2RC64 = getVOP3SrcForVT<Src2VT>.ret;
733
734   field int NumSrcArgs = getNumSrcArgs<Src1VT, Src2VT>.ret;
735   field bit HasModifiers = hasModifiers<Src0VT>.ret;
736
737   field dag Outs = (outs DstRC:$dst);
738
739   field dag Ins32 = getIns32<Src0RC32, Src1RC32, NumSrcArgs>.ret;
740   field dag Ins64 = getIns64<Src0RC64, Src1RC64, Src2RC64, NumSrcArgs,
741                              HasModifiers>.ret;
742
743   field string Asm32 = "_e32"#getAsm32<NumSrcArgs>.ret;
744   field string Asm64 = getAsm64<NumSrcArgs, HasModifiers>.ret;
745 }
746
747 def VOP_F32_F32 : VOPProfile <[f32, f32, untyped, untyped]>;
748 def VOP_F32_F64 : VOPProfile <[f32, f64, untyped, untyped]>;
749 def VOP_F32_I32 : VOPProfile <[f32, i32, untyped, untyped]>;
750 def VOP_F64_F32 : VOPProfile <[f64, f32, untyped, untyped]>;
751 def VOP_F64_F64 : VOPProfile <[f64, f64, untyped, untyped]>;
752 def VOP_F64_I32 : VOPProfile <[f64, i32, untyped, untyped]>;
753 def VOP_I32_F32 : VOPProfile <[i32, f32, untyped, untyped]>;
754 def VOP_I32_F64 : VOPProfile <[i32, f64, untyped, untyped]>;
755 def VOP_I32_I32 : VOPProfile <[i32, i32, untyped, untyped]>;
756
757 def VOP_F32_F32_F32 : VOPProfile <[f32, f32, f32, untyped]>;
758 def VOP_F32_F32_I32 : VOPProfile <[f32, f32, i32, untyped]>;
759 def VOP_F64_F64_F64 : VOPProfile <[f64, f64, f64, untyped]>;
760 def VOP_F64_F64_I32 : VOPProfile <[f64, f64, i32, untyped]>;
761 def VOP_I32_F32_F32 : VOPProfile <[i32, f32, f32, untyped]>;
762 def VOP_I32_F32_I32 : VOPProfile <[i32, f32, i32, untyped]>;
763 def VOP_I32_I32_I32 : VOPProfile <[i32, i32, i32, untyped]>;
764 def VOP_I32_I32_I32_VCC : VOPProfile <[i32, i32, i32, untyped]> {
765   let Src0RC32 = VCSrc_32;
766 }
767
768 def VOP_I1_F32_I32 : VOPProfile <[i1, f32, i32, untyped]> {
769   let Ins64 = (ins InputModsNoDefault:$src0_modifiers, Src0RC64:$src0, Src1RC64:$src1);
770   let Asm64 = " $dst, $src0_modifiers, $src1";
771 }
772
773 def VOP_I1_F64_I32 : VOPProfile <[i1, f64, i32, untyped]> {
774   let Ins64 = (ins InputModsNoDefault:$src0_modifiers, Src0RC64:$src0, Src1RC64:$src1);
775   let Asm64 = " $dst, $src0_modifiers, $src1";
776 }
777
778 def VOP_I64_I64_I32 : VOPProfile <[i64, i64, i32, untyped]>;
779 def VOP_I64_I32_I64 : VOPProfile <[i64, i32, i64, untyped]>;
780 def VOP_I64_I64_I64 : VOPProfile <[i64, i64, i64, untyped]>;
781
782 def VOP_F32_F32_F32_F32 : VOPProfile <[f32, f32, f32, f32]>;
783 def VOP_F64_F64_F64_F64 : VOPProfile <[f64, f64, f64, f64]>;
784 def VOP_I32_I32_I32_I32 : VOPProfile <[i32, i32, i32, i32]>;
785 def VOP_I64_I32_I32_I64 : VOPProfile <[i64, i32, i32, i64]>;
786
787
788 class VOP <string opName> {
789   string OpName = opName;
790 }
791
792 class VOP2_REV <string revOp, bit isOrig> {
793   string RevOp = revOp;
794   bit IsOrig = isOrig;
795 }
796
797 class AtomicNoRet <string noRetOp, bit isRet> {
798   string NoRetOp = noRetOp;
799   bit IsRet = isRet;
800 }
801
802 class VOP1_Pseudo <dag outs, dag ins, list<dag> pattern, string opName> :
803   VOP1Common <outs, ins, "", pattern>,
804   VOP <opName>,
805   SIMCInstr <opName#"_e32", SISubtarget.NONE> {
806   let isPseudo = 1;
807 }
808
809 multiclass VOP1_m <vop1 op, dag outs, dag ins, string asm, list<dag> pattern,
810                    string opName> {
811   def "" : VOP1_Pseudo <outs, ins, pattern, opName>;
812
813   def _si : VOP1<op.SI, outs, ins, asm, []>,
814             SIMCInstr <opName#"_e32", SISubtarget.SI>;
815   def _vi : VOP1<op.VI, outs, ins, asm, []>,
816             SIMCInstr <opName#"_e32", SISubtarget.VI>;
817 }
818
819 multiclass VOP1SI_m <vop1 op, dag outs, dag ins, string asm, list<dag> pattern,
820                    string opName> {
821   def "" : VOP1_Pseudo <outs, ins, pattern, opName>;
822
823   def _si : VOP1<op.SI, outs, ins, asm, []>,
824             SIMCInstr <opName#"_e32", SISubtarget.SI>;
825   // No VI instruction. This class is for SI only.
826 }
827
828 class VOP2_Pseudo <dag outs, dag ins, list<dag> pattern, string opName> :
829   VOP2Common <outs, ins, "", pattern>,
830   VOP <opName>,
831   SIMCInstr<opName#"_e32", SISubtarget.NONE> {
832   let isPseudo = 1;
833 }
834
835 multiclass VOP2SI_m <vop2 op, dag outs, dag ins, string asm, list<dag> pattern,
836                      string opName, string revOp> {
837   def "" : VOP2_Pseudo <outs, ins, pattern, opName>,
838            VOP2_REV<revOp#"_e32", !eq(revOp, opName)>;
839
840   def _si : VOP2 <op.SI, outs, ins, opName#asm, []>,
841             SIMCInstr <opName#"_e32", SISubtarget.SI>;
842 }
843
844 multiclass VOP2_m <vop2 op, dag outs, dag ins, string asm, list<dag> pattern,
845                    string opName, string revOp> {
846   def "" : VOP2_Pseudo <outs, ins, pattern, opName>,
847            VOP2_REV<revOp#"_e32", !eq(revOp, opName)>;
848
849   def _si : VOP2 <op.SI, outs, ins, opName#asm, []>,
850             SIMCInstr <opName#"_e32", SISubtarget.SI>;
851   def _vi : VOP2 <op.VI, outs, ins, opName#asm, []>,
852             SIMCInstr <opName#"_e32", SISubtarget.VI>;
853 }
854
855 class VOP3DisableFields <bit HasSrc1, bit HasSrc2, bit HasModifiers> {
856
857   bits<2> src0_modifiers = !if(HasModifiers, ?, 0);
858   bits<2> src1_modifiers = !if(HasModifiers, !if(HasSrc1, ?, 0), 0);
859   bits<2> src2_modifiers = !if(HasModifiers, !if(HasSrc2, ? ,0) ,0);
860   bits<2> omod = !if(HasModifiers, ?, 0);
861   bits<1> clamp = !if(HasModifiers, ?, 0);
862   bits<9> src1 = !if(HasSrc1, ?, 0);
863   bits<9> src2 = !if(HasSrc2, ?, 0);
864 }
865
866 class VOP3_Pseudo <dag outs, dag ins, list<dag> pattern, string opName> :
867   VOP3Common <outs, ins, "", pattern>,
868   VOP <opName>,
869   SIMCInstr<opName#"_e64", SISubtarget.NONE> {
870   let isPseudo = 1;
871 }
872
873 class VOP3_Real_si <bits<9> op, dag outs, dag ins, string asm, string opName> :
874   VOP3Common <outs, ins, asm, []>,
875   VOP3e <op>,
876   SIMCInstr<opName#"_e64", SISubtarget.SI>;
877
878 class VOP3_Real_vi <bits<10> op, dag outs, dag ins, string asm, string opName> :
879   VOP3Common <outs, ins, asm, []>,
880   VOP3e_vi <op>,
881   SIMCInstr <opName#"_e64", SISubtarget.VI>;
882
883 class VOP3b_Real_si <bits<9> op, dag outs, dag ins, string asm, string opName> :
884   VOP3Common <outs, ins, asm, []>,
885   VOP3be <op>,
886   SIMCInstr<opName#"_e64", SISubtarget.SI>;
887
888 class VOP3b_Real_vi <bits<10> op, dag outs, dag ins, string asm, string opName> :
889   VOP3Common <outs, ins, asm, []>,
890   VOP3be_vi <op>,
891   SIMCInstr <opName#"_e64", SISubtarget.VI>;
892
893 multiclass VOP3_m <vop op, dag outs, dag ins, string asm, list<dag> pattern,
894                    string opName, int NumSrcArgs, bit HasMods = 1> {
895
896   def "" : VOP3_Pseudo <outs, ins, pattern, opName>;
897
898   def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>,
899             VOP3DisableFields<!if(!eq(NumSrcArgs, 1), 0, 1),
900                               !if(!eq(NumSrcArgs, 2), 0, 1),
901                               HasMods>;
902   def _vi : VOP3_Real_vi <op.VI3, outs, ins, asm, opName>,
903             VOP3DisableFields<!if(!eq(NumSrcArgs, 1), 0, 1),
904                               !if(!eq(NumSrcArgs, 2), 0, 1),
905                               HasMods>;
906 }
907
908 // VOP3_m without source modifiers
909 multiclass VOP3_m_nosrcmod <vop op, dag outs, dag ins, string asm, list<dag> pattern,
910                    string opName, int NumSrcArgs, bit HasMods = 1> {
911
912   def "" : VOP3_Pseudo <outs, ins, pattern, opName>;
913
914   let src0_modifiers = 0,
915       src1_modifiers = 0,
916       src2_modifiers = 0 in {
917     def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>;
918     def _vi : VOP3_Real_vi <op.VI3, outs, ins, asm, opName>;
919   }
920 }
921
922 multiclass VOP3_1_m <vop op, dag outs, dag ins, string asm,
923                      list<dag> pattern, string opName, bit HasMods = 1> {
924
925   def "" : VOP3_Pseudo <outs, ins, pattern, opName>;
926
927   def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>,
928             VOP3DisableFields<0, 0, HasMods>;
929
930   def _vi : VOP3_Real_vi <op.VI3, outs, ins, asm, opName>,
931             VOP3DisableFields<0, 0, HasMods>;
932 }
933
934 multiclass VOP3SI_1_m <vop op, dag outs, dag ins, string asm,
935                      list<dag> pattern, string opName, bit HasMods = 1> {
936
937   def "" : VOP3_Pseudo <outs, ins, pattern, opName>;
938
939   def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>,
940             VOP3DisableFields<0, 0, HasMods>;
941   // No VI instruction. This class is for SI only.
942 }
943
944 multiclass VOP3_2_m <vop op, dag outs, dag ins, string asm,
945                      list<dag> pattern, string opName, string revOp,
946                      bit HasMods = 1, bit UseFullOp = 0> {
947
948   def "" : VOP3_Pseudo <outs, ins, pattern, opName>,
949            VOP2_REV<revOp#"_e64", !eq(revOp, opName)>;
950
951   def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>,
952             VOP3DisableFields<1, 0, HasMods>;
953
954   def _vi : VOP3_Real_vi <op.VI3, outs, ins, asm, opName>,
955             VOP3DisableFields<1, 0, HasMods>;
956 }
957
958 multiclass VOP3SI_2_m <vop op, dag outs, dag ins, string asm,
959                      list<dag> pattern, string opName, string revOp,
960                      bit HasMods = 1, bit UseFullOp = 0> {
961
962   def "" : VOP3_Pseudo <outs, ins, pattern, opName>,
963            VOP2_REV<revOp#"_e64", !eq(revOp, opName)>;
964
965   def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>,
966             VOP3DisableFields<1, 0, HasMods>;
967
968   // No VI instruction. This class is for SI only.
969 }
970
971 // XXX - Is v_div_scale_{f32|f64} only available in vop3b without
972 // option of implicit vcc use?
973 multiclass VOP3b_2_m <vop op, dag outs, dag ins, string asm,
974                       list<dag> pattern, string opName, string revOp,
975                       bit HasMods = 1, bit UseFullOp = 0> {
976   def "" : VOP3_Pseudo <outs, ins, pattern, opName>,
977            VOP2_REV<revOp#"_e64", !eq(revOp, opName)>;
978
979   // The VOP2 variant puts the carry out into VCC, the VOP3 variant
980   // can write it into any SGPR. We currently don't use the carry out,
981   // so for now hardcode it to VCC as well.
982   let sdst = SIOperand.VCC, Defs = [VCC] in {
983     def _si : VOP3b_Real_si <op.SI3, outs, ins, asm, opName>,
984               VOP3DisableFields<1, 0, HasMods>;
985
986     def _vi : VOP3b_Real_vi <op.VI3, outs, ins, asm, opName>,
987               VOP3DisableFields<1, 0, HasMods>;
988   } // End sdst = SIOperand.VCC, Defs = [VCC]
989 }
990
991 multiclass VOP3_C_m <vop op, dag outs, dag ins, string asm,
992                      list<dag> pattern, string opName,
993                      bit HasMods, bit defExec> {
994
995   def "" : VOP3_Pseudo <outs, ins, pattern, opName>;
996
997   def _si : VOP3_Real_si <op.SI3, outs, ins, asm, opName>,
998             VOP3DisableFields<1, 0, HasMods> {
999     let Defs = !if(defExec, [EXEC], []);
1000   }
1001
1002   def _vi : VOP3_Real_vi <op.VI3, outs, ins, asm, opName>,
1003             VOP3DisableFields<1, 0, HasMods> {
1004     let Defs = !if(defExec, [EXEC], []);
1005   }
1006 }
1007
1008 // An instruction that is VOP2 on SI and VOP3 on VI, no modifiers.
1009 multiclass VOP2SI_3VI_m <vop3 op, string opName, dag outs, dag ins,
1010                          string asm, list<dag> pattern = []> {
1011   let isPseudo = 1 in {
1012     def "" : VOPAnyCommon <outs, ins, "", pattern>,
1013              SIMCInstr<opName, SISubtarget.NONE>;
1014   }
1015
1016   def _si : VOP2 <op.SI3{5-0}, outs, ins, asm, []>,
1017             SIMCInstr <opName, SISubtarget.SI>;
1018
1019   def _vi : VOP3Common <outs, ins, asm, []>,
1020             VOP3e_vi <op.VI3>,
1021             VOP3DisableFields <1, 0, 0>,
1022             SIMCInstr <opName, SISubtarget.VI>;
1023 }
1024
1025 multiclass VOP1_Helper <vop1 op, string opName, dag outs,
1026                         dag ins32, string asm32, list<dag> pat32,
1027                         dag ins64, string asm64, list<dag> pat64,
1028                         bit HasMods> {
1029
1030   defm _e32 : VOP1_m <op, outs, ins32, opName#asm32, pat32, opName>;
1031
1032   defm _e64 : VOP3_1_m <op, outs, ins64, opName#"_e64"#asm64, pat64, opName, HasMods>;
1033 }
1034
1035 multiclass VOP1Inst <vop1 op, string opName, VOPProfile P,
1036                      SDPatternOperator node = null_frag> : VOP1_Helper <
1037   op, opName, P.Outs,
1038   P.Ins32, P.Asm32, [],
1039   P.Ins64, P.Asm64,
1040   !if(P.HasModifiers,
1041       [(set P.DstVT:$dst, (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0,
1042                                 i32:$src0_modifiers, i1:$clamp, i32:$omod))))],
1043       [(set P.DstVT:$dst, (node P.Src0VT:$src0))]),
1044   P.HasModifiers
1045 >;
1046
1047 multiclass VOP1InstSI <vop1 op, string opName, VOPProfile P,
1048                        SDPatternOperator node = null_frag> {
1049
1050   defm _e32 : VOP1SI_m <op, P.Outs, P.Ins32, opName#P.Asm32, [], opName>;
1051
1052   defm _e64 : VOP3SI_1_m <op, P.Outs, P.Ins64, opName#P.Asm64,
1053     !if(P.HasModifiers,
1054       [(set P.DstVT:$dst, (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0,
1055                                 i32:$src0_modifiers, i1:$clamp, i32:$omod))))],
1056       [(set P.DstVT:$dst, (node P.Src0VT:$src0))]),
1057     opName, P.HasModifiers>;
1058 }
1059
1060 multiclass VOP2_Helper <vop2 op, string opName, dag outs,
1061                         dag ins32, string asm32, list<dag> pat32,
1062                         dag ins64, string asm64, list<dag> pat64,
1063                         string revOp, bit HasMods> {
1064   defm _e32 : VOP2_m <op, outs, ins32, asm32, pat32, opName, revOp>;
1065
1066   defm _e64 : VOP3_2_m <op,
1067     outs, ins64, opName#"_e64"#asm64, pat64, opName, revOp, HasMods
1068   >;
1069 }
1070
1071 multiclass VOP2Inst <vop2 op, string opName, VOPProfile P,
1072                      SDPatternOperator node = null_frag,
1073                      string revOp = opName> : VOP2_Helper <
1074   op, opName, P.Outs,
1075   P.Ins32, P.Asm32, [],
1076   P.Ins64, P.Asm64,
1077   !if(P.HasModifiers,
1078       [(set P.DstVT:$dst,
1079            (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1080                                       i1:$clamp, i32:$omod)),
1081                  (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers))))],
1082       [(set P.DstVT:$dst, (node P.Src0VT:$src0, P.Src1VT:$src1))]),
1083   revOp, P.HasModifiers
1084 >;
1085
1086 multiclass VOP2InstSI <vop2 op, string opName, VOPProfile P,
1087                        SDPatternOperator node = null_frag,
1088                        string revOp = opName> {
1089   defm _e32 : VOP2SI_m <op, P.Outs, P.Ins32, P.Asm32, [], opName, revOp>;
1090
1091   defm _e64 : VOP3SI_2_m <op, P.Outs, P.Ins64, opName#"_e64"#P.Asm64,
1092     !if(P.HasModifiers,
1093         [(set P.DstVT:$dst,
1094              (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1095                                         i1:$clamp, i32:$omod)),
1096                    (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers))))],
1097         [(set P.DstVT:$dst, (node P.Src0VT:$src0, P.Src1VT:$src1))]),
1098     opName, revOp, P.HasModifiers>;
1099 }
1100
1101 multiclass VOP2b_Helper <vop2 op, string opName, dag outs,
1102                          dag ins32, string asm32, list<dag> pat32,
1103                          dag ins64, string asm64, list<dag> pat64,
1104                          string revOp, bit HasMods> {
1105
1106   defm _e32 : VOP2_m <op, outs, ins32, asm32, pat32, opName, revOp>;
1107
1108   defm _e64 : VOP3b_2_m <op,
1109     outs, ins64, opName#"_e64"#asm64, pat64, opName, revOp, HasMods
1110   >;
1111 }
1112
1113 multiclass VOP2bInst <vop2 op, string opName, VOPProfile P,
1114                       SDPatternOperator node = null_frag,
1115                       string revOp = opName> : VOP2b_Helper <
1116   op, opName, P.Outs,
1117   P.Ins32, P.Asm32, [],
1118   P.Ins64, P.Asm64,
1119   !if(P.HasModifiers,
1120       [(set P.DstVT:$dst,
1121            (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1122                                       i1:$clamp, i32:$omod)),
1123                  (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers))))],
1124       [(set P.DstVT:$dst, (node P.Src0VT:$src0, P.Src1VT:$src1))]),
1125   revOp, P.HasModifiers
1126 >;
1127
1128 // A VOP2 instruction that is VOP3-only on VI.
1129 multiclass VOP2_VI3_Helper <vop23 op, string opName, dag outs,
1130                             dag ins32, string asm32, list<dag> pat32,
1131                             dag ins64, string asm64, list<dag> pat64,
1132                             string revOp, bit HasMods> {
1133   defm _e32 : VOP2SI_m <op, outs, ins32, asm32, pat32, opName, revOp>;
1134
1135   defm _e64 : VOP3_2_m <op, outs, ins64, opName#"_e64"#asm64, pat64, opName,
1136                         revOp, HasMods>;
1137 }
1138
1139 multiclass VOP2_VI3_Inst <vop23 op, string opName, VOPProfile P,
1140                           SDPatternOperator node = null_frag,
1141                           string revOp = opName>
1142                           : VOP2_VI3_Helper <
1143   op, opName, P.Outs,
1144   P.Ins32, P.Asm32, [],
1145   P.Ins64, P.Asm64,
1146   !if(P.HasModifiers,
1147       [(set P.DstVT:$dst,
1148            (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1149                                       i1:$clamp, i32:$omod)),
1150                  (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers))))],
1151       [(set P.DstVT:$dst, (node P.Src0VT:$src0, P.Src1VT:$src1))]),
1152   revOp, P.HasModifiers
1153 >;
1154
1155 class VOPC_Pseudo <dag outs, dag ins, list<dag> pattern, string opName> :
1156   VOPCCommon <ins, "", pattern>,
1157   VOP <opName>,
1158   SIMCInstr<opName#"_e32", SISubtarget.NONE> {
1159   let isPseudo = 1;
1160 }
1161
1162 multiclass VOPC_m <vopc op, dag outs, dag ins, string asm, list<dag> pattern,
1163                    string opName, bit DefExec> {
1164   def "" : VOPC_Pseudo <outs, ins, pattern, opName>;
1165
1166   def _si : VOPC<op.SI, ins, asm, []>,
1167             SIMCInstr <opName#"_e32", SISubtarget.SI> {
1168     let Defs = !if(DefExec, [EXEC], []);
1169   }
1170
1171   def _vi : VOPC<op.VI, ins, asm, []>,
1172             SIMCInstr <opName#"_e32", SISubtarget.VI> {
1173     let Defs = !if(DefExec, [EXEC], []);
1174   }
1175 }
1176
1177 multiclass VOPC_Helper <vopc op, string opName,
1178                         dag ins32, string asm32, list<dag> pat32,
1179                         dag out64, dag ins64, string asm64, list<dag> pat64,
1180                         bit HasMods, bit DefExec> {
1181   defm _e32 : VOPC_m <op, (outs), ins32, opName#asm32, pat32, opName, DefExec>;
1182
1183   defm _e64 : VOP3_C_m <op, out64, ins64, opName#"_e64"#asm64, pat64,
1184                         opName, HasMods, DefExec>;
1185 }
1186
1187 multiclass VOPCInst <vopc op, string opName,
1188                      VOPProfile P, PatLeaf cond = COND_NULL,
1189                      bit DefExec = 0> : VOPC_Helper <
1190   op, opName,
1191   P.Ins32, P.Asm32, [],
1192   (outs SReg_64:$dst), P.Ins64, P.Asm64,
1193   !if(P.HasModifiers,
1194       [(set i1:$dst,
1195           (setcc (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1196                                       i1:$clamp, i32:$omod)),
1197                  (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers)),
1198                  cond))],
1199       [(set i1:$dst, (setcc P.Src0VT:$src0, P.Src1VT:$src1, cond))]),
1200   P.HasModifiers, DefExec
1201 >;
1202
1203 multiclass VOPCClassInst <vopc op, string opName, VOPProfile P,
1204                      bit DefExec = 0> : VOPC_Helper <
1205   op, opName,
1206   P.Ins32, P.Asm32, [],
1207   (outs SReg_64:$dst), P.Ins64, P.Asm64,
1208   !if(P.HasModifiers,
1209       [(set i1:$dst,
1210           (AMDGPUfp_class (P.Src0VT (VOP3Mods0Clamp0OMod P.Src0VT:$src0, i32:$src0_modifiers)), P.Src1VT:$src1))],
1211       [(set i1:$dst, (AMDGPUfp_class P.Src0VT:$src0, P.Src1VT:$src1))]),
1212   P.HasModifiers, DefExec
1213 >;
1214
1215
1216 multiclass VOPC_F32 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1217   VOPCInst <op, opName, VOP_F32_F32_F32, cond>;
1218
1219 multiclass VOPC_F64 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1220   VOPCInst <op, opName, VOP_F64_F64_F64, cond>;
1221
1222 multiclass VOPC_I32 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1223   VOPCInst <op, opName, VOP_I32_I32_I32, cond>;
1224
1225 multiclass VOPC_I64 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1226   VOPCInst <op, opName, VOP_I64_I64_I64, cond>;
1227
1228
1229 multiclass VOPCX <vopc op, string opName, VOPProfile P,
1230                   PatLeaf cond = COND_NULL>
1231   : VOPCInst <op, opName, P, cond, 1>;
1232
1233 multiclass VOPCX_F32 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1234   VOPCX <op, opName, VOP_F32_F32_F32, cond>;
1235
1236 multiclass VOPCX_F64 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1237   VOPCX <op, opName, VOP_F64_F64_F64, cond>;
1238
1239 multiclass VOPCX_I32 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1240   VOPCX <op, opName, VOP_I32_I32_I32, cond>;
1241
1242 multiclass VOPCX_I64 <vopc op, string opName, PatLeaf cond = COND_NULL> :
1243   VOPCX <op, opName, VOP_I64_I64_I64, cond>;
1244
1245 multiclass VOP3_Helper <vop3 op, string opName, dag outs, dag ins, string asm,
1246                         list<dag> pat, int NumSrcArgs, bit HasMods> : VOP3_m <
1247     op, outs, ins, opName#asm, pat, opName, NumSrcArgs, HasMods
1248 >;
1249
1250 multiclass VOPC_CLASS_F32 <vopc op, string opName> :
1251   VOPCClassInst <op, opName, VOP_I1_F32_I32, 0>;
1252
1253 multiclass VOPCX_CLASS_F32 <vopc op, string opName> :
1254   VOPCClassInst <op, opName, VOP_I1_F32_I32, 1>;
1255
1256 multiclass VOPC_CLASS_F64 <vopc op, string opName> :
1257   VOPCClassInst <op, opName, VOP_I1_F64_I32, 0>;
1258
1259 multiclass VOPCX_CLASS_F64 <vopc op, string opName> :
1260   VOPCClassInst <op, opName, VOP_I1_F64_I32, 1>;
1261
1262 multiclass VOP3Inst <vop3 op, string opName, VOPProfile P,
1263                      SDPatternOperator node = null_frag> : VOP3_Helper <
1264   op, opName, P.Outs, P.Ins64, P.Asm64,
1265   !if(!eq(P.NumSrcArgs, 3),
1266     !if(P.HasModifiers,
1267         [(set P.DstVT:$dst,
1268             (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1269                                        i1:$clamp, i32:$omod)),
1270                   (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers)),
1271                   (P.Src2VT (VOP3Mods P.Src2VT:$src2, i32:$src2_modifiers))))],
1272         [(set P.DstVT:$dst, (node P.Src0VT:$src0, P.Src1VT:$src1,
1273                                   P.Src2VT:$src2))]),
1274   !if(!eq(P.NumSrcArgs, 2),
1275     !if(P.HasModifiers,
1276         [(set P.DstVT:$dst,
1277             (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1278                                        i1:$clamp, i32:$omod)),
1279                   (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers))))],
1280         [(set P.DstVT:$dst, (node P.Src0VT:$src0, P.Src1VT:$src1))])
1281   /* P.NumSrcArgs == 1 */,
1282     !if(P.HasModifiers,
1283         [(set P.DstVT:$dst,
1284             (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers,
1285                                        i1:$clamp, i32:$omod))))],
1286         [(set P.DstVT:$dst, (node P.Src0VT:$src0))]))),
1287   P.NumSrcArgs, P.HasModifiers
1288 >;
1289
1290 multiclass VOP3b_Helper <vop op, RegisterClass vrc, RegisterOperand arc,
1291                     string opName, list<dag> pattern> :
1292   VOP3b_2_m <
1293   op, (outs vrc:$vdst, SReg_64:$sdst),
1294       (ins InputModsNoDefault:$src0_modifiers, arc:$src0,
1295            InputModsNoDefault:$src1_modifiers, arc:$src1,
1296            InputModsNoDefault:$src2_modifiers, arc:$src2,
1297            ClampMod:$clamp, omod:$omod),
1298   opName#" $vdst, $sdst, $src0_modifiers, $src1_modifiers, $src2_modifiers"#"$clamp"#"$omod", pattern,
1299   opName, opName, 1, 1
1300 >;
1301
1302 multiclass VOP3b_64 <vop3 op, string opName, list<dag> pattern> :
1303   VOP3b_Helper <op, VReg_64, VSrc_64, opName, pattern>;
1304
1305 multiclass VOP3b_32 <vop3 op, string opName, list<dag> pattern> :
1306   VOP3b_Helper <op, VGPR_32, VSrc_32, opName, pattern>;
1307
1308
1309 class Vop3ModPat<Instruction Inst, VOPProfile P, SDPatternOperator node> : Pat<
1310   (node (P.Src0VT (VOP3Mods0 P.Src0VT:$src0, i32:$src0_modifiers, i1:$clamp, i32:$omod)),
1311         (P.Src1VT (VOP3Mods P.Src1VT:$src1, i32:$src1_modifiers)),
1312         (P.Src2VT (VOP3Mods P.Src2VT:$src2, i32:$src2_modifiers))),
1313   (Inst i32:$src0_modifiers, P.Src0VT:$src0,
1314         i32:$src1_modifiers, P.Src1VT:$src1,
1315         i32:$src2_modifiers, P.Src2VT:$src2,
1316         i1:$clamp,
1317         i32:$omod)>;
1318
1319 //===----------------------------------------------------------------------===//
1320 // Interpolation opcodes
1321 //===----------------------------------------------------------------------===//
1322
1323 class VINTRP_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
1324   VINTRPCommon <outs, ins, "", pattern>,
1325   SIMCInstr<opName, SISubtarget.NONE> {
1326   let isPseudo = 1;
1327 }
1328
1329 class VINTRP_Real_si <bits <2> op, string opName, dag outs, dag ins,
1330                       string asm> :
1331   VINTRPCommon <outs, ins, asm, []>,
1332   VINTRPe <op>,
1333   SIMCInstr<opName, SISubtarget.SI>;
1334
1335 class VINTRP_Real_vi <bits <2> op, string opName, dag outs, dag ins,
1336                       string asm> :
1337   VINTRPCommon <outs, ins, asm, []>,
1338   VINTRPe_vi <op>,
1339   SIMCInstr<opName, SISubtarget.VI>;
1340
1341 multiclass VINTRP_m <bits <2> op, string opName, dag outs, dag ins, string asm,
1342                      string disableEncoding = "", string constraints = "",
1343                      list<dag> pattern = []> {
1344   let DisableEncoding = disableEncoding,
1345       Constraints = constraints in {
1346     def "" : VINTRP_Pseudo <opName, outs, ins, pattern>;
1347
1348     def _si : VINTRP_Real_si <op, opName, outs, ins, asm>;
1349
1350     def _vi : VINTRP_Real_vi <op, opName, outs, ins, asm>;
1351   }
1352 }
1353
1354 //===----------------------------------------------------------------------===//
1355 // Vector I/O classes
1356 //===----------------------------------------------------------------------===//
1357
1358 class DS_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
1359   DS <outs, ins, "", pattern>,
1360   SIMCInstr <opName, SISubtarget.NONE> {
1361   let isPseudo = 1;
1362 }
1363
1364 class DS_Real_si <bits<8> op, string opName, dag outs, dag ins, string asm> :
1365   DS <outs, ins, asm, []>,
1366   DSe <op>,
1367   SIMCInstr <opName, SISubtarget.SI>;
1368
1369 class DS_Real_vi <bits<8> op, string opName, dag outs, dag ins, string asm> :
1370   DS <outs, ins, asm, []>,
1371   DSe_vi <op>,
1372   SIMCInstr <opName, SISubtarget.VI>;
1373
1374 class DS_1A_Real_si <bits<8> op, string opName, dag outs, dag ins, string asm> :
1375   DS <outs, ins, asm, []>,
1376   DSe <op>,
1377   SIMCInstr <opName, SISubtarget.SI> {
1378
1379   // Single load interpret the 2 i8imm operands as a single i16 offset.
1380   bits<16> offset;
1381   let offset0 = offset{7-0};
1382   let offset1 = offset{15-8};
1383 }
1384
1385 class DS_1A_Real_vi <bits<8> op, string opName, dag outs, dag ins, string asm> :
1386   DS <outs, ins, asm, []>,
1387   DSe_vi <op>,
1388   SIMCInstr <opName, SISubtarget.VI> {
1389
1390   // Single load interpret the 2 i8imm operands as a single i16 offset.
1391   bits<16> offset;
1392   let offset0 = offset{7-0};
1393   let offset1 = offset{15-8};
1394 }
1395
1396 multiclass DS_1A_Load_m <bits<8> op, string opName, dag outs, dag ins, string asm,
1397                          list<dag> pat> {
1398   let hasSideEffects = 0, mayLoad = 1, mayStore = 0 in {
1399     def "" : DS_Pseudo <opName, outs, ins, pat>;
1400
1401     let data0 = 0, data1 = 0 in {
1402       def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
1403       def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
1404     }
1405   }
1406 }
1407
1408 multiclass DS_Load_Helper <bits<8> op, string asm, RegisterClass regClass>
1409     : DS_1A_Load_m <
1410   op,
1411   asm,
1412   (outs regClass:$vdst),
1413   (ins i1imm:$gds, VGPR_32:$addr, ds_offset:$offset, M0Reg:$m0),
1414   asm#" $vdst, $addr"#"$offset"#" [M0]",
1415   []>;
1416
1417 multiclass DS_Load2_m <bits<8> op, string opName, dag outs, dag ins, string asm,
1418                        list<dag> pat> {
1419   let hasSideEffects = 0, mayLoad = 1, mayStore = 0 in {
1420     def "" : DS_Pseudo <opName, outs, ins, pat>;
1421
1422     let data0 = 0, data1 = 0 in {
1423       def _si : DS_Real_si <op, opName, outs, ins, asm>;
1424       def _vi : DS_Real_vi <op, opName, outs, ins, asm>;
1425     }
1426   }
1427 }
1428
1429 multiclass DS_Load2_Helper <bits<8> op, string asm, RegisterClass regClass>
1430     : DS_Load2_m <
1431   op,
1432   asm,
1433   (outs regClass:$vdst),
1434   (ins i1imm:$gds, VGPR_32:$addr, ds_offset0:$offset0, ds_offset1:$offset1,
1435         M0Reg:$m0),
1436   asm#" $vdst, $addr"#"$offset0"#"$offset1 [M0]",
1437   []>;
1438
1439 multiclass DS_1A_Store_m <bits<8> op, string opName, dag outs, dag ins,
1440                           string asm, list<dag> pat> {
1441   let hasSideEffects = 0, mayLoad = 0, mayStore = 1 in {
1442     def "" : DS_Pseudo <opName, outs, ins, pat>;
1443
1444     let data1 = 0, vdst = 0 in {
1445       def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
1446       def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
1447     }
1448   }
1449 }
1450
1451 multiclass DS_Store_Helper <bits<8> op, string asm, RegisterClass regClass>
1452     : DS_1A_Store_m <
1453   op,
1454   asm,
1455   (outs),
1456   (ins i1imm:$gds, VGPR_32:$addr, regClass:$data0, ds_offset:$offset, M0Reg:$m0),
1457   asm#" $addr, $data0"#"$offset"#" [M0]",
1458   []>;
1459
1460 multiclass DS_Store_m <bits<8> op, string opName, dag outs, dag ins,
1461                        string asm, list<dag> pat> {
1462   let hasSideEffects = 0, mayLoad = 0, mayStore = 1 in {
1463     def "" : DS_Pseudo <opName, outs, ins, pat>;
1464
1465     let vdst = 0 in {
1466       def _si : DS_Real_si <op, opName, outs, ins, asm>;
1467       def _vi : DS_Real_vi <op, opName, outs, ins, asm>;
1468     }
1469   }
1470 }
1471
1472 multiclass DS_Store2_Helper <bits<8> op, string asm, RegisterClass regClass>
1473     : DS_Store_m <
1474   op,
1475   asm,
1476   (outs),
1477   (ins i1imm:$gds, VGPR_32:$addr, regClass:$data0, regClass:$data1,
1478        ds_offset0:$offset0, ds_offset1:$offset1, M0Reg:$m0),
1479   asm#" $addr, $data0, $data1"#"$offset0"#"$offset1 [M0]",
1480   []>;
1481
1482 // 1 address, 1 data.
1483 multiclass DS_1A1D_RET_m <bits<8> op, string opName, dag outs, dag ins,
1484                           string asm, list<dag> pat, string noRetOp> {
1485   let mayLoad = 1, mayStore = 1,
1486       hasPostISelHook = 1 // Adjusted to no return version.
1487       in {
1488     def "" : DS_Pseudo <opName, outs, ins, pat>,
1489              AtomicNoRet<noRetOp, 1>;
1490
1491     let data1 = 0 in {
1492       def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
1493       def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
1494     }
1495   }
1496 }
1497
1498 multiclass DS_1A1D_RET <bits<8> op, string asm, RegisterClass rc,
1499                         string noRetOp = ""> : DS_1A1D_RET_m <
1500   op, asm,
1501   (outs rc:$vdst),
1502   (ins i1imm:$gds, VGPR_32:$addr, rc:$data0, ds_offset:$offset, M0Reg:$m0),
1503   asm#" $vdst, $addr, $data0"#"$offset"#" [M0]", [], noRetOp>;
1504
1505 // 1 address, 2 data.
1506 multiclass DS_1A2D_RET_m <bits<8> op, string opName, dag outs, dag ins,
1507                           string asm, list<dag> pat, string noRetOp> {
1508   let mayLoad = 1, mayStore = 1,
1509       hasPostISelHook = 1 // Adjusted to no return version.
1510       in {
1511     def "" : DS_Pseudo <opName, outs, ins, pat>,
1512              AtomicNoRet<noRetOp, 1>;
1513
1514     def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
1515     def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
1516   }
1517 }
1518
1519 multiclass DS_1A2D_RET <bits<8> op, string asm, RegisterClass rc,
1520                    string noRetOp = ""> : DS_1A2D_RET_m <
1521   op, asm,
1522   (outs rc:$vdst),
1523   (ins i1imm:$gds, VGPR_32:$addr, rc:$data0, rc:$data1, ds_offset:$offset, M0Reg:$m0),
1524   asm#" $vdst, $addr, $data0, $data1"#"$offset"#" [M0]",
1525   [], noRetOp>;
1526
1527 // 1 address, 2 data.
1528 multiclass DS_1A2D_NORET_m <bits<8> op, string opName, dag outs, dag ins,
1529                             string asm, list<dag> pat, string noRetOp> {
1530   let mayLoad = 1, mayStore = 1 in {
1531     def "" : DS_Pseudo <opName, outs, ins, pat>,
1532              AtomicNoRet<noRetOp, 0>;
1533
1534     def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
1535     def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
1536   }
1537 }
1538
1539 multiclass DS_1A2D_NORET <bits<8> op, string asm, RegisterClass rc,
1540                      string noRetOp = asm> : DS_1A2D_NORET_m <
1541   op, asm,
1542   (outs),
1543   (ins i1imm:$gds, VGPR_32:$addr, rc:$data0, rc:$data1, ds_offset:$offset, M0Reg:$m0),
1544   asm#" $addr, $data0, $data1"#"$offset"#" [M0]",
1545   [], noRetOp>;
1546
1547 // 1 address, 1 data.
1548 multiclass DS_1A1D_NORET_m <bits<8> op, string opName, dag outs, dag ins,
1549                             string asm, list<dag> pat, string noRetOp> {
1550   let mayLoad = 1, mayStore = 1 in {
1551     def "" : DS_Pseudo <opName, outs, ins, pat>,
1552              AtomicNoRet<noRetOp, 0>;
1553
1554     let data1 = 0 in {
1555       def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
1556       def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
1557     }
1558   }
1559 }
1560
1561 multiclass DS_1A1D_NORET <bits<8> op, string asm, RegisterClass rc,
1562                           string noRetOp = asm> : DS_1A1D_NORET_m <
1563   op, asm,
1564   (outs),
1565   (ins i1imm:$gds, VGPR_32:$addr, rc:$data0, ds_offset:$offset, M0Reg:$m0),
1566   asm#" $addr, $data0"#"$offset"#" [M0]",
1567   [], noRetOp>;
1568
1569 //===----------------------------------------------------------------------===//
1570 // MTBUF classes
1571 //===----------------------------------------------------------------------===//
1572
1573 class MTBUF_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
1574   MTBUF <outs, ins, "", pattern>,
1575   SIMCInstr<opName, SISubtarget.NONE> {
1576   let isPseudo = 1;
1577 }
1578
1579 class MTBUF_Real_si <bits<3> op, string opName, dag outs, dag ins,
1580                     string asm> :
1581   MTBUF <outs, ins, asm, []>,
1582   MTBUFe <op>,
1583   SIMCInstr<opName, SISubtarget.SI>;
1584
1585 class MTBUF_Real_vi <bits<4> op, string opName, dag outs, dag ins, string asm> :
1586   MTBUF <outs, ins, asm, []>,
1587   MTBUFe_vi <op>,
1588   SIMCInstr <opName, SISubtarget.VI>;
1589
1590 multiclass MTBUF_m <bits<3> op, string opName, dag outs, dag ins, string asm,
1591                     list<dag> pattern> {
1592
1593   def "" : MTBUF_Pseudo <opName, outs, ins, pattern>;
1594
1595   def _si : MTBUF_Real_si <op, opName, outs, ins, asm>;
1596
1597   def _vi : MTBUF_Real_vi <{0, op{2}, op{1}, op{0}}, opName, outs, ins, asm>;
1598
1599 }
1600
1601 let mayStore = 1, mayLoad = 0 in {
1602
1603 multiclass MTBUF_Store_Helper <bits<3> op, string opName,
1604                                RegisterClass regClass> : MTBUF_m <
1605   op, opName, (outs),
1606   (ins regClass:$vdata, u16imm:$offset, i1imm:$offen, i1imm:$idxen, i1imm:$glc,
1607    i1imm:$addr64, i8imm:$dfmt, i8imm:$nfmt, VGPR_32:$vaddr,
1608    SReg_128:$srsrc, i1imm:$slc, i1imm:$tfe, SCSrc_32:$soffset),
1609   opName#" $vdata, $offset, $offen, $idxen, $glc, $addr64, $dfmt,"
1610         #" $nfmt, $vaddr, $srsrc, $slc, $tfe, $soffset", []
1611 >;
1612
1613 } // mayStore = 1, mayLoad = 0
1614
1615 let mayLoad = 1, mayStore = 0 in {
1616
1617 multiclass MTBUF_Load_Helper <bits<3> op, string opName,
1618                               RegisterClass regClass> : MTBUF_m <
1619   op, opName, (outs regClass:$dst),
1620   (ins u16imm:$offset, i1imm:$offen, i1imm:$idxen, i1imm:$glc, i1imm:$addr64,
1621        i8imm:$dfmt, i8imm:$nfmt, VGPR_32:$vaddr, SReg_128:$srsrc,
1622        i1imm:$slc, i1imm:$tfe, SCSrc_32:$soffset),
1623   opName#" $dst, $offset, $offen, $idxen, $glc, $addr64, $dfmt,"
1624         #" $nfmt, $vaddr, $srsrc, $slc, $tfe, $soffset", []
1625 >;
1626
1627 } // mayLoad = 1, mayStore = 0
1628
1629 //===----------------------------------------------------------------------===//
1630 // MUBUF classes
1631 //===----------------------------------------------------------------------===//
1632
1633 class mubuf <bits<7> si, bits<7> vi = si> {
1634   field bits<7> SI = si;
1635   field bits<7> VI = vi;
1636 }
1637
1638 class MUBUFAddr64Table <bit is_addr64, string suffix = ""> {
1639   bit IsAddr64 = is_addr64;
1640   string OpName = NAME # suffix;
1641 }
1642
1643 class MUBUF_Pseudo <string opName, dag outs, dag ins, list<dag> pattern> :
1644   MUBUF <outs, ins, "", pattern>,
1645   SIMCInstr<opName, SISubtarget.NONE> {
1646   let isPseudo = 1;
1647
1648   // dummy fields, so that we can use let statements around multiclasses
1649   bits<1> offen;
1650   bits<1> idxen;
1651   bits<8> vaddr;
1652   bits<1> glc;
1653   bits<1> slc;
1654   bits<1> tfe;
1655   bits<8> soffset;
1656 }
1657
1658 class MUBUF_Real_si <mubuf op, string opName, dag outs, dag ins,
1659                      string asm> :
1660   MUBUF <outs, ins, asm, []>,
1661   MUBUFe <op.SI>,
1662   SIMCInstr<opName, SISubtarget.SI> {
1663   let lds = 0;
1664 }
1665
1666 class MUBUF_Real_vi <mubuf op, string opName, dag outs, dag ins,
1667                      string asm> :
1668   MUBUF <outs, ins, asm, []>,
1669   MUBUFe_vi <op.VI>,
1670   SIMCInstr<opName, SISubtarget.VI> {
1671   let lds = 0;
1672 }
1673
1674 multiclass MUBUF_m <mubuf op, string opName, dag outs, dag ins, string asm,
1675                     list<dag> pattern> {
1676
1677   def "" : MUBUF_Pseudo <opName, outs, ins, pattern>,
1678            MUBUFAddr64Table <0>;
1679
1680   let addr64 = 0 in {
1681     def _si : MUBUF_Real_si <op, opName, outs, ins, asm>;
1682   }
1683
1684   def _vi : MUBUF_Real_vi <op, opName, outs, ins, asm>;
1685 }
1686
1687 multiclass MUBUFAddr64_m <mubuf op, string opName, dag outs,
1688                           dag ins, string asm, list<dag> pattern> {
1689
1690   def "" : MUBUF_Pseudo <opName, outs, ins, pattern>,
1691            MUBUFAddr64Table <1>;
1692
1693   let addr64 = 1 in {
1694     def _si : MUBUF_Real_si <op, opName, outs, ins, asm>;
1695   }
1696
1697   // There is no VI version. If the pseudo is selected, it should be lowered
1698   // for VI appropriately.
1699 }
1700
1701 class MUBUF_si <bits<7> op, dag outs, dag ins, string asm, list<dag> pattern> :
1702   MUBUF <outs, ins, asm, pattern>, MUBUFe <op> {
1703   let lds = 0;
1704 }
1705
1706 multiclass MUBUFAtomicOffset_m <mubuf op, string opName, dag outs, dag ins,
1707                                 string asm, list<dag> pattern, bit is_return> {
1708
1709   def "" : MUBUF_Pseudo <opName, outs, ins, pattern>,
1710            MUBUFAddr64Table <0, !if(is_return, "_RTN", "")>,
1711            AtomicNoRet<NAME#"_OFFSET", is_return>;
1712
1713   let offen = 0, idxen = 0, tfe = 0, vaddr = 0 in {
1714     let addr64 = 0 in {
1715       def _si : MUBUF_Real_si <op, opName, outs, ins, asm>;
1716     }
1717
1718     def _vi : MUBUF_Real_vi <op, opName, outs, ins, asm>;
1719   }
1720 }
1721
1722 multiclass MUBUFAtomicAddr64_m <mubuf op, string opName, dag outs, dag ins,
1723                                 string asm, list<dag> pattern, bit is_return> {
1724
1725   def "" : MUBUF_Pseudo <opName, outs, ins, pattern>,
1726            MUBUFAddr64Table <1, !if(is_return, "_RTN", "")>,
1727            AtomicNoRet<NAME#"_ADDR64", is_return>;
1728
1729   let offen = 0, idxen = 0, addr64 = 1, tfe = 0 in {
1730     def _si : MUBUF_Real_si <op, opName, outs, ins, asm>;
1731   }
1732
1733   // There is no VI version. If the pseudo is selected, it should be lowered
1734   // for VI appropriately.
1735 }
1736
1737 multiclass MUBUF_Atomic <mubuf op, string name, RegisterClass rc,
1738                          ValueType vt, SDPatternOperator atomic> {
1739
1740   let mayStore = 1, mayLoad = 1, hasPostISelHook = 1 in {
1741
1742     // No return variants
1743     let glc = 0 in {
1744
1745       defm _ADDR64 : MUBUFAtomicAddr64_m <
1746         op, name#"_addr64", (outs),
1747         (ins rc:$vdata, SReg_128:$srsrc, VReg_64:$vaddr,
1748              mbuf_offset:$offset, slc:$slc),
1749         name#" $vdata, $vaddr, $srsrc, 0 addr64"#"$offset"#"$slc", [], 0
1750       >;
1751
1752       defm _OFFSET : MUBUFAtomicOffset_m <
1753         op, name#"_offset", (outs),
1754         (ins rc:$vdata, SReg_128:$srsrc, mbuf_offset:$offset,
1755              SCSrc_32:$soffset, slc:$slc),
1756         name#" $vdata, $srsrc, $soffset"#"$offset"#"$slc", [], 0
1757       >;
1758     } // glc = 0
1759
1760     // Variant that return values
1761     let glc = 1, Constraints = "$vdata = $vdata_in",
1762         DisableEncoding = "$vdata_in"  in {
1763
1764       defm _RTN_ADDR64 : MUBUFAtomicAddr64_m <
1765         op, name#"_rtn_addr64", (outs rc:$vdata),
1766         (ins rc:$vdata_in, SReg_128:$srsrc, VReg_64:$vaddr,
1767              mbuf_offset:$offset, SSrc_32:$soffset, slc:$slc),
1768         name#" $vdata, $vaddr, $srsrc, $soffset addr64"#"$offset"#" glc"#"$slc",
1769         [(set vt:$vdata,
1770          (atomic (MUBUFAddr64Atomic v4i32:$srsrc, i64:$vaddr, i32:$soffset,
1771                                     i16:$offset, i1:$slc), vt:$vdata_in))], 1
1772       >;
1773
1774       defm _RTN_OFFSET : MUBUFAtomicOffset_m <
1775         op, name#"_rtn_offset", (outs rc:$vdata),
1776         (ins rc:$vdata_in, SReg_128:$srsrc, mbuf_offset:$offset,
1777              SCSrc_32:$soffset, slc:$slc),
1778         name#" $vdata, $srsrc, $soffset"#"$offset"#" glc $slc",
1779         [(set vt:$vdata,
1780          (atomic (MUBUFOffsetAtomic v4i32:$srsrc, i32:$soffset, i16:$offset,
1781                                     i1:$slc), vt:$vdata_in))], 1
1782       >;
1783
1784     } // glc = 1
1785
1786   } // mayStore = 1, mayLoad = 1, hasPostISelHook = 1
1787 }
1788
1789 multiclass MUBUF_Load_Helper <mubuf op, string name, RegisterClass regClass,
1790                               ValueType load_vt = i32,
1791                               SDPatternOperator ld = null_frag> {
1792
1793   let mayLoad = 1, mayStore = 0 in {
1794     let offen = 0, idxen = 0, vaddr = 0 in {
1795       defm _OFFSET : MUBUF_m <op, name#"_offset", (outs regClass:$vdata),
1796                            (ins SReg_128:$srsrc,
1797                            mbuf_offset:$offset, SCSrc_32:$soffset, glc:$glc,
1798                            slc:$slc, tfe:$tfe),
1799                            name#" $vdata, $srsrc, $soffset"#"$offset"#"$glc"#"$slc"#"$tfe",
1800                            [(set load_vt:$vdata, (ld (MUBUFOffset v4i32:$srsrc,
1801                                                      i32:$soffset, i16:$offset,
1802                                                      i1:$glc, i1:$slc, i1:$tfe)))]>;
1803     }
1804
1805     let offen = 1, idxen = 0  in {
1806       defm _OFFEN  : MUBUF_m <op, name#"_offen", (outs regClass:$vdata),
1807                            (ins SReg_128:$srsrc, VGPR_32:$vaddr,
1808                            SCSrc_32:$soffset, mbuf_offset:$offset, glc:$glc, slc:$slc,
1809                            tfe:$tfe),
1810                            name#" $vdata, $vaddr, $srsrc, $soffset offen"#"$offset"#"$glc"#"$slc"#"$tfe", []>;
1811     }
1812
1813     let offen = 0, idxen = 1 in {
1814       defm _IDXEN  : MUBUF_m <op, name#"_idxen", (outs regClass:$vdata),
1815                            (ins SReg_128:$srsrc, VGPR_32:$vaddr,
1816                            mbuf_offset:$offset, SCSrc_32:$soffset, glc:$glc,
1817                            slc:$slc, tfe:$tfe),
1818                            name#" $vdata, $vaddr, $srsrc, $soffset idxen"#"$offset"#"$glc"#"$slc"#"$tfe", []>;
1819     }
1820
1821     let offen = 1, idxen = 1 in {
1822       defm _BOTHEN : MUBUF_m <op, name#"_bothen", (outs regClass:$vdata),
1823                            (ins SReg_128:$srsrc, VReg_64:$vaddr,
1824                            SCSrc_32:$soffset, glc:$glc, slc:$slc, tfe:$tfe),
1825                            name#" $vdata, $vaddr, $srsrc, $soffset, idxen offen"#"$glc"#"$slc"#"$tfe", []>;
1826     }
1827
1828     let offen = 0, idxen = 0, glc = 0, slc = 0, tfe = 0 in {
1829       defm _ADDR64 : MUBUFAddr64_m <op, name#"_addr64", (outs regClass:$vdata),
1830                            (ins SReg_128:$srsrc, VReg_64:$vaddr,
1831                                 SCSrc_32:$soffset, mbuf_offset:$offset),
1832                            name#" $vdata, $vaddr, $srsrc, $soffset addr64"#"$offset",
1833                            [(set load_vt:$vdata, (ld (MUBUFAddr64 v4i32:$srsrc,
1834                                                   i64:$vaddr, i32:$soffset,
1835                                                   i16:$offset)))]>;
1836     }
1837   }
1838 }
1839
1840 multiclass MUBUF_Store_Helper <mubuf op, string name, RegisterClass vdataClass,
1841                           ValueType store_vt, SDPatternOperator st> {
1842   let mayLoad = 0, mayStore = 1 in {
1843     defm : MUBUF_m <op, name, (outs),
1844                     (ins vdataClass:$vdata, SReg_128:$srsrc, VGPR_32:$vaddr, SCSrc_32:$soffset,
1845                     mbuf_offset:$offset, offen:$offen, idxen:$idxen, glc:$glc, slc:$slc,
1846                     tfe:$tfe),
1847                     name#" $vdata, $vaddr, $srsrc, $soffset"#"$offen"#"$idxen"#"$offset"#
1848                     "$glc"#"$slc"#"$tfe", []>;
1849
1850     let offen = 0, idxen = 0, vaddr = 0 in {
1851       defm _OFFSET : MUBUF_m <op, name#"_offset",(outs),
1852                               (ins vdataClass:$vdata, SReg_128:$srsrc, mbuf_offset:$offset,
1853                               SCSrc_32:$soffset, glc:$glc, slc:$slc, tfe:$tfe),
1854                               name#" $vdata, $srsrc, $soffset"#"$offset"#"$glc"#"$slc"#"$tfe",
1855                               [(st store_vt:$vdata, (MUBUFOffset v4i32:$srsrc, i32:$soffset,
1856                                    i16:$offset, i1:$glc, i1:$slc, i1:$tfe))]>;
1857     } // offen = 0, idxen = 0, vaddr = 0
1858
1859     let offen = 1, idxen = 0  in {
1860       defm _OFFEN : MUBUF_m <op, name#"_offen", (outs),
1861                              (ins vdataClass:$vdata, SReg_128:$srsrc, VGPR_32:$vaddr, SCSrc_32:$soffset,
1862                              mbuf_offset:$offset, glc:$glc, slc:$slc, tfe:$tfe),
1863                              name#" $vdata, $vaddr, $srsrc, $soffset offen"#"$offset"#
1864                              "$glc"#"$slc"#"$tfe", []>;
1865     } // end offen = 1, idxen = 0
1866
1867     let offen = 0, idxen = 0, glc = 0, slc = 0, tfe = 0 in {
1868       defm _ADDR64 : MUBUFAddr64_m <op, name#"_addr64", (outs),
1869                                     (ins vdataClass:$vdata, SReg_128:$srsrc,
1870                                          VReg_64:$vaddr, SCSrc_32:$soffset,
1871                                          mbuf_offset:$offset),
1872                                     name#" $vdata, $vaddr, $srsrc, $soffset addr64"#"$offset",
1873                                     [(st store_vt:$vdata,
1874                                       (MUBUFAddr64 v4i32:$srsrc, i64:$vaddr,
1875                                                    i32:$soffset, i16:$offset))]>;
1876     }
1877   } // End mayLoad = 0, mayStore = 1
1878 }
1879
1880 class FLAT_Load_Helper <bits<7> op, string asm, RegisterClass regClass> :
1881       FLAT <op, (outs regClass:$data),
1882                 (ins VReg_64:$addr),
1883             asm#" $data, $addr, [M0, FLAT_SCRATCH]", []> {
1884   let glc = 0;
1885   let slc = 0;
1886   let tfe = 0;
1887   let mayLoad = 1;
1888 }
1889
1890 class FLAT_Store_Helper <bits<7> op, string name, RegisterClass vdataClass> :
1891       FLAT <op, (outs), (ins vdataClass:$data, VReg_64:$addr),
1892           name#" $data, $addr, [M0, FLAT_SCRATCH]",
1893          []> {
1894
1895   let mayLoad = 0;
1896   let mayStore = 1;
1897
1898   // Encoding
1899   let glc = 0;
1900   let slc = 0;
1901   let tfe = 0;
1902 }
1903
1904 class MIMG_Mask <string op, int channels> {
1905   string Op = op;
1906   int Channels = channels;
1907 }
1908
1909 class MIMG_NoSampler_Helper <bits<7> op, string asm,
1910                              RegisterClass dst_rc,
1911                              RegisterClass src_rc> : MIMG <
1912   op,
1913   (outs dst_rc:$vdata),
1914   (ins i32imm:$dmask, i1imm:$unorm, i1imm:$glc, i1imm:$da, i1imm:$r128,
1915        i1imm:$tfe, i1imm:$lwe, i1imm:$slc, src_rc:$vaddr,
1916        SReg_256:$srsrc),
1917   asm#" $vdata, $dmask, $unorm, $glc, $da, $r128,"
1918      #" $tfe, $lwe, $slc, $vaddr, $srsrc",
1919   []> {
1920   let SSAMP = 0;
1921   let mayLoad = 1;
1922   let mayStore = 0;
1923   let hasPostISelHook = 1;
1924 }
1925
1926 multiclass MIMG_NoSampler_Src_Helper <bits<7> op, string asm,
1927                                       RegisterClass dst_rc,
1928                                       int channels> {
1929   def _V1 : MIMG_NoSampler_Helper <op, asm, dst_rc, VGPR_32>,
1930             MIMG_Mask<asm#"_V1", channels>;
1931   def _V2 : MIMG_NoSampler_Helper <op, asm, dst_rc, VReg_64>,
1932             MIMG_Mask<asm#"_V2", channels>;
1933   def _V4 : MIMG_NoSampler_Helper <op, asm, dst_rc, VReg_128>,
1934             MIMG_Mask<asm#"_V4", channels>;
1935 }
1936
1937 multiclass MIMG_NoSampler <bits<7> op, string asm> {
1938   defm _V1 : MIMG_NoSampler_Src_Helper <op, asm, VGPR_32, 1>;
1939   defm _V2 : MIMG_NoSampler_Src_Helper <op, asm, VReg_64, 2>;
1940   defm _V3 : MIMG_NoSampler_Src_Helper <op, asm, VReg_96, 3>;
1941   defm _V4 : MIMG_NoSampler_Src_Helper <op, asm, VReg_128, 4>;
1942 }
1943
1944 class MIMG_Sampler_Helper <bits<7> op, string asm,
1945                            RegisterClass dst_rc,
1946                            RegisterClass src_rc, int wqm> : MIMG <
1947   op,
1948   (outs dst_rc:$vdata),
1949   (ins i32imm:$dmask, i1imm:$unorm, i1imm:$glc, i1imm:$da, i1imm:$r128,
1950        i1imm:$tfe, i1imm:$lwe, i1imm:$slc, src_rc:$vaddr,
1951        SReg_256:$srsrc, SReg_128:$ssamp),
1952   asm#" $vdata, $dmask, $unorm, $glc, $da, $r128,"
1953      #" $tfe, $lwe, $slc, $vaddr, $srsrc, $ssamp",
1954   []> {
1955   let mayLoad = 1;
1956   let mayStore = 0;
1957   let hasPostISelHook = 1;
1958   let WQM = wqm;
1959 }
1960
1961 multiclass MIMG_Sampler_Src_Helper <bits<7> op, string asm,
1962                                     RegisterClass dst_rc,
1963                                     int channels, int wqm> {
1964   def _V1 : MIMG_Sampler_Helper <op, asm, dst_rc, VGPR_32, wqm>,
1965             MIMG_Mask<asm#"_V1", channels>;
1966   def _V2 : MIMG_Sampler_Helper <op, asm, dst_rc, VReg_64, wqm>,
1967             MIMG_Mask<asm#"_V2", channels>;
1968   def _V4 : MIMG_Sampler_Helper <op, asm, dst_rc, VReg_128, wqm>,
1969             MIMG_Mask<asm#"_V4", channels>;
1970   def _V8 : MIMG_Sampler_Helper <op, asm, dst_rc, VReg_256, wqm>,
1971             MIMG_Mask<asm#"_V8", channels>;
1972   def _V16 : MIMG_Sampler_Helper <op, asm, dst_rc, VReg_512, wqm>,
1973             MIMG_Mask<asm#"_V16", channels>;
1974 }
1975
1976 multiclass MIMG_Sampler <bits<7> op, string asm> {
1977   defm _V1 : MIMG_Sampler_Src_Helper<op, asm, VGPR_32, 1, 0>;
1978   defm _V2 : MIMG_Sampler_Src_Helper<op, asm, VReg_64, 2, 0>;
1979   defm _V3 : MIMG_Sampler_Src_Helper<op, asm, VReg_96, 3, 0>;
1980   defm _V4 : MIMG_Sampler_Src_Helper<op, asm, VReg_128, 4, 0>;
1981 }
1982
1983 multiclass MIMG_Sampler_WQM <bits<7> op, string asm> {
1984   defm _V1 : MIMG_Sampler_Src_Helper<op, asm, VGPR_32, 1, 1>;
1985   defm _V2 : MIMG_Sampler_Src_Helper<op, asm, VReg_64, 2, 1>;
1986   defm _V3 : MIMG_Sampler_Src_Helper<op, asm, VReg_96, 3, 1>;
1987   defm _V4 : MIMG_Sampler_Src_Helper<op, asm, VReg_128, 4, 1>;
1988 }
1989
1990 class MIMG_Gather_Helper <bits<7> op, string asm,
1991                           RegisterClass dst_rc,
1992                           RegisterClass src_rc, int wqm> : MIMG <
1993   op,
1994   (outs dst_rc:$vdata),
1995   (ins i32imm:$dmask, i1imm:$unorm, i1imm:$glc, i1imm:$da, i1imm:$r128,
1996        i1imm:$tfe, i1imm:$lwe, i1imm:$slc, src_rc:$vaddr,
1997        SReg_256:$srsrc, SReg_128:$ssamp),
1998   asm#" $vdata, $dmask, $unorm, $glc, $da, $r128,"
1999      #" $tfe, $lwe, $slc, $vaddr, $srsrc, $ssamp",
2000   []> {
2001   let mayLoad = 1;
2002   let mayStore = 0;
2003
2004   // DMASK was repurposed for GATHER4. 4 components are always
2005   // returned and DMASK works like a swizzle - it selects
2006   // the component to fetch. The only useful DMASK values are
2007   // 1=red, 2=green, 4=blue, 8=alpha. (e.g. 1 returns
2008   // (red,red,red,red) etc.) The ISA document doesn't mention
2009   // this.
2010   // Therefore, disable all code which updates DMASK by setting these two:
2011   let MIMG = 0;
2012   let hasPostISelHook = 0;
2013   let WQM = wqm;
2014 }
2015
2016 multiclass MIMG_Gather_Src_Helper <bits<7> op, string asm,
2017                                     RegisterClass dst_rc,
2018                                     int channels, int wqm> {
2019   def _V1 : MIMG_Gather_Helper <op, asm, dst_rc, VGPR_32, wqm>,
2020             MIMG_Mask<asm#"_V1", channels>;
2021   def _V2 : MIMG_Gather_Helper <op, asm, dst_rc, VReg_64, wqm>,
2022             MIMG_Mask<asm#"_V2", channels>;
2023   def _V4 : MIMG_Gather_Helper <op, asm, dst_rc, VReg_128, wqm>,
2024             MIMG_Mask<asm#"_V4", channels>;
2025   def _V8 : MIMG_Gather_Helper <op, asm, dst_rc, VReg_256, wqm>,
2026             MIMG_Mask<asm#"_V8", channels>;
2027   def _V16 : MIMG_Gather_Helper <op, asm, dst_rc, VReg_512, wqm>,
2028             MIMG_Mask<asm#"_V16", channels>;
2029 }
2030
2031 multiclass MIMG_Gather <bits<7> op, string asm> {
2032   defm _V1 : MIMG_Gather_Src_Helper<op, asm, VGPR_32, 1, 0>;
2033   defm _V2 : MIMG_Gather_Src_Helper<op, asm, VReg_64, 2, 0>;
2034   defm _V3 : MIMG_Gather_Src_Helper<op, asm, VReg_96, 3, 0>;
2035   defm _V4 : MIMG_Gather_Src_Helper<op, asm, VReg_128, 4, 0>;
2036 }
2037
2038 multiclass MIMG_Gather_WQM <bits<7> op, string asm> {
2039   defm _V1 : MIMG_Gather_Src_Helper<op, asm, VGPR_32, 1, 1>;
2040   defm _V2 : MIMG_Gather_Src_Helper<op, asm, VReg_64, 2, 1>;
2041   defm _V3 : MIMG_Gather_Src_Helper<op, asm, VReg_96, 3, 1>;
2042   defm _V4 : MIMG_Gather_Src_Helper<op, asm, VReg_128, 4, 1>;
2043 }
2044
2045 //===----------------------------------------------------------------------===//
2046 // Vector instruction mappings
2047 //===----------------------------------------------------------------------===//
2048
2049 // Maps an opcode in e32 form to its e64 equivalent
2050 def getVOPe64 : InstrMapping {
2051   let FilterClass = "VOP";
2052   let RowFields = ["OpName"];
2053   let ColFields = ["Size"];
2054   let KeyCol = ["4"];
2055   let ValueCols = [["8"]];
2056 }
2057
2058 // Maps an opcode in e64 form to its e32 equivalent
2059 def getVOPe32 : InstrMapping {
2060   let FilterClass = "VOP";
2061   let RowFields = ["OpName"];
2062   let ColFields = ["Size"];
2063   let KeyCol = ["8"];
2064   let ValueCols = [["4"]];
2065 }
2066
2067 // Maps an original opcode to its commuted version
2068 def getCommuteRev : InstrMapping {
2069   let FilterClass = "VOP2_REV";
2070   let RowFields = ["RevOp"];
2071   let ColFields = ["IsOrig"];
2072   let KeyCol = ["1"];
2073   let ValueCols = [["0"]];
2074 }
2075
2076 def getMaskedMIMGOp : InstrMapping {
2077   let FilterClass = "MIMG_Mask";
2078   let RowFields = ["Op"];
2079   let ColFields = ["Channels"];
2080   let KeyCol = ["4"];
2081   let ValueCols = [["1"], ["2"], ["3"] ];
2082 }
2083
2084 // Maps an commuted opcode to its original version
2085 def getCommuteOrig : InstrMapping {
2086   let FilterClass = "VOP2_REV";
2087   let RowFields = ["RevOp"];
2088   let ColFields = ["IsOrig"];
2089   let KeyCol = ["0"];
2090   let ValueCols = [["1"]];
2091 }
2092
2093 def getMCOpcodeGen : InstrMapping {
2094   let FilterClass = "SIMCInstr";
2095   let RowFields = ["PseudoInstr"];
2096   let ColFields = ["Subtarget"];
2097   let KeyCol = [!cast<string>(SISubtarget.NONE)];
2098   let ValueCols = [[!cast<string>(SISubtarget.SI)],[!cast<string>(SISubtarget.VI)]];
2099 }
2100
2101 def getAddr64Inst : InstrMapping {
2102   let FilterClass = "MUBUFAddr64Table";
2103   let RowFields = ["OpName"];
2104   let ColFields = ["IsAddr64"];
2105   let KeyCol = ["0"];
2106   let ValueCols = [["1"]];
2107 }
2108
2109 // Maps an atomic opcode to its version with a return value.
2110 def getAtomicRetOp : InstrMapping {
2111   let FilterClass = "AtomicNoRet";
2112   let RowFields = ["NoRetOp"];
2113   let ColFields = ["IsRet"];
2114   let KeyCol = ["0"];
2115   let ValueCols = [["1"]];
2116 }
2117
2118 // Maps an atomic opcode to its returnless version.
2119 def getAtomicNoRetOp : InstrMapping {
2120   let FilterClass = "AtomicNoRet";
2121   let RowFields = ["NoRetOp"];
2122   let ColFields = ["IsRet"];
2123   let KeyCol = ["1"];
2124   let ValueCols = [["0"]];
2125 }
2126
2127 include "SIInstructions.td"
2128 include "CIInstructions.td"
2129 include "VIInstructions.td"