678f8e9dac2ca473c31642aeb9667f69affcf7b5
[oota-llvm.git] / lib / Target / CellSPU / SPUInstrInfo.td
1 //==- SPUInstrInfo.td - Describe the Cell SPU Instructions -*- 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 // Cell SPU Instructions:
10 //===----------------------------------------------------------------------===//
11
12 //===----------------------------------------------------------------------===//
13 // TODO Items (not urgent today, but would be nice, low priority)
14 //
15 // ANDBI, ORBI: SPU constructs a 4-byte constant for these instructions by
16 // concatenating the byte argument b as "bbbb". Could recognize this bit pattern
17 // in 16-bit and 32-bit constants and reduce instruction count.
18 //===----------------------------------------------------------------------===//
19
20 //===----------------------------------------------------------------------===//
21 // Pseudo instructions:
22 //===----------------------------------------------------------------------===//
23
24 let hasCtrlDep = 1, Defs = [R1], Uses = [R1] in {
25   def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm_i32:$amt),
26                                 "${:comment} ADJCALLSTACKDOWN",
27                                 [(callseq_start timm:$amt)]>;
28   def ADJCALLSTACKUP   : Pseudo<(outs), (ins u16imm_i32:$amt),
29                                 "${:comment} ADJCALLSTACKUP",
30                                 [(callseq_end timm:$amt)]>;
31 }
32
33 //===----------------------------------------------------------------------===//
34 // DWARF debugging Pseudo Instructions
35 //===----------------------------------------------------------------------===//
36
37 def DWARF_LOC        : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
38                               "${:comment} .loc $file, $line, $col",
39                       [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
40                                   (i32 imm:$file))]>;
41
42 //===----------------------------------------------------------------------===//
43 // Loads:
44 // NB: The ordering is actually important, since the instruction selection
45 // will try each of the instructions in sequence, i.e., the D-form first with
46 // the 10-bit displacement, then the A-form with the 16 bit displacement, and
47 // finally the X-form with the register-register.
48 //===----------------------------------------------------------------------===//
49
50 let canFoldAsLoad = 1 in {
51   class LoadDFormVec<ValueType vectype>
52     : RI10Form<0b00101100, (outs VECREG:$rT), (ins memri10:$src),
53                "lqd\t$rT, $src",
54                LoadStore,
55                [(set (vectype VECREG:$rT), (load dform_addr:$src))]>
56   { }
57
58   class LoadDForm<RegisterClass rclass>
59     : RI10Form<0b00101100, (outs rclass:$rT), (ins memri10:$src),
60                "lqd\t$rT, $src",
61                LoadStore,
62                [(set rclass:$rT, (load dform_addr:$src))]>
63   { }
64
65   multiclass LoadDForms
66   {
67     def v16i8: LoadDFormVec<v16i8>;
68     def v8i16: LoadDFormVec<v8i16>;
69     def v4i32: LoadDFormVec<v4i32>;
70     def v2i64: LoadDFormVec<v2i64>;
71     def v4f32: LoadDFormVec<v4f32>;
72     def v2f64: LoadDFormVec<v2f64>;
73
74     def r128:  LoadDForm<GPRC>;
75     def r64:   LoadDForm<R64C>;
76     def r32:   LoadDForm<R32C>;
77     def f32:   LoadDForm<R32FP>;
78     def f64:   LoadDForm<R64FP>;
79     def r16:   LoadDForm<R16C>;
80     def r8:    LoadDForm<R8C>;
81   }
82
83   class LoadAFormVec<ValueType vectype>
84     : RI16Form<0b100001100, (outs VECREG:$rT), (ins addr256k:$src),
85                "lqa\t$rT, $src",
86                LoadStore,
87                [(set (vectype VECREG:$rT), (load aform_addr:$src))]>
88   { }
89
90   class LoadAForm<RegisterClass rclass>
91     : RI16Form<0b100001100, (outs rclass:$rT), (ins addr256k:$src),
92                "lqa\t$rT, $src",
93                LoadStore,
94                [(set rclass:$rT, (load aform_addr:$src))]>
95   { }
96
97   multiclass LoadAForms
98   {
99     def v16i8: LoadAFormVec<v16i8>;
100     def v8i16: LoadAFormVec<v8i16>;
101     def v4i32: LoadAFormVec<v4i32>;
102     def v2i64: LoadAFormVec<v2i64>;
103     def v4f32: LoadAFormVec<v4f32>;
104     def v2f64: LoadAFormVec<v2f64>;
105
106     def r128:  LoadAForm<GPRC>;
107     def r64:   LoadAForm<R64C>;
108     def r32:   LoadAForm<R32C>;
109     def f32:   LoadAForm<R32FP>;
110     def f64:   LoadAForm<R64FP>;
111     def r16:   LoadAForm<R16C>;
112     def r8:    LoadAForm<R8C>;
113   }
114
115   class LoadXFormVec<ValueType vectype>
116     : RRForm<0b00100011100, (outs VECREG:$rT), (ins memrr:$src),
117              "lqx\t$rT, $src",
118              LoadStore,
119              [(set (vectype VECREG:$rT), (load xform_addr:$src))]>
120   { }
121
122   class LoadXForm<RegisterClass rclass>
123     : RRForm<0b00100011100, (outs rclass:$rT), (ins memrr:$src),
124              "lqx\t$rT, $src",
125              LoadStore,
126              [(set rclass:$rT, (load xform_addr:$src))]>
127   { }
128
129   multiclass LoadXForms
130   {
131     def v16i8: LoadXFormVec<v16i8>;
132     def v8i16: LoadXFormVec<v8i16>;
133     def v4i32: LoadXFormVec<v4i32>;
134     def v2i64: LoadXFormVec<v2i64>;
135     def v4f32: LoadXFormVec<v4f32>;
136     def v2f64: LoadXFormVec<v2f64>;
137
138     def r128:  LoadXForm<GPRC>;
139     def r64:   LoadXForm<R64C>;
140     def r32:   LoadXForm<R32C>;
141     def f32:   LoadXForm<R32FP>;
142     def f64:   LoadXForm<R64FP>;
143     def r16:   LoadXForm<R16C>;
144     def r8:    LoadXForm<R8C>;
145   }
146
147   defm LQA : LoadAForms;
148   defm LQD : LoadDForms;
149   defm LQX : LoadXForms;
150
151 /* Load quadword, PC relative: Not much use at this point in time.
152    Might be of use later for relocatable code. It's effectively the
153    same as LQA, but uses PC-relative addressing.
154   def LQR : RI16Form<0b111001100, (outs VECREG:$rT), (ins s16imm:$disp),
155                      "lqr\t$rT, $disp", LoadStore,
156                      [(set VECREG:$rT, (load iaddr:$disp))]>;
157  */
158 }
159
160 //===----------------------------------------------------------------------===//
161 // Stores:
162 //===----------------------------------------------------------------------===//
163 class StoreDFormVec<ValueType vectype>
164   : RI10Form<0b00100100, (outs), (ins VECREG:$rT, memri10:$src),
165              "stqd\t$rT, $src",
166              LoadStore,
167              [(store (vectype VECREG:$rT), dform_addr:$src)]>
168 { }
169
170 class StoreDForm<RegisterClass rclass>
171   : RI10Form<0b00100100, (outs), (ins rclass:$rT, memri10:$src),
172              "stqd\t$rT, $src",
173              LoadStore,
174              [(store rclass:$rT, dform_addr:$src)]>
175 { }
176
177 multiclass StoreDForms
178 {
179   def v16i8: StoreDFormVec<v16i8>;
180   def v8i16: StoreDFormVec<v8i16>;
181   def v4i32: StoreDFormVec<v4i32>;
182   def v2i64: StoreDFormVec<v2i64>;
183   def v4f32: StoreDFormVec<v4f32>;
184   def v2f64: StoreDFormVec<v2f64>;
185
186   def r128:  StoreDForm<GPRC>;
187   def r64:   StoreDForm<R64C>;
188   def r32:   StoreDForm<R32C>;
189   def f32:   StoreDForm<R32FP>;
190   def f64:   StoreDForm<R64FP>;
191   def r16:   StoreDForm<R16C>;
192   def r8:    StoreDForm<R8C>;
193 }
194
195 class StoreAFormVec<ValueType vectype>
196   : RI16Form<0b0010010, (outs), (ins VECREG:$rT, addr256k:$src),
197              "stqa\t$rT, $src",
198              LoadStore,
199              [(store (vectype VECREG:$rT), aform_addr:$src)]>;
200
201 class StoreAForm<RegisterClass rclass>
202   : RI16Form<0b001001, (outs), (ins rclass:$rT, addr256k:$src),
203              "stqa\t$rT, $src",
204              LoadStore,
205              [(store rclass:$rT, aform_addr:$src)]>;
206
207 multiclass StoreAForms
208 {
209   def v16i8: StoreAFormVec<v16i8>;
210   def v8i16: StoreAFormVec<v8i16>;
211   def v4i32: StoreAFormVec<v4i32>;
212   def v2i64: StoreAFormVec<v2i64>;
213   def v4f32: StoreAFormVec<v4f32>;
214   def v2f64: StoreAFormVec<v2f64>;
215
216   def r128:  StoreAForm<GPRC>;
217   def r64:   StoreAForm<R64C>;
218   def r32:   StoreAForm<R32C>;
219   def f32:   StoreAForm<R32FP>;
220   def f64:   StoreAForm<R64FP>;
221   def r16:   StoreAForm<R16C>;
222   def r8:    StoreAForm<R8C>;
223 }
224
225 class StoreXFormVec<ValueType vectype>
226   : RRForm<0b00100100, (outs), (ins VECREG:$rT, memrr:$src),
227            "stqx\t$rT, $src",
228            LoadStore,
229            [(store (vectype VECREG:$rT), xform_addr:$src)]>
230 { }
231
232 class StoreXForm<RegisterClass rclass>
233   : RRForm<0b00100100, (outs), (ins rclass:$rT, memrr:$src),
234            "stqx\t$rT, $src",
235            LoadStore,
236            [(store rclass:$rT, xform_addr:$src)]>
237 { }
238
239 multiclass StoreXForms
240 {
241   def v16i8: StoreXFormVec<v16i8>;
242   def v8i16: StoreXFormVec<v8i16>;
243   def v4i32: StoreXFormVec<v4i32>;
244   def v2i64: StoreXFormVec<v2i64>;
245   def v4f32: StoreXFormVec<v4f32>;
246   def v2f64: StoreXFormVec<v2f64>;
247
248   def r128:  StoreXForm<GPRC>;
249   def r64:   StoreXForm<R64C>;
250   def r32:   StoreXForm<R32C>;
251   def f32:   StoreXForm<R32FP>;
252   def f64:   StoreXForm<R64FP>;
253   def r16:   StoreXForm<R16C>;
254   def r8:    StoreXForm<R8C>;
255 }
256
257 defm STQD : StoreDForms;
258 defm STQA : StoreAForms;
259 defm STQX : StoreXForms;
260
261 /* Store quadword, PC relative: Not much use at this point in time. Might
262    be useful for relocatable code.
263 def STQR : RI16Form<0b111000100, (outs), (ins VECREG:$rT, s16imm:$disp),
264                    "stqr\t$rT, $disp", LoadStore,
265                    [(store VECREG:$rT, iaddr:$disp)]>;
266 */
267
268 //===----------------------------------------------------------------------===//
269 // Generate Controls for Insertion:
270 //===----------------------------------------------------------------------===//
271
272 def CBD: RI7Form<0b10101111100, (outs VECREG:$rT), (ins memri7:$src),
273     "cbd\t$rT, $src", ShuffleOp,
274     [(set (v16i8 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
275
276 def CBX: RRForm<0b00101011100, (outs VECREG:$rT), (ins memrr:$src),
277     "cbx\t$rT, $src", ShuffleOp,
278     [(set (v16i8 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
279
280 def CHD: RI7Form<0b10101111100, (outs VECREG:$rT), (ins memri7:$src),
281     "chd\t$rT, $src", ShuffleOp,
282     [(set (v8i16 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
283
284 def CHX: RRForm<0b10101011100, (outs VECREG:$rT), (ins memrr:$src),
285     "chx\t$rT, $src", ShuffleOp,
286     [(set (v8i16 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
287
288 def CWD: RI7Form<0b01101111100, (outs VECREG:$rT), (ins memri7:$src),
289     "cwd\t$rT, $src", ShuffleOp,
290     [(set (v4i32 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
291
292 def CWX: RRForm<0b01101011100, (outs VECREG:$rT), (ins memrr:$src),
293     "cwx\t$rT, $src", ShuffleOp,
294     [(set (v4i32 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
295
296 def CWDf32: RI7Form<0b01101111100, (outs VECREG:$rT), (ins memri7:$src),
297     "cwd\t$rT, $src", ShuffleOp,
298     [(set (v4f32 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
299
300 def CWXf32: RRForm<0b01101011100, (outs VECREG:$rT), (ins memrr:$src),
301     "cwx\t$rT, $src", ShuffleOp,
302     [(set (v4f32 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
303
304 def CDD: RI7Form<0b11101111100, (outs VECREG:$rT), (ins memri7:$src),
305     "cdd\t$rT, $src", ShuffleOp,
306     [(set (v2i64 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
307
308 def CDX: RRForm<0b11101011100, (outs VECREG:$rT), (ins memrr:$src),
309     "cdx\t$rT, $src", ShuffleOp,
310     [(set (v2i64 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
311
312 def CDDf64: RI7Form<0b11101111100, (outs VECREG:$rT), (ins memri7:$src),
313     "cdd\t$rT, $src", ShuffleOp,
314     [(set (v2f64 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
315
316 def CDXf64: RRForm<0b11101011100, (outs VECREG:$rT), (ins memrr:$src),
317     "cdx\t$rT, $src", ShuffleOp,
318     [(set (v2f64 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
319
320 //===----------------------------------------------------------------------===//
321 // Constant formation:
322 //===----------------------------------------------------------------------===//
323
324 def ILHv8i16:
325   RI16Form<0b110000010, (outs VECREG:$rT), (ins s16imm:$val),
326     "ilh\t$rT, $val", ImmLoad,
327     [(set (v8i16 VECREG:$rT), (v8i16 v8i16SExt16Imm:$val))]>;
328
329 def ILHr16:
330   RI16Form<0b110000010, (outs R16C:$rT), (ins s16imm:$val),
331     "ilh\t$rT, $val", ImmLoad,
332     [(set R16C:$rT, immSExt16:$val)]>;
333
334 // Cell SPU doesn't have a native 8-bit immediate load, but ILH works ("with
335 // the right constant")
336 def ILHr8:
337   RI16Form<0b110000010, (outs R8C:$rT), (ins s16imm_i8:$val),
338     "ilh\t$rT, $val", ImmLoad,
339     [(set R8C:$rT, immSExt8:$val)]>;
340
341 // IL does sign extension!
342
343 class ILInst<dag OOL, dag IOL, list<dag> pattern>:
344   RI16Form<0b100000010, OOL, IOL, "il\t$rT, $val",
345            ImmLoad, pattern>;
346
347 class ILVecInst<ValueType vectype, Operand immtype, PatLeaf xform>:
348   ILInst<(outs VECREG:$rT), (ins immtype:$val),
349          [(set (vectype VECREG:$rT), (vectype xform:$val))]>;
350
351 class ILRegInst<RegisterClass rclass, Operand immtype, PatLeaf xform>:
352   ILInst<(outs rclass:$rT), (ins immtype:$val),
353          [(set rclass:$rT, xform:$val)]>;
354
355 multiclass ImmediateLoad
356 {
357   def v2i64: ILVecInst<v2i64, s16imm_i64, v2i64SExt16Imm>;
358   def v4i32: ILVecInst<v4i32, s16imm_i32, v4i32SExt16Imm>;
359
360   // TODO: Need v2f64, v4f32
361
362   def r64: ILRegInst<R64C, s16imm_i64, immSExt16>;
363   def r32: ILRegInst<R32C, s16imm_i32, immSExt16>;
364   def f32: ILRegInst<R32FP, s16imm_f32, fpimmSExt16>;
365   def f64: ILRegInst<R64FP, s16imm_f64, fpimmSExt16>;
366 }
367
368 defm IL : ImmediateLoad;
369
370 class ILHUInst<dag OOL, dag IOL, list<dag> pattern>:
371   RI16Form<0b010000010, OOL, IOL, "ilhu\t$rT, $val",
372            ImmLoad, pattern>;
373
374 class ILHUVecInst<ValueType vectype, Operand immtype, PatLeaf xform>:
375   ILHUInst<(outs VECREG:$rT), (ins immtype:$val),
376            [(set (vectype VECREG:$rT), (vectype xform:$val))]>;
377
378 class ILHURegInst<RegisterClass rclass, Operand immtype, PatLeaf xform>:
379   ILHUInst<(outs rclass:$rT), (ins immtype:$val),
380            [(set rclass:$rT, xform:$val)]>;
381
382 multiclass ImmLoadHalfwordUpper
383 {
384   def v2i64: ILHUVecInst<v2i64, u16imm_i64, immILHUvec_i64>;
385   def v4i32: ILHUVecInst<v4i32, u16imm_i32, immILHUvec>;
386
387   def r64: ILHURegInst<R64C, u16imm_i64, hi16>;
388   def r32: ILHURegInst<R32C, u16imm_i32, hi16>;
389
390   // Loads the high portion of an address
391   def hi: ILHURegInst<R32C, symbolHi, hi16>;
392
393   // Used in custom lowering constant SFP loads:
394   def f32: ILHURegInst<R32FP, f16imm, hi16_f32>;
395 }
396
397 defm ILHU : ImmLoadHalfwordUpper;
398
399 // Immediate load address (can also be used to load 18-bit unsigned constants,
400 // see the zext 16->32 pattern)
401
402 class ILAInst<dag OOL, dag IOL, list<dag> pattern>:
403   RI18Form<0b1000010, OOL, IOL, "ila\t$rT, $val",
404            LoadNOP, pattern>;
405
406 class ILAVecInst<ValueType vectype, Operand immtype, PatLeaf xform>:
407   ILAInst<(outs VECREG:$rT), (ins immtype:$val),
408           [(set (vectype VECREG:$rT), (vectype xform:$val))]>;
409
410 class ILARegInst<RegisterClass rclass, Operand immtype, PatLeaf xform>:
411   ILAInst<(outs rclass:$rT), (ins immtype:$val),
412           [(set rclass:$rT, xform:$val)]>;
413
414 multiclass ImmLoadAddress
415 {
416   def v2i64: ILAVecInst<v2i64, u18imm, v2i64Uns18Imm>;
417   def v4i32: ILAVecInst<v4i32, u18imm, v4i32Uns18Imm>;
418
419   def r64: ILARegInst<R64C, u18imm_i64, imm18>;
420   def r32: ILARegInst<R32C, u18imm, imm18>;
421   def f32: ILARegInst<R32FP, f18imm, fpimm18>;
422   def f64: ILARegInst<R64FP, f18imm_f64, fpimm18>;
423
424   def lo: ILARegInst<R32C, symbolLo, imm18>;
425
426   def lsa: ILAInst<(outs R32C:$rT), (ins symbolLSA:$val),
427                    [/* no pattern */]>;
428 }
429
430 defm ILA : ImmLoadAddress;
431
432 // Immediate OR, Halfword Lower: The "other" part of loading large constants
433 // into 32-bit registers. See the anonymous pattern Pat<(i32 imm:$imm), ...>
434 // Note that these are really two operand instructions, but they're encoded
435 // as three operands with the first two arguments tied-to each other.
436
437 class IOHLInst<dag OOL, dag IOL, list<dag> pattern>:
438   RI16Form<0b100000110, OOL, IOL, "iohl\t$rT, $val",
439            ImmLoad, pattern>,
440   RegConstraint<"$rS = $rT">,
441   NoEncode<"$rS">;
442
443 class IOHLVecInst<ValueType vectype, Operand immtype /* , PatLeaf xform */>:
444   IOHLInst<(outs VECREG:$rT), (ins VECREG:$rS, immtype:$val),
445            [/* no pattern */]>;
446
447 class IOHLRegInst<RegisterClass rclass, Operand immtype /* , PatLeaf xform */>:
448   IOHLInst<(outs rclass:$rT), (ins rclass:$rS, immtype:$val),
449            [/* no pattern */]>;
450
451 multiclass ImmOrHalfwordLower
452 {
453   def v2i64: IOHLVecInst<v2i64, u16imm_i64>;
454   def v4i32: IOHLVecInst<v4i32, u16imm_i32>;
455
456   def r32: IOHLRegInst<R32C, i32imm>;
457   def f32: IOHLRegInst<R32FP, f32imm>;
458
459   def lo: IOHLRegInst<R32C, symbolLo>;
460 }
461
462 defm IOHL: ImmOrHalfwordLower;
463
464 // Form select mask for bytes using immediate, used in conjunction with the
465 // SELB instruction:
466
467 class FSMBIVec<ValueType vectype>:
468   RI16Form<0b101001100, (outs VECREG:$rT), (ins u16imm:$val),
469           "fsmbi\t$rT, $val",
470           SelectOp,
471           [(set (vectype VECREG:$rT), (SPUselmask (i16 immU16:$val)))]>;
472
473 multiclass FormSelectMaskBytesImm
474 {
475   def v16i8: FSMBIVec<v16i8>;
476   def v8i16: FSMBIVec<v8i16>;
477   def v4i32: FSMBIVec<v4i32>;
478   def v2i64: FSMBIVec<v2i64>;
479 }
480
481 defm FSMBI : FormSelectMaskBytesImm;
482
483 // fsmb: Form select mask for bytes. N.B. Input operand, $rA, is 16-bits
484 def FSMB:
485     RRForm_1<0b01101101100, (outs VECREG:$rT), (ins R16C:$rA),
486              "fsmb\t$rT, $rA", SelectOp,
487              [(set (v16i8 VECREG:$rT), (SPUselmask R16C:$rA))]>;
488
489 // fsmh: Form select mask for halfwords. N.B., Input operand, $rA, is
490 // only 8-bits wide (even though it's input as 16-bits here)
491 def FSMH:
492     RRForm_1<0b10101101100, (outs VECREG:$rT), (ins R16C:$rA),
493       "fsmh\t$rT, $rA", SelectOp,
494       [(set (v8i16 VECREG:$rT), (SPUselmask R16C:$rA))]>;
495
496 // fsm: Form select mask for words. Like the other fsm* instructions,
497 // only the lower 4 bits of $rA are significant.
498 class FSMInst<ValueType vectype, RegisterClass rclass>:
499     RRForm_1<0b00101101100, (outs VECREG:$rT), (ins rclass:$rA),
500       "fsm\t$rT, $rA",
501       SelectOp,
502       [(set (vectype VECREG:$rT), (SPUselmask rclass:$rA))]>;
503
504 multiclass FormSelectMaskWord {
505   def r32 : FSMInst<v4i32, R32C>;
506   def r16 : FSMInst<v4i32, R16C>;
507 }
508
509 defm FSM : FormSelectMaskWord;
510
511 // Special case when used for i64 math operations
512 multiclass FormSelectMaskWord64 {
513   def r32 : FSMInst<v2i64, R32C>;
514   def r16 : FSMInst<v2i64, R16C>;
515 }
516
517 defm FSM64 : FormSelectMaskWord64;
518
519 //===----------------------------------------------------------------------===//
520 // Integer and Logical Operations:
521 //===----------------------------------------------------------------------===//
522
523 def AHv8i16:
524   RRForm<0b00010011000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
525     "ah\t$rT, $rA, $rB", IntegerOp,
526     [(set (v8i16 VECREG:$rT), (int_spu_si_ah VECREG:$rA, VECREG:$rB))]>;
527
528 def : Pat<(add (v8i16 VECREG:$rA), (v8i16 VECREG:$rB)),
529           (AHv8i16 VECREG:$rA, VECREG:$rB)>;
530
531 def AHr16:
532   RRForm<0b00010011000, (outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
533     "ah\t$rT, $rA, $rB", IntegerOp,
534     [(set R16C:$rT, (add R16C:$rA, R16C:$rB))]>;
535
536 def AHIvec:
537     RI10Form<0b10111000, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
538       "ahi\t$rT, $rA, $val", IntegerOp,
539       [(set (v8i16 VECREG:$rT), (add (v8i16 VECREG:$rA),
540                                      v8i16SExt10Imm:$val))]>;
541
542 def AHIr16:
543   RI10Form<0b10111000, (outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
544     "ahi\t$rT, $rA, $val", IntegerOp,
545     [(set R16C:$rT, (add R16C:$rA, v8i16SExt10Imm:$val))]>;
546
547 def Avec:
548   RRForm<0b00000011000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
549     "a\t$rT, $rA, $rB", IntegerOp,
550     [(set (v4i32 VECREG:$rT), (add (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
551
552 def : Pat<(add (v16i8 VECREG:$rA), (v16i8 VECREG:$rB)),
553           (Avec VECREG:$rA, VECREG:$rB)>;
554
555 def Ar32:
556   RRForm<0b00000011000, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
557     "a\t$rT, $rA, $rB", IntegerOp,
558     [(set R32C:$rT, (add R32C:$rA, R32C:$rB))]>;
559
560 def Ar8:
561     RRForm<0b00000011000, (outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
562       "a\t$rT, $rA, $rB", IntegerOp,
563       [/* no pattern */]>;
564
565 def AIvec:
566     RI10Form<0b00111000, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
567       "ai\t$rT, $rA, $val", IntegerOp,
568       [(set (v4i32 VECREG:$rT), (add (v4i32 VECREG:$rA),
569                                       v4i32SExt10Imm:$val))]>;
570
571 def AIr32:
572     RI10Form<0b00111000, (outs R32C:$rT), (ins R32C:$rA, s10imm_i32:$val),
573       "ai\t$rT, $rA, $val", IntegerOp,
574       [(set R32C:$rT, (add R32C:$rA, i32ImmSExt10:$val))]>;
575
576 def SFHvec:
577     RRForm<0b00010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
578       "sfh\t$rT, $rA, $rB", IntegerOp,
579       [(set (v8i16 VECREG:$rT), (sub (v8i16 VECREG:$rA),
580                                      (v8i16 VECREG:$rB)))]>;
581
582 def SFHr16:
583     RRForm<0b00010010000, (outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
584       "sfh\t$rT, $rA, $rB", IntegerOp,
585       [(set R16C:$rT, (sub R16C:$rA, R16C:$rB))]>;
586
587 def SFHIvec:
588     RI10Form<0b10110000, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
589       "sfhi\t$rT, $rA, $val", IntegerOp,
590       [(set (v8i16 VECREG:$rT), (sub v8i16SExt10Imm:$val,
591                                      (v8i16 VECREG:$rA)))]>;
592
593 def SFHIr16 : RI10Form<0b10110000, (outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
594   "sfhi\t$rT, $rA, $val", IntegerOp,
595   [(set R16C:$rT, (sub i16ImmSExt10:$val, R16C:$rA))]>;
596
597 def SFvec : RRForm<0b00000010000, (outs VECREG:$rT),
598                                   (ins VECREG:$rA, VECREG:$rB),
599   "sf\t$rT, $rA, $rB", IntegerOp,
600   [(set (v4i32 VECREG:$rT), (sub (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
601
602 def SFr32 : RRForm<0b00000010000, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
603   "sf\t$rT, $rA, $rB", IntegerOp,
604   [(set R32C:$rT, (sub R32C:$rA, R32C:$rB))]>;
605
606 def SFIvec:
607     RI10Form<0b00110000, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
608       "sfi\t$rT, $rA, $val", IntegerOp,
609       [(set (v4i32 VECREG:$rT), (sub v4i32SExt10Imm:$val,
610                                      (v4i32 VECREG:$rA)))]>;
611
612 def SFIr32 : RI10Form<0b00110000, (outs R32C:$rT),
613                                   (ins R32C:$rA, s10imm_i32:$val),
614   "sfi\t$rT, $rA, $val", IntegerOp,
615   [(set R32C:$rT, (sub i32ImmSExt10:$val, R32C:$rA))]>;
616
617 // ADDX: only available in vector form, doesn't match a pattern.
618 class ADDXInst<dag OOL, dag IOL, list<dag> pattern>:
619     RRForm<0b00000010110, OOL, IOL,
620       "addx\t$rT, $rA, $rB",
621       IntegerOp, pattern>;
622
623 class ADDXVecInst<ValueType vectype>:
624     ADDXInst<(outs VECREG:$rT),
625              (ins VECREG:$rA, VECREG:$rB, VECREG:$rCarry),
626              [(set (vectype VECREG:$rT),
627                    (SPUaddx (vectype VECREG:$rA), (vectype VECREG:$rB),
628                             (vectype VECREG:$rCarry)))]>,
629     RegConstraint<"$rCarry = $rT">,
630     NoEncode<"$rCarry">;
631
632 class ADDXRegInst<RegisterClass rclass>:
633     ADDXInst<(outs rclass:$rT),
634              (ins rclass:$rA, rclass:$rB, rclass:$rCarry),
635              [(set rclass:$rT,
636                    (SPUaddx rclass:$rA, rclass:$rB, rclass:$rCarry))]>,
637     RegConstraint<"$rCarry = $rT">,
638     NoEncode<"$rCarry">;
639
640 multiclass AddExtended {
641   def v2i64 : ADDXVecInst<v2i64>;
642   def v4i32 : ADDXVecInst<v4i32>;
643   def r64 : ADDXRegInst<R64C>;
644   def r32 : ADDXRegInst<R32C>;
645 }
646
647 defm ADDX : AddExtended;
648
649 // CG: Generate carry for add
650 class CGInst<dag OOL, dag IOL, list<dag> pattern>:
651     RRForm<0b01000011000, OOL, IOL,
652       "cg\t$rT, $rA, $rB",
653       IntegerOp, pattern>;
654
655 class CGVecInst<ValueType vectype>:
656     CGInst<(outs VECREG:$rT),
657            (ins VECREG:$rA, VECREG:$rB),
658              [(set (vectype VECREG:$rT),
659                    (SPUcarry_gen (vectype VECREG:$rA), (vectype VECREG:$rB)))]>;
660
661 class CGRegInst<RegisterClass rclass>:
662     CGInst<(outs rclass:$rT),
663            (ins rclass:$rA, rclass:$rB),
664              [(set rclass:$rT,
665                    (SPUcarry_gen rclass:$rA, rclass:$rB))]>;
666
667 multiclass CarryGenerate {
668   def v2i64 : CGVecInst<v2i64>;
669   def v4i32 : CGVecInst<v4i32>;
670   def r64 : CGRegInst<R64C>;
671   def r32 : CGRegInst<R32C>;
672 }
673
674 defm CG : CarryGenerate;
675
676 // SFX: Subract from, extended. This is used in conjunction with BG to subtract
677 // with carry (borrow, in this case)
678 class SFXInst<dag OOL, dag IOL, list<dag> pattern>:
679     RRForm<0b10000010110, OOL, IOL,
680       "sfx\t$rT, $rA, $rB",
681       IntegerOp, pattern>;
682
683 class SFXVecInst<ValueType vectype>:
684     SFXInst<(outs VECREG:$rT),
685             (ins VECREG:$rA, VECREG:$rB, VECREG:$rCarry),
686              [(set (vectype VECREG:$rT),
687                    (SPUsubx (vectype VECREG:$rA), (vectype VECREG:$rB),
688                             (vectype VECREG:$rCarry)))]>,
689     RegConstraint<"$rCarry = $rT">,
690     NoEncode<"$rCarry">;
691
692 class SFXRegInst<RegisterClass rclass>:
693     SFXInst<(outs rclass:$rT),
694             (ins rclass:$rA, rclass:$rB, rclass:$rCarry),
695              [(set rclass:$rT,
696                    (SPUsubx rclass:$rA, rclass:$rB, rclass:$rCarry))]>,
697     RegConstraint<"$rCarry = $rT">,
698     NoEncode<"$rCarry">;
699
700 multiclass SubtractExtended {
701   def v2i64 : SFXVecInst<v2i64>;
702   def v4i32 : SFXVecInst<v4i32>;
703   def r64 : SFXRegInst<R64C>;
704   def r32 : SFXRegInst<R32C>;
705 }
706
707 defm SFX : SubtractExtended;
708
709 // BG: only available in vector form, doesn't match a pattern.
710 class BGInst<dag OOL, dag IOL, list<dag> pattern>:
711     RRForm<0b01000010000, OOL, IOL,
712       "bg\t$rT, $rA, $rB",
713       IntegerOp, pattern>;
714
715 class BGVecInst<ValueType vectype>:
716     BGInst<(outs VECREG:$rT),
717            (ins VECREG:$rA, VECREG:$rB),
718            [(set (vectype VECREG:$rT),
719                  (SPUborrow_gen (vectype VECREG:$rA), (vectype VECREG:$rB)))]>;
720
721 class BGRegInst<RegisterClass rclass>:
722     BGInst<(outs rclass:$rT),
723            (ins rclass:$rA, rclass:$rB),
724            [(set rclass:$rT,
725                  (SPUborrow_gen rclass:$rA, rclass:$rB))]>;
726
727 multiclass BorrowGenerate {
728   def v4i32 : BGVecInst<v4i32>;
729   def v2i64 : BGVecInst<v2i64>;
730   def r64 : BGRegInst<R64C>;
731   def r32 : BGRegInst<R32C>;
732 }
733
734 defm BG : BorrowGenerate;
735
736 // BGX: Borrow generate, extended.
737 def BGXvec:
738     RRForm<0b11000010110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB,
739                                VECREG:$rCarry),
740       "bgx\t$rT, $rA, $rB", IntegerOp,
741       []>,
742     RegConstraint<"$rCarry = $rT">,
743     NoEncode<"$rCarry">;
744
745 // Halfword multiply variants:
746 // N.B: These can be used to build up larger quantities (16x16 -> 32)
747
748 def MPYv8i16:
749   RRForm<0b00100011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
750     "mpy\t$rT, $rA, $rB", IntegerMulDiv,
751     [(set (v8i16 VECREG:$rT), (SPUmpy_v8i16 (v8i16 VECREG:$rA),
752                                             (v8i16 VECREG:$rB)))]>;
753
754 def MPYr16:
755   RRForm<0b00100011110, (outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
756     "mpy\t$rT, $rA, $rB", IntegerMulDiv,
757     [(set R16C:$rT, (mul R16C:$rA, R16C:$rB))]>;
758
759 def MPYUv4i32:
760   RRForm<0b00110011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
761     "mpyu\t$rT, $rA, $rB", IntegerMulDiv,
762     [(set (v4i32 VECREG:$rT),
763           (SPUmpyu_v4i32 (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
764
765 def MPYUr16:
766   RRForm<0b00110011110, (outs R32C:$rT), (ins R16C:$rA, R16C:$rB),
767     "mpyu\t$rT, $rA, $rB", IntegerMulDiv,
768     [(set R32C:$rT, (mul (zext R16C:$rA),
769                          (zext R16C:$rB)))]>;
770
771 def MPYUr32:
772   RRForm<0b00110011110, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
773     "mpyu\t$rT, $rA, $rB", IntegerMulDiv,
774     [(set R32C:$rT, (SPUmpyu_i32 R32C:$rA, R32C:$rB))]>;
775
776 // mpyi: multiply 16 x s10imm -> 32 result (custom lowering for 32 bit result,
777 // this only produces the lower 16 bits)
778 def MPYIvec:
779   RI10Form<0b00101110, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
780     "mpyi\t$rT, $rA, $val", IntegerMulDiv,
781     [(set (v8i16 VECREG:$rT), (mul (v8i16 VECREG:$rA), v8i16SExt10Imm:$val))]>;
782
783 def MPYIr16:
784   RI10Form<0b00101110, (outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
785     "mpyi\t$rT, $rA, $val", IntegerMulDiv,
786     [(set R16C:$rT, (mul R16C:$rA, i16ImmSExt10:$val))]>;
787
788 // mpyui: same issues as other multiplies, plus, this doesn't match a
789 // pattern... but may be used during target DAG selection or lowering
790 def MPYUIvec:
791   RI10Form<0b10101110, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
792     "mpyui\t$rT, $rA, $val", IntegerMulDiv,
793     []>;
794
795 def MPYUIr16:
796   RI10Form<0b10101110, (outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
797     "mpyui\t$rT, $rA, $val", IntegerMulDiv,
798     []>;
799
800 // mpya: 16 x 16 + 16 -> 32 bit result
801 def MPYAvec:
802   RRRForm<0b0011, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
803     "mpya\t$rT, $rA, $rB, $rC", IntegerMulDiv,
804     [(set (v4i32 VECREG:$rT), (add (v4i32 (bitconvert (mul (v8i16 VECREG:$rA),
805                                                            (v8i16 VECREG:$rB)))),
806                                    (v4i32 VECREG:$rC)))]>;
807
808 def MPYAr32:
809   RRRForm<0b0011, (outs R32C:$rT), (ins R16C:$rA, R16C:$rB, R32C:$rC),
810     "mpya\t$rT, $rA, $rB, $rC", IntegerMulDiv,
811     [(set R32C:$rT, (add (sext (mul R16C:$rA, R16C:$rB)),
812                          R32C:$rC))]>;
813
814 def : Pat<(add (mul (sext R16C:$rA), (sext R16C:$rB)), R32C:$rC),
815           (MPYAr32 R16C:$rA, R16C:$rB, R32C:$rC)>;
816
817 def MPYAr32_sextinreg:
818   RRRForm<0b0011, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB, R32C:$rC),
819     "mpya\t$rT, $rA, $rB, $rC", IntegerMulDiv,
820     [(set R32C:$rT, (add (mul (sext_inreg R32C:$rA, i16),
821                               (sext_inreg R32C:$rB, i16)),
822                          R32C:$rC))]>;
823
824 //def MPYAr32:
825 //  RRRForm<0b0011, (outs R32C:$rT), (ins R16C:$rA, R16C:$rB, R32C:$rC),
826 //    "mpya\t$rT, $rA, $rB, $rC", IntegerMulDiv,
827 //    [(set R32C:$rT, (add (sext (mul R16C:$rA, R16C:$rB)),
828 //                         R32C:$rC))]>;
829
830 // mpyh: multiply high, used to synthesize 32-bit multiplies
831 def MPYHv4i32:
832     RRForm<0b10100011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
833       "mpyh\t$rT, $rA, $rB", IntegerMulDiv,
834       [(set (v4i32 VECREG:$rT),
835             (SPUmpyh_v4i32 (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
836
837 def MPYHr32:
838     RRForm<0b10100011110, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
839       "mpyh\t$rT, $rA, $rB", IntegerMulDiv,
840       [(set R32C:$rT, (SPUmpyh_i32 R32C:$rA, R32C:$rB))]>;
841
842 // mpys: multiply high and shift right (returns the top half of
843 // a 16-bit multiply, sign extended to 32 bits.)
844 def MPYSvec:
845     RRForm<0b11100011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
846       "mpys\t$rT, $rA, $rB", IntegerMulDiv,
847       []>;
848
849 def MPYSr16:
850     RRForm<0b11100011110, (outs R32C:$rT), (ins R16C:$rA, R16C:$rB),
851       "mpys\t$rT, $rA, $rB", IntegerMulDiv,
852       []>;
853
854 // mpyhh: multiply high-high (returns the 32-bit result from multiplying
855 // the top 16 bits of the $rA, $rB)
856 def MPYHHv8i16:
857     RRForm<0b01100011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
858       "mpyhh\t$rT, $rA, $rB", IntegerMulDiv,
859       [(set (v8i16 VECREG:$rT),
860             (SPUmpyhh_v8i16 (v8i16 VECREG:$rA), (v8i16 VECREG:$rB)))]>;
861
862 def MPYHHr32:
863     RRForm<0b01100011110, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
864       "mpyhh\t$rT, $rA, $rB", IntegerMulDiv,
865       []>;
866
867 // mpyhha: Multiply high-high, add to $rT:
868 def MPYHHAvec:
869     RRForm<0b01100010110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
870       "mpyhha\t$rT, $rA, $rB", IntegerMulDiv,
871       []>;
872
873 def MPYHHAr32:
874     RRForm<0b01100010110, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
875       "mpyhha\t$rT, $rA, $rB", IntegerMulDiv,
876       []>;
877
878 // mpyhhu: Multiply high-high, unsigned
879 def MPYHHUvec:
880     RRForm<0b01110011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
881       "mpyhhu\t$rT, $rA, $rB", IntegerMulDiv,
882       []>;
883
884 def MPYHHUr32:
885     RRForm<0b01110011110, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
886       "mpyhhu\t$rT, $rA, $rB", IntegerMulDiv,
887       []>;
888
889 // mpyhhau: Multiply high-high, unsigned
890 def MPYHHAUvec:
891     RRForm<0b01110010110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
892       "mpyhhau\t$rT, $rA, $rB", IntegerMulDiv,
893       []>;
894
895 def MPYHHAUr32:
896     RRForm<0b01110010110, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
897       "mpyhhau\t$rT, $rA, $rB", IntegerMulDiv,
898       []>;
899
900 // clz: Count leading zeroes
901 def CLZv4i32:
902     RRForm_1<0b10100101010, (outs VECREG:$rT), (ins VECREG:$rA),
903       "clz\t$rT, $rA", IntegerOp,
904       [/* intrinsic */]>;
905
906 def CLZr32:
907     RRForm_1<0b10100101010, (outs R32C:$rT), (ins R32C:$rA),
908       "clz\t$rT, $rA", IntegerOp,
909       [(set R32C:$rT, (ctlz R32C:$rA))]>;
910
911 // cntb: Count ones in bytes (aka "population count")
912 // NOTE: This instruction is really a vector instruction, but the custom
913 // lowering code uses it in unorthodox ways to support CTPOP for other
914 // data types!
915 def CNTBv16i8:
916     RRForm_1<0b00101101010, (outs VECREG:$rT), (ins VECREG:$rA),
917       "cntb\t$rT, $rA", IntegerOp,
918       [(set (v16i8 VECREG:$rT), (SPUcntb (v16i8 VECREG:$rA)))]>;
919
920 def CNTBv8i16 :
921     RRForm_1<0b00101101010, (outs VECREG:$rT), (ins VECREG:$rA),
922       "cntb\t$rT, $rA", IntegerOp,
923       [(set (v8i16 VECREG:$rT), (SPUcntb (v8i16 VECREG:$rA)))]>;
924
925 def CNTBv4i32 :
926     RRForm_1<0b00101101010, (outs VECREG:$rT), (ins VECREG:$rA),
927       "cntb\t$rT, $rA", IntegerOp,
928       [(set (v4i32 VECREG:$rT), (SPUcntb (v4i32 VECREG:$rA)))]>;
929
930 // gbb: Gather all low order bits from each byte in $rA into a single 16-bit
931 // quantity stored into $rT
932 def GBB:
933     RRForm_1<0b01001101100, (outs R16C:$rT), (ins VECREG:$rA),
934       "gbb\t$rT, $rA", GatherOp,
935       []>;
936
937 // gbh: Gather all low order bits from each halfword in $rA into a single
938 // 8-bit quantity stored in $rT
939 def GBH:
940     RRForm_1<0b10001101100, (outs R16C:$rT), (ins VECREG:$rA),
941       "gbh\t$rT, $rA", GatherOp,
942       []>;
943
944 // gb: Gather all low order bits from each word in $rA into a single
945 // 4-bit quantity stored in $rT
946 def GB:
947     RRForm_1<0b00001101100, (outs R16C:$rT), (ins VECREG:$rA),
948       "gb\t$rT, $rA", GatherOp,
949       []>;
950
951 // avgb: average bytes
952 def AVGB:
953     RRForm<0b11001011000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
954       "avgb\t$rT, $rA, $rB", ByteOp,
955       []>;
956
957 // absdb: absolute difference of bytes
958 def ABSDB:
959     RRForm<0b11001010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
960       "absdb\t$rT, $rA, $rB", ByteOp,
961       []>;
962
963 // sumb: sum bytes into halfwords
964 def SUMB:
965     RRForm<0b11001010010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
966       "sumb\t$rT, $rA, $rB", ByteOp,
967       []>;
968
969 // Sign extension operations:
970 class XSBHInst<dag OOL, dag IOL, list<dag> pattern>:
971     RRForm_1<0b01101101010, OOL, IOL,
972       "xsbh\t$rDst, $rSrc",
973       IntegerOp, pattern>;
974
975 class XSBHVecInst<ValueType vectype>:
976     XSBHInst<(outs VECREG:$rDst), (ins VECREG:$rSrc),
977       [(set (v8i16 VECREG:$rDst), (sext (vectype VECREG:$rSrc)))]>;
978
979 class XSBHRegInst<RegisterClass rclass>:
980     XSBHInst<(outs rclass:$rDst), (ins rclass:$rSrc),
981       [(set rclass:$rDst, (sext_inreg rclass:$rSrc, i8))]>;
982
983 multiclass ExtendByteHalfword {
984   def v16i8: XSBHVecInst<v8i16>;
985   def r16: XSBHRegInst<R16C>;
986
987   // 32-bit form for XSBH: used to sign extend 8-bit quantities to 16-bit
988   // quantities to 32-bit quantities via a 32-bit register (see the sext 8->32
989   // pattern below). Intentionally doesn't match a pattern because we want the
990   // sext 8->32 pattern to do the work for us, namely because we need the extra
991   // XSHWr32.
992   def r32: XSBHRegInst<R32C>;
993 }
994
995 defm XSBH : ExtendByteHalfword;
996
997 // Sign-extend, but take an 8-bit register to a 16-bit register (not done as
998 // sext_inreg)
999 def XSBHr8:
1000     XSBHInst<(outs R16C:$rDst), (ins R8C:$rSrc),
1001              [(set R16C:$rDst, (sext R8C:$rSrc))]>;
1002
1003 // Sign extend halfwords to words:
1004 def XSHWvec:
1005     RRForm_1<0b01101101010, (outs VECREG:$rDest), (ins VECREG:$rSrc),
1006       "xshw\t$rDest, $rSrc", IntegerOp,
1007       [(set (v4i32 VECREG:$rDest), (sext (v8i16 VECREG:$rSrc)))]>;
1008
1009 def XSHWr32:
1010     RRForm_1<0b01101101010, (outs R32C:$rDst), (ins R32C:$rSrc),
1011       "xshw\t$rDst, $rSrc", IntegerOp,
1012       [(set R32C:$rDst, (sext_inreg R32C:$rSrc, i16))]>;
1013
1014 def XSHWr16:
1015     RRForm_1<0b01101101010, (outs R32C:$rDst), (ins R16C:$rSrc),
1016       "xshw\t$rDst, $rSrc", IntegerOp,
1017       [(set R32C:$rDst, (sext R16C:$rSrc))]>;
1018
1019 def XSWDvec:
1020     RRForm_1<0b01100101010, (outs VECREG:$rDst), (ins VECREG:$rSrc),
1021       "xswd\t$rDst, $rSrc", IntegerOp,
1022       [(set (v2i64 VECREG:$rDst), (sext (v4i32 VECREG:$rSrc)))]>;
1023
1024 def XSWDr64:
1025     RRForm_1<0b01100101010, (outs R64C:$rDst), (ins R64C:$rSrc),
1026       "xswd\t$rDst, $rSrc", IntegerOp,
1027       [(set R64C:$rDst, (sext_inreg R64C:$rSrc, i32))]>;
1028
1029 def XSWDr32:
1030     RRForm_1<0b01100101010, (outs R64C:$rDst), (ins R32C:$rSrc),
1031       "xswd\t$rDst, $rSrc", IntegerOp,
1032       [(set R64C:$rDst, (SPUsext32_to_64 R32C:$rSrc))]>;
1033
1034 def : Pat<(sext R32C:$inp),
1035           (XSWDr32 R32C:$inp)>;
1036
1037 // AND operations
1038
1039 class ANDInst<dag OOL, dag IOL, list<dag> pattern> :
1040     RRForm<0b10000011000, OOL, IOL, "and\t$rT, $rA, $rB",
1041            IntegerOp, pattern>;
1042
1043 class ANDVecInst<ValueType vectype>:
1044     ANDInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1045              [(set (vectype VECREG:$rT), (and (vectype VECREG:$rA),
1046                                               (vectype VECREG:$rB)))]>;
1047
1048 class ANDRegInst<RegisterClass rclass>:
1049     ANDInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1050              [(set rclass:$rT, (and rclass:$rA, rclass:$rB))]>;
1051
1052 multiclass BitwiseAnd
1053 {
1054   def v16i8: ANDVecInst<v16i8>;
1055   def v8i16: ANDVecInst<v8i16>;
1056   def v4i32: ANDVecInst<v4i32>;
1057   def v2i64: ANDVecInst<v2i64>;
1058
1059   def r128:  ANDRegInst<GPRC>;
1060   def r64:   ANDRegInst<R64C>;
1061   def r32:   ANDRegInst<R32C>;
1062   def r16:   ANDRegInst<R16C>;
1063   def r8:    ANDRegInst<R8C>;
1064
1065   //===---------------------------------------------
1066   // Special instructions to perform the fabs instruction
1067   def fabs32: ANDInst<(outs R32FP:$rT), (ins R32FP:$rA, R32C:$rB),
1068                       [/* Intentionally does not match a pattern */]>;
1069
1070   def fabs64: ANDInst<(outs R64FP:$rT), (ins R64FP:$rA, VECREG:$rB),
1071                       [/* Intentionally does not match a pattern */]>;
1072
1073   // Could use v4i32, but won't for clarity
1074   def fabsvec: ANDInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1075                        [/* Intentionally does not match a pattern */]>;
1076
1077   //===---------------------------------------------
1078
1079   // Hacked form of AND to zero-extend 16-bit quantities to 32-bit
1080   // quantities -- see 16->32 zext pattern.
1081   //
1082   // This pattern is somewhat artificial, since it might match some
1083   // compiler generated pattern but it is unlikely to do so.
1084
1085   def i16i32: ANDInst<(outs R32C:$rT), (ins R16C:$rA, R32C:$rB),
1086                       [(set R32C:$rT, (and (zext R16C:$rA), R32C:$rB))]>;
1087 }
1088
1089 defm AND : BitwiseAnd;
1090
1091 // N.B.: vnot_conv is one of those special target selection pattern fragments,
1092 // in which we expect there to be a bit_convert on the constant. Bear in mind
1093 // that llvm translates "not <reg>" to "xor <reg>, -1" (or in this case, a
1094 // constant -1 vector.)
1095
1096 class ANDCInst<dag OOL, dag IOL, list<dag> pattern>:
1097     RRForm<0b10000011010, OOL, IOL, "andc\t$rT, $rA, $rB",
1098            IntegerOp, pattern>;
1099
1100 class ANDCVecInst<ValueType vectype>:
1101     ANDCInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1102              [(set (vectype VECREG:$rT), (and (vectype VECREG:$rA),
1103                                               (vnot (vectype VECREG:$rB))))]>;
1104
1105 class ANDCRegInst<RegisterClass rclass>:
1106     ANDCInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1107              [(set rclass:$rT, (and rclass:$rA, (not rclass:$rB)))]>;
1108
1109 multiclass AndComplement
1110 {
1111   def v16i8: ANDCVecInst<v16i8>;
1112   def v8i16: ANDCVecInst<v8i16>;
1113   def v4i32: ANDCVecInst<v4i32>;
1114   def v2i64: ANDCVecInst<v2i64>;
1115
1116   def r128: ANDCRegInst<GPRC>;
1117   def r64:  ANDCRegInst<R64C>;
1118   def r32:  ANDCRegInst<R32C>;
1119   def r16:  ANDCRegInst<R16C>;
1120   def r8:   ANDCRegInst<R8C>;
1121 }
1122
1123 defm ANDC : AndComplement;
1124
1125 class ANDBIInst<dag OOL, dag IOL, list<dag> pattern>:
1126     RI10Form<0b01101000, OOL, IOL, "andbi\t$rT, $rA, $val",
1127              IntegerOp, pattern>;
1128
1129 multiclass AndByteImm
1130 {
1131   def v16i8: ANDBIInst<(outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
1132                        [(set (v16i8 VECREG:$rT),
1133                              (and (v16i8 VECREG:$rA),
1134                                   (v16i8 v16i8U8Imm:$val)))]>;
1135
1136   def r8: ANDBIInst<(outs R8C:$rT), (ins R8C:$rA, u10imm_i8:$val),
1137                     [(set R8C:$rT, (and R8C:$rA, immU8:$val))]>;
1138 }
1139
1140 defm ANDBI : AndByteImm;
1141
1142 class ANDHIInst<dag OOL, dag IOL, list<dag> pattern> :
1143     RI10Form<0b10101000, OOL, IOL, "andhi\t$rT, $rA, $val",
1144              IntegerOp, pattern>;
1145
1146 multiclass AndHalfwordImm
1147 {
1148   def v8i16: ANDHIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
1149                        [(set (v8i16 VECREG:$rT),
1150                              (and (v8i16 VECREG:$rA), v8i16SExt10Imm:$val))]>;
1151
1152   def r16: ANDHIInst<(outs R16C:$rT), (ins R16C:$rA, u10imm:$val),
1153                      [(set R16C:$rT, (and R16C:$rA, i16ImmUns10:$val))]>;
1154
1155   // Zero-extend i8 to i16:
1156   def i8i16: ANDHIInst<(outs R16C:$rT), (ins R8C:$rA, u10imm:$val),
1157                       [(set R16C:$rT, (and (zext R8C:$rA), i16ImmUns10:$val))]>;
1158 }
1159
1160 defm ANDHI : AndHalfwordImm;
1161
1162 class ANDIInst<dag OOL, dag IOL, list<dag> pattern> :
1163     RI10Form<0b00101000, OOL, IOL, "andi\t$rT, $rA, $val",
1164              IntegerOp, pattern>;
1165
1166 multiclass AndWordImm
1167 {
1168   def v4i32: ANDIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
1169                       [(set (v4i32 VECREG:$rT),
1170                             (and (v4i32 VECREG:$rA), v4i32SExt10Imm:$val))]>;
1171
1172   def r32: ANDIInst<(outs R32C:$rT), (ins R32C:$rA, s10imm_i32:$val),
1173                     [(set R32C:$rT, (and R32C:$rA, i32ImmSExt10:$val))]>;
1174
1175   // Hacked form of ANDI to zero-extend i8 quantities to i32. See the zext 8->32
1176   // pattern below.
1177   def i8i32: ANDIInst<(outs R32C:$rT), (ins R8C:$rA, s10imm_i32:$val),
1178                       [(set R32C:$rT,
1179                             (and (zext R8C:$rA), i32ImmSExt10:$val))]>;
1180
1181   // Hacked form of ANDI to zero-extend i16 quantities to i32. See the
1182   // zext 16->32 pattern below.
1183   //
1184   // Note that this pattern is somewhat artificial, since it might match
1185   // something the compiler generates but is unlikely to occur in practice.
1186   def i16i32: ANDIInst<(outs R32C:$rT), (ins R16C:$rA, s10imm_i32:$val),
1187                        [(set R32C:$rT,
1188                              (and (zext R16C:$rA), i32ImmSExt10:$val))]>;
1189 }
1190
1191 defm ANDI : AndWordImm;
1192
1193 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1194 // Bitwise OR group:
1195 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1196
1197 // Bitwise "or" (N.B.: These are also register-register copy instructions...)
1198 class ORInst<dag OOL, dag IOL, list<dag> pattern>:
1199     RRForm<0b10000010000, OOL, IOL, "or\t$rT, $rA, $rB",
1200            IntegerOp, pattern>;
1201
1202 class ORVecInst<ValueType vectype>:
1203     ORInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1204            [(set (vectype VECREG:$rT), (or (vectype VECREG:$rA),
1205                                            (vectype VECREG:$rB)))]>;
1206
1207 class ORRegInst<RegisterClass rclass>:
1208     ORInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1209            [(set rclass:$rT, (or rclass:$rA, rclass:$rB))]>;
1210
1211 class ORPromoteScalar<RegisterClass rclass>:
1212     ORInst<(outs VECREG:$rT), (ins rclass:$rA, rclass:$rB),
1213            [/* no pattern */]>;
1214
1215 class ORExtractElt<RegisterClass rclass>:
1216     ORInst<(outs rclass:$rT), (ins VECREG:$rA, VECREG:$rB),
1217            [/* no pattern */]>;
1218
1219 multiclass BitwiseOr
1220 {
1221   def v16i8: ORVecInst<v16i8>;
1222   def v8i16: ORVecInst<v8i16>;
1223   def v4i32: ORVecInst<v4i32>;
1224   def v2i64: ORVecInst<v2i64>;
1225
1226   def v4f32: ORInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1227                     [(set (v4f32 VECREG:$rT),
1228                           (v4f32 (bitconvert (or (v4i32 VECREG:$rA),
1229                                                  (v4i32 VECREG:$rB)))))]>;
1230
1231   def v2f64: ORInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1232                     [(set (v2f64 VECREG:$rT), 
1233                           (v2f64 (bitconvert (or (v2i64 VECREG:$rA),
1234                                                  (v2i64 VECREG:$rB)))))]>;
1235
1236   def r64: ORRegInst<R64C>;
1237   def r32: ORRegInst<R32C>;
1238   def r16: ORRegInst<R16C>;
1239   def r8:  ORRegInst<R8C>;
1240
1241   // OR instructions used to copy f32 and f64 registers.
1242   def f32: ORInst<(outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
1243                   [/* no pattern */]>;
1244
1245   def f64: ORInst<(outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
1246                   [/* no pattern */]>;
1247
1248   // scalar->vector promotion:
1249   def v16i8_i8:  ORPromoteScalar<R8C>;
1250   def v8i16_i16: ORPromoteScalar<R16C>;
1251   def v4i32_i32: ORPromoteScalar<R32C>;
1252   def v2i64_i64: ORPromoteScalar<R64C>;
1253   def v4f32_f32: ORPromoteScalar<R32FP>;
1254   def v2f64_f64: ORPromoteScalar<R64FP>;
1255
1256   // extract element 0:
1257   def i8_v16i8:  ORExtractElt<R8C>;
1258   def i16_v8i16: ORExtractElt<R16C>;
1259   def i32_v4i32: ORExtractElt<R32C>;
1260   def i64_v2i64: ORExtractElt<R64C>;
1261   def f32_v4f32: ORExtractElt<R32FP>;
1262   def f64_v2f64: ORExtractElt<R64FP>;
1263 }
1264
1265 defm OR : BitwiseOr;
1266
1267 // scalar->vector promotion patterns:
1268 def : Pat<(v16i8 (SPUpromote_scalar R8C:$rA)),
1269           (ORv16i8_i8 R8C:$rA, R8C:$rA)>;
1270
1271 def : Pat<(v8i16 (SPUpromote_scalar R16C:$rA)),
1272           (ORv8i16_i16 R16C:$rA, R16C:$rA)>;
1273
1274 def : Pat<(v4i32 (SPUpromote_scalar R32C:$rA)),
1275           (ORv4i32_i32 R32C:$rA, R32C:$rA)>;
1276
1277 def : Pat<(v2i64 (SPUpromote_scalar R64C:$rA)),
1278           (ORv2i64_i64 R64C:$rA, R64C:$rA)>;
1279
1280 def : Pat<(v4f32 (SPUpromote_scalar R32FP:$rA)),
1281           (ORv4f32_f32 R32FP:$rA, R32FP:$rA)>;
1282
1283 def : Pat<(v2f64 (SPUpromote_scalar R64FP:$rA)),
1284           (ORv2f64_f64 R64FP:$rA, R64FP:$rA)>;
1285
1286 // ORi*_v*: Used to extract vector element 0 (the preferred slot)
1287
1288 def : Pat<(SPUvec2prefslot (v16i8 VECREG:$rA)),
1289           (ORi8_v16i8 VECREG:$rA, VECREG:$rA)>;
1290
1291 def : Pat<(SPUvec2prefslot (v8i16 VECREG:$rA)),
1292           (ORi16_v8i16 VECREG:$rA, VECREG:$rA)>;
1293
1294 def : Pat<(SPUvec2prefslot (v4i32 VECREG:$rA)),
1295           (ORi32_v4i32 VECREG:$rA, VECREG:$rA)>;
1296
1297 def : Pat<(SPUvec2prefslot (v2i64 VECREG:$rA)),
1298           (ORi64_v2i64 VECREG:$rA, VECREG:$rA)>;
1299
1300 def : Pat<(SPUvec2prefslot (v4f32 VECREG:$rA)),
1301           (ORf32_v4f32 VECREG:$rA, VECREG:$rA)>;
1302
1303 def : Pat<(SPUvec2prefslot (v2f64 VECREG:$rA)),
1304           (ORf64_v2f64 VECREG:$rA, VECREG:$rA)>;
1305
1306 // ORC: Bitwise "or" with complement (c = a | ~b)
1307
1308 class ORCInst<dag OOL, dag IOL, list<dag> pattern>:
1309     RRForm<0b10010010000, OOL, IOL, "orc\t$rT, $rA, $rB",
1310            IntegerOp, pattern>;
1311
1312 class ORCVecInst<ValueType vectype>:
1313     ORCInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1314             [(set (vectype VECREG:$rT), (or (vectype VECREG:$rA),
1315                                             (vnot (vectype VECREG:$rB))))]>;
1316
1317 class ORCRegInst<RegisterClass rclass>:
1318   ORCInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1319           [(set rclass:$rT, (or rclass:$rA, (not rclass:$rB)))]>;
1320
1321 multiclass BitwiseOrComplement
1322 {
1323   def v16i8: ORCVecInst<v16i8>;
1324   def v8i16: ORCVecInst<v8i16>;
1325   def v4i32: ORCVecInst<v4i32>;
1326   def v2i64: ORCVecInst<v2i64>;
1327
1328   def r64:   ORCRegInst<R64C>;
1329   def r32:   ORCRegInst<R32C>;
1330   def r16:   ORCRegInst<R16C>;
1331   def r8:    ORCRegInst<R8C>;
1332 }
1333
1334 defm ORC : BitwiseOrComplement;
1335
1336 // OR byte immediate
1337 class ORBIInst<dag OOL, dag IOL, list<dag> pattern>:
1338     RI10Form<0b01100000, OOL, IOL, "orbi\t$rT, $rA, $val",
1339              IntegerOp, pattern>;
1340
1341 class ORBIVecInst<ValueType vectype, PatLeaf immpred>:
1342     ORBIInst<(outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
1343              [(set (v16i8 VECREG:$rT), (or (vectype VECREG:$rA),
1344                                            (vectype immpred:$val)))]>;
1345
1346 multiclass BitwiseOrByteImm
1347 {
1348   def v16i8: ORBIVecInst<v16i8, v16i8U8Imm>;
1349
1350   def r8: ORBIInst<(outs R8C:$rT), (ins R8C:$rA, u10imm_i8:$val),
1351                    [(set R8C:$rT, (or R8C:$rA, immU8:$val))]>;
1352 }
1353
1354 defm ORBI : BitwiseOrByteImm;
1355
1356 // OR halfword immediate
1357 class ORHIInst<dag OOL, dag IOL, list<dag> pattern>:
1358     RI10Form<0b10100000, OOL, IOL, "orhi\t$rT, $rA, $val",
1359              IntegerOp, pattern>;
1360
1361 class ORHIVecInst<ValueType vectype, PatLeaf immpred>:
1362     ORHIInst<(outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
1363               [(set (vectype VECREG:$rT), (or (vectype VECREG:$rA),
1364                                               immpred:$val))]>;
1365
1366 multiclass BitwiseOrHalfwordImm
1367 {
1368   def v8i16: ORHIVecInst<v8i16, v8i16Uns10Imm>;
1369
1370   def r16: ORHIInst<(outs R16C:$rT), (ins R16C:$rA, u10imm:$val),
1371                     [(set R16C:$rT, (or R16C:$rA, i16ImmUns10:$val))]>;
1372
1373   // Specialized ORHI form used to promote 8-bit registers to 16-bit
1374   def i8i16: ORHIInst<(outs R16C:$rT), (ins R8C:$rA, s10imm:$val),
1375                       [(set R16C:$rT, (or (anyext R8C:$rA),
1376                                           i16ImmSExt10:$val))]>;
1377 }
1378
1379 defm ORHI : BitwiseOrHalfwordImm;
1380
1381 class ORIInst<dag OOL, dag IOL, list<dag> pattern>:
1382     RI10Form<0b00100000, OOL, IOL, "ori\t$rT, $rA, $val",
1383              IntegerOp, pattern>;
1384
1385 class ORIVecInst<ValueType vectype, PatLeaf immpred>:
1386     ORIInst<(outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
1387             [(set (vectype VECREG:$rT), (or (vectype VECREG:$rA),
1388                                             immpred:$val))]>;
1389
1390 // Bitwise "or" with immediate
1391 multiclass BitwiseOrImm
1392 {
1393   def v4i32: ORIVecInst<v4i32, v4i32Uns10Imm>;
1394
1395   def r32: ORIInst<(outs R32C:$rT), (ins R32C:$rA, u10imm_i32:$val),
1396                    [(set R32C:$rT, (or R32C:$rA, i32ImmUns10:$val))]>;
1397
1398   // i16i32: hacked version of the ori instruction to extend 16-bit quantities
1399   // to 32-bit quantities. used exclusively to match "anyext" conversions (vide
1400   // infra "anyext 16->32" pattern.)
1401   def i16i32: ORIInst<(outs R32C:$rT), (ins R16C:$rA, s10imm_i32:$val),
1402                       [(set R32C:$rT, (or (anyext R16C:$rA),
1403                                           i32ImmSExt10:$val))]>;
1404
1405   // i8i32: Hacked version of the ORI instruction to extend 16-bit quantities
1406   // to 32-bit quantities. Used exclusively to match "anyext" conversions (vide
1407   // infra "anyext 16->32" pattern.)
1408   def i8i32: ORIInst<(outs R32C:$rT), (ins R8C:$rA, s10imm_i32:$val),
1409                      [(set R32C:$rT, (or (anyext R8C:$rA),
1410                                          i32ImmSExt10:$val))]>;
1411 }
1412
1413 defm ORI : BitwiseOrImm;
1414
1415 // ORX: "or" across the vector: or's $rA's word slots leaving the result in
1416 // $rT[0], slots 1-3 are zeroed.
1417 //
1418 // FIXME: Needs to match an intrinsic pattern.
1419 def ORXv4i32:
1420     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1421       "orx\t$rT, $rA, $rB", IntegerOp,
1422       []>;
1423
1424 // XOR:
1425
1426 class XORInst<dag OOL, dag IOL, list<dag> pattern> :
1427     RRForm<0b10010010000, OOL, IOL, "xor\t$rT, $rA, $rB",
1428            IntegerOp, pattern>;
1429
1430 class XORVecInst<ValueType vectype>:
1431     XORInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1432              [(set (vectype VECREG:$rT), (xor (vectype VECREG:$rA),
1433                                               (vectype VECREG:$rB)))]>;
1434
1435 class XORRegInst<RegisterClass rclass>:
1436     XORInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1437              [(set rclass:$rT, (xor rclass:$rA, rclass:$rB))]>;
1438
1439 multiclass BitwiseExclusiveOr
1440 {
1441   def v16i8: XORVecInst<v16i8>;
1442   def v8i16: XORVecInst<v8i16>;
1443   def v4i32: XORVecInst<v4i32>;
1444   def v2i64: XORVecInst<v2i64>;
1445
1446   def r128:  XORRegInst<GPRC>;
1447   def r64:   XORRegInst<R64C>;
1448   def r32:   XORRegInst<R32C>;
1449   def r16:   XORRegInst<R16C>;
1450   def r8:    XORRegInst<R8C>;
1451
1452   // Special forms for floating point instructions.
1453   // fneg and fabs require bitwise logical ops to manipulate the sign bit.
1454
1455   def fneg32: XORInst<(outs R32FP:$rT), (ins R32FP:$rA, R32C:$rB),
1456                       [/* no pattern */]>;
1457
1458   def fneg64: XORInst<(outs R64FP:$rT), (ins R64FP:$rA, VECREG:$rB),
1459                       [/* no pattern */]>;
1460
1461   def fnegvec: XORInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1462                        [/* no pattern, see fneg{32,64} */]>;
1463 }
1464
1465 defm XOR : BitwiseExclusiveOr;
1466
1467 //==----------------------------------------------------------
1468
1469 class XORBIInst<dag OOL, dag IOL, list<dag> pattern>:
1470     RI10Form<0b01100000, OOL, IOL, "xorbi\t$rT, $rA, $val",
1471              IntegerOp, pattern>;
1472
1473 multiclass XorByteImm
1474 {
1475   def v16i8:
1476     XORBIInst<(outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
1477               [(set (v16i8 VECREG:$rT), (xor (v16i8 VECREG:$rA), v16i8U8Imm:$val))]>;
1478
1479   def r8:
1480     XORBIInst<(outs R8C:$rT), (ins R8C:$rA, u10imm_i8:$val),
1481               [(set R8C:$rT, (xor R8C:$rA, immU8:$val))]>;
1482 }
1483
1484 defm XORBI : XorByteImm;
1485
1486 def XORHIv8i16:
1487     RI10Form<0b10100000, (outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
1488       "xorhi\t$rT, $rA, $val", IntegerOp,
1489       [(set (v8i16 VECREG:$rT), (xor (v8i16 VECREG:$rA),
1490                                       v8i16SExt10Imm:$val))]>;
1491
1492 def XORHIr16:
1493     RI10Form<0b10100000, (outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
1494       "xorhi\t$rT, $rA, $val", IntegerOp,
1495       [(set R16C:$rT, (xor R16C:$rA, i16ImmSExt10:$val))]>;
1496
1497 def XORIv4i32:
1498     RI10Form<0b00100000, (outs VECREG:$rT), (ins VECREG:$rA, s10imm_i32:$val),
1499       "xori\t$rT, $rA, $val", IntegerOp,
1500       [(set (v4i32 VECREG:$rT), (xor (v4i32 VECREG:$rA),
1501                                      v4i32SExt10Imm:$val))]>;
1502
1503 def XORIr32:
1504     RI10Form<0b00100000, (outs R32C:$rT), (ins R32C:$rA, s10imm_i32:$val),
1505       "xori\t$rT, $rA, $val", IntegerOp,
1506       [(set R32C:$rT, (xor R32C:$rA, i32ImmSExt10:$val))]>;
1507
1508 // NAND:
1509 def NANDv16i8:
1510     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1511       "nand\t$rT, $rA, $rB", IntegerOp,
1512       [(set (v16i8 VECREG:$rT), (vnot (and (v16i8 VECREG:$rA),
1513                                            (v16i8 VECREG:$rB))))]>;
1514
1515 def NANDv8i16:
1516     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1517       "nand\t$rT, $rA, $rB", IntegerOp,
1518       [(set (v8i16 VECREG:$rT), (vnot (and (v8i16 VECREG:$rA),
1519                                            (v8i16 VECREG:$rB))))]>;
1520
1521 def NANDv4i32:
1522     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1523       "nand\t$rT, $rA, $rB", IntegerOp,
1524       [(set (v4i32 VECREG:$rT), (vnot (and (v4i32 VECREG:$rA),
1525                                            (v4i32 VECREG:$rB))))]>;
1526
1527 def NANDr32:
1528     RRForm<0b10010010000, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
1529       "nand\t$rT, $rA, $rB", IntegerOp,
1530       [(set R32C:$rT, (not (and R32C:$rA, R32C:$rB)))]>;
1531
1532 def NANDr16:
1533     RRForm<0b10010010000, (outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
1534       "nand\t$rT, $rA, $rB", IntegerOp,
1535       [(set R16C:$rT, (not (and R16C:$rA, R16C:$rB)))]>;
1536
1537 def NANDr8:
1538     RRForm<0b10010010000, (outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
1539       "nand\t$rT, $rA, $rB", IntegerOp,
1540       [(set R8C:$rT, (not (and R8C:$rA, R8C:$rB)))]>;
1541
1542 // NOR:
1543 def NORv16i8:
1544     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1545       "nor\t$rT, $rA, $rB", IntegerOp,
1546       [(set (v16i8 VECREG:$rT), (vnot (or (v16i8 VECREG:$rA),
1547                                           (v16i8 VECREG:$rB))))]>;
1548
1549 def NORv8i16:
1550     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1551       "nor\t$rT, $rA, $rB", IntegerOp,
1552       [(set (v8i16 VECREG:$rT), (vnot (or (v8i16 VECREG:$rA),
1553                                           (v8i16 VECREG:$rB))))]>;
1554
1555 def NORv4i32:
1556     RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1557       "nor\t$rT, $rA, $rB", IntegerOp,
1558       [(set (v4i32 VECREG:$rT), (vnot (or (v4i32 VECREG:$rA),
1559                                           (v4i32 VECREG:$rB))))]>;
1560
1561 def NORr32:
1562     RRForm<0b10010010000, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
1563       "nor\t$rT, $rA, $rB", IntegerOp,
1564       [(set R32C:$rT, (not (or R32C:$rA, R32C:$rB)))]>;
1565
1566 def NORr16:
1567     RRForm<0b10010010000, (outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
1568       "nor\t$rT, $rA, $rB", IntegerOp,
1569       [(set R16C:$rT, (not (or R16C:$rA, R16C:$rB)))]>;
1570
1571 def NORr8:
1572     RRForm<0b10010010000, (outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
1573       "nor\t$rT, $rA, $rB", IntegerOp,
1574       [(set R8C:$rT, (not (or R8C:$rA, R8C:$rB)))]>;
1575
1576 // Select bits:
1577 class SELBInst<dag OOL, dag IOL, list<dag> pattern>:
1578     RRRForm<0b1000, OOL, IOL, "selb\t$rT, $rA, $rB, $rC",
1579             IntegerOp, pattern>;
1580
1581 class SELBVecInst<ValueType vectype>:
1582   SELBInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
1583            [(set (vectype VECREG:$rT),
1584                  (or (and (vectype VECREG:$rC), (vectype VECREG:$rB)),
1585                      (and (vnot (vectype VECREG:$rC)),
1586                           (vectype VECREG:$rA))))]>;
1587
1588 class SELBRegInst<RegisterClass rclass>:
1589   SELBInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB, rclass:$rC),
1590            [(set rclass:$rT,
1591                  (or (and rclass:$rA, rclass:$rC),
1592                      (and rclass:$rB, (not rclass:$rC))))]>;
1593
1594 multiclass SelectBits
1595 {
1596   def v16i8: SELBVecInst<v16i8>;
1597   def v8i16: SELBVecInst<v8i16>;
1598   def v4i32: SELBVecInst<v4i32>;
1599   def v2i64: SELBVecInst<v2i64>;
1600
1601   def r128:  SELBRegInst<GPRC>;
1602   def r64:   SELBRegInst<R64C>;
1603   def r32:   SELBRegInst<R32C>;
1604   def r16:   SELBRegInst<R16C>;
1605   def r8:    SELBRegInst<R8C>;
1606 }
1607
1608 defm SELB : SelectBits;
1609
1610 class SPUselbPatVec<ValueType vectype, SPUInstr inst>:
1611    Pat<(SPUselb (vectype VECREG:$rA), (vectype VECREG:$rB), (vectype VECREG:$rC)),
1612        (inst VECREG:$rA, VECREG:$rB, VECREG:$rC)>;
1613
1614 def : SPUselbPatVec<v16i8, SELBv16i8>;
1615 def : SPUselbPatVec<v8i16, SELBv8i16>;
1616 def : SPUselbPatVec<v4i32, SELBv4i32>;
1617 def : SPUselbPatVec<v2i64, SELBv2i64>;
1618
1619 class SPUselbPatReg<RegisterClass rclass, SPUInstr inst>:
1620    Pat<(SPUselb rclass:$rA, rclass:$rB, rclass:$rC),
1621        (inst rclass:$rA, rclass:$rB, rclass:$rC)>;
1622
1623 def : SPUselbPatReg<R8C,   SELBr8>;
1624 def : SPUselbPatReg<R16C,  SELBr16>;
1625 def : SPUselbPatReg<R32C,  SELBr32>;
1626 def : SPUselbPatReg<R64C,  SELBr64>;
1627
1628 class SelectConditional<RegisterClass rclass, SPUInstr inst>:
1629     Pat<(select rclass:$rCond, rclass:$rTrue, rclass:$rFalse),
1630         (inst rclass:$rFalse, rclass:$rTrue, rclass:$rCond)>;
1631
1632 def : SelectConditional<R32C, SELBr32>;
1633 def : SelectConditional<R16C, SELBr16>;
1634 def : SelectConditional<R8C, SELBr8>;
1635
1636 // EQV: Equivalence (1 for each same bit, otherwise 0)
1637 //
1638 // Note: There are a lot of ways to match this bit operator and these patterns
1639 // attempt to be as exhaustive as possible.
1640
1641 class EQVInst<dag OOL, dag IOL, list<dag> pattern>:
1642     RRForm<0b10010010000, OOL, IOL, "eqv\t$rT, $rA, $rB",
1643            IntegerOp, pattern>;
1644
1645 class EQVVecInst<ValueType vectype>:
1646     EQVInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1647             [(set (vectype VECREG:$rT),
1648                   (or (and (vectype VECREG:$rA), (vectype VECREG:$rB)),
1649                       (and (vnot (vectype VECREG:$rA)),
1650                            (vnot (vectype VECREG:$rB)))))]>;
1651
1652 class EQVRegInst<RegisterClass rclass>:
1653     EQVInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1654             [(set rclass:$rT, (or (and rclass:$rA, rclass:$rB),
1655                                   (and (not rclass:$rA), (not rclass:$rB))))]>;
1656
1657 class EQVVecPattern1<ValueType vectype>:
1658   EQVInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1659           [(set (vectype VECREG:$rT),
1660                 (xor (vectype VECREG:$rA), (vnot (vectype VECREG:$rB))))]>;
1661
1662 class EQVRegPattern1<RegisterClass rclass>:
1663   EQVInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1664           [(set rclass:$rT, (xor rclass:$rA, (not rclass:$rB)))]>;
1665
1666 class EQVVecPattern2<ValueType vectype>:
1667   EQVInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1668           [(set (vectype VECREG:$rT),
1669                 (or (and (vectype VECREG:$rA), (vectype VECREG:$rB)),
1670                     (vnot (or (vectype VECREG:$rA), (vectype VECREG:$rB)))))]>;
1671
1672 class EQVRegPattern2<RegisterClass rclass>:
1673   EQVInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1674           [(set rclass:$rT,
1675                 (or (and rclass:$rA, rclass:$rB),
1676                     (not (or rclass:$rA, rclass:$rB))))]>;
1677
1678 class EQVVecPattern3<ValueType vectype>:
1679   EQVInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1680           [(set (vectype VECREG:$rT),
1681                 (not (xor (vectype VECREG:$rA), (vectype VECREG:$rB))))]>;
1682
1683 class EQVRegPattern3<RegisterClass rclass>:
1684   EQVInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1685           [(set rclass:$rT, (not (xor rclass:$rA, rclass:$rB)))]>;
1686
1687 multiclass BitEquivalence
1688 {
1689   def v16i8: EQVVecInst<v16i8>;
1690   def v8i16: EQVVecInst<v8i16>;
1691   def v4i32: EQVVecInst<v4i32>;
1692   def v2i64: EQVVecInst<v2i64>;
1693
1694   def v16i8_1: EQVVecPattern1<v16i8>;
1695   def v8i16_1: EQVVecPattern1<v8i16>;
1696   def v4i32_1: EQVVecPattern1<v4i32>;
1697   def v2i64_1: EQVVecPattern1<v2i64>;
1698
1699   def v16i8_2: EQVVecPattern2<v16i8>;
1700   def v8i16_2: EQVVecPattern2<v8i16>;
1701   def v4i32_2: EQVVecPattern2<v4i32>;
1702   def v2i64_2: EQVVecPattern2<v2i64>;
1703
1704   def v16i8_3: EQVVecPattern3<v16i8>;
1705   def v8i16_3: EQVVecPattern3<v8i16>;
1706   def v4i32_3: EQVVecPattern3<v4i32>;
1707   def v2i64_3: EQVVecPattern3<v2i64>;
1708
1709   def r128:  EQVRegInst<GPRC>;
1710   def r64:   EQVRegInst<R64C>;
1711   def r32:   EQVRegInst<R32C>;
1712   def r16:   EQVRegInst<R16C>;
1713   def r8:    EQVRegInst<R8C>;
1714
1715   def r128_1: EQVRegPattern1<GPRC>;
1716   def r64_1:  EQVRegPattern1<R64C>;
1717   def r32_1:  EQVRegPattern1<R32C>;
1718   def r16_1:  EQVRegPattern1<R16C>;
1719   def r8_1:   EQVRegPattern1<R8C>;
1720
1721   def r128_2: EQVRegPattern2<GPRC>;
1722   def r64_2:  EQVRegPattern2<R64C>;
1723   def r32_2:  EQVRegPattern2<R32C>;
1724   def r16_2:  EQVRegPattern2<R16C>;
1725   def r8_2:   EQVRegPattern2<R8C>;
1726
1727   def r128_3: EQVRegPattern3<GPRC>;
1728   def r64_3:  EQVRegPattern3<R64C>;
1729   def r32_3:  EQVRegPattern3<R32C>;
1730   def r16_3:  EQVRegPattern3<R16C>;
1731   def r8_3:   EQVRegPattern3<R8C>;
1732 }
1733
1734 defm EQV: BitEquivalence;
1735
1736 //===----------------------------------------------------------------------===//
1737 // Vector shuffle...
1738 //===----------------------------------------------------------------------===//
1739 // SPUshuffle is generated in LowerVECTOR_SHUFFLE and gets replaced with SHUFB.
1740 // See the SPUshuffle SDNode operand above, which sets up the DAG pattern
1741 // matcher to emit something when the LowerVECTOR_SHUFFLE generates a node with
1742 // the SPUISD::SHUFB opcode.
1743 //===----------------------------------------------------------------------===//
1744
1745 class SHUFBInst<dag OOL, dag IOL, list<dag> pattern>:
1746     RRRForm<0b1000, OOL, IOL, "shufb\t$rT, $rA, $rB, $rC",
1747             IntegerOp, pattern>;
1748
1749 class SHUFBVecInst<ValueType resultvec, ValueType maskvec>:
1750     SHUFBInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
1751               [(set (resultvec VECREG:$rT),
1752                     (SPUshuffle (resultvec VECREG:$rA),
1753                                 (resultvec VECREG:$rB),
1754                                 (maskvec VECREG:$rC)))]>;
1755
1756 multiclass ShuffleBytes
1757 {
1758   def v16i8     : SHUFBVecInst<v16i8, v16i8>;
1759   def v16i8_m32 : SHUFBVecInst<v16i8, v4i32>;
1760   def v8i16     : SHUFBVecInst<v8i16, v16i8>;
1761   def v8i16_m32 : SHUFBVecInst<v8i16, v4i32>;
1762   def v4i32     : SHUFBVecInst<v4i32, v16i8>;
1763   def v4i32_m32 : SHUFBVecInst<v4i32, v4i32>;
1764   def v2i64     : SHUFBVecInst<v2i64, v16i8>;
1765   def v2i64_m32 : SHUFBVecInst<v2i64, v4i32>;
1766
1767   def v4f32     : SHUFBVecInst<v4f32, v16i8>;
1768   def v4f32_m32 : SHUFBVecInst<v4f32, v4i32>;
1769
1770   def v2f64     : SHUFBVecInst<v2f64, v16i8>;
1771   def v2f64_m32 : SHUFBVecInst<v2f64, v4i32>;
1772 }
1773
1774 defm SHUFB : ShuffleBytes;
1775
1776 //===----------------------------------------------------------------------===//
1777 // Shift and rotate group:
1778 //===----------------------------------------------------------------------===//
1779
1780 class SHLHInst<dag OOL, dag IOL, list<dag> pattern>:
1781     RRForm<0b11111010000, OOL, IOL, "shlh\t$rT, $rA, $rB",
1782            RotateShift, pattern>;
1783
1784 class SHLHVecInst<ValueType vectype>:
1785     SHLHInst<(outs VECREG:$rT), (ins VECREG:$rA, R16C:$rB),
1786              [(set (vectype VECREG:$rT),
1787                    (SPUvec_shl (vectype VECREG:$rA), R16C:$rB))]>;
1788
1789 // $rB gets promoted to 32-bit register type when confronted with
1790 // this llvm assembly code:
1791 //
1792 // define i16 @shlh_i16_1(i16 %arg1, i16 %arg2) {
1793 //      %A = shl i16 %arg1, %arg2
1794 //      ret i16 %A
1795 // }
1796
1797 multiclass ShiftLeftHalfword
1798 {
1799   def v8i16: SHLHVecInst<v8i16>;
1800   def r16:   SHLHInst<(outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
1801                       [(set R16C:$rT, (shl R16C:$rA, R16C:$rB))]>;
1802   def r16_r32: SHLHInst<(outs R16C:$rT), (ins R16C:$rA, R32C:$rB),
1803                         [(set R16C:$rT, (shl R16C:$rA, R32C:$rB))]>;
1804 }
1805
1806 defm SHLH : ShiftLeftHalfword;
1807
1808 //===----------------------------------------------------------------------===//
1809
1810 class SHLHIInst<dag OOL, dag IOL, list<dag> pattern>:
1811     RI7Form<0b11111010000, OOL, IOL, "shlhi\t$rT, $rA, $val",
1812             RotateShift, pattern>;
1813
1814 class SHLHIVecInst<ValueType vectype>:
1815     SHLHIInst<(outs VECREG:$rT), (ins VECREG:$rA, u7imm:$val),
1816               [(set (vectype VECREG:$rT),
1817                     (SPUvec_shl (vectype VECREG:$rA), (i16 uimm7:$val)))]>;
1818
1819 multiclass ShiftLeftHalfwordImm
1820 {
1821   def v8i16: SHLHIVecInst<v8i16>;
1822   def r16: SHLHIInst<(outs R16C:$rT), (ins R16C:$rA, u7imm:$val),
1823                      [(set R16C:$rT, (shl R16C:$rA, (i16 uimm7:$val)))]>;
1824 }
1825
1826 defm SHLHI : ShiftLeftHalfwordImm;
1827
1828 def : Pat<(SPUvec_shl (v8i16 VECREG:$rA), (i32 uimm7:$val)),
1829           (SHLHIv8i16 VECREG:$rA, uimm7:$val)>;
1830
1831 def : Pat<(shl R16C:$rA, (i32 uimm7:$val)),
1832           (SHLHIr16 R16C:$rA, uimm7:$val)>;
1833
1834 //===----------------------------------------------------------------------===//
1835
1836 class SHLInst<dag OOL, dag IOL, list<dag> pattern>:
1837     RRForm<0b11111010000, OOL, IOL, "shl\t$rT, $rA, $rB",
1838            RotateShift, pattern>;
1839
1840 multiclass ShiftLeftWord
1841 {
1842   def v4i32:
1843       SHLInst<(outs VECREG:$rT), (ins VECREG:$rA, R16C:$rB),
1844               [(set (v4i32 VECREG:$rT),
1845                     (SPUvec_shl (v4i32 VECREG:$rA), R16C:$rB))]>;
1846   def r32:
1847       SHLInst<(outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
1848               [(set R32C:$rT, (shl R32C:$rA, R32C:$rB))]>;
1849 }
1850
1851 defm SHL: ShiftLeftWord;
1852
1853 //===----------------------------------------------------------------------===//
1854
1855 class SHLIInst<dag OOL, dag IOL, list<dag> pattern>:
1856     RI7Form<0b11111010000, OOL, IOL, "shli\t$rT, $rA, $val",
1857             RotateShift, pattern>;
1858
1859 multiclass ShiftLeftWordImm
1860 {
1861   def v4i32:
1862     SHLIInst<(outs VECREG:$rT), (ins VECREG:$rA, u7imm_i32:$val),
1863              [(set (v4i32 VECREG:$rT),
1864                    (SPUvec_shl (v4i32 VECREG:$rA), (i32 uimm7:$val)))]>;
1865
1866   def r32:
1867     SHLIInst<(outs R32C:$rT), (ins R32C:$rA, u7imm_i32:$val),
1868              [(set R32C:$rT, (shl R32C:$rA, (i32 uimm7:$val)))]>;
1869 }
1870
1871 defm SHLI : ShiftLeftWordImm;
1872
1873 //===----------------------------------------------------------------------===//
1874 // SHLQBI vec form: Note that this will shift the entire vector (the 128-bit
1875 // register) to the left. Vector form is here to ensure type correctness.
1876 //
1877 // The shift count is in the lowest 3 bits (29-31) of $rB, so only a bit shift
1878 // of 7 bits is actually possible.
1879 //
1880 // Note also that SHLQBI/SHLQBII are used in conjunction with SHLQBY/SHLQBYI
1881 // to shift i64 and i128. SHLQBI is the residual left over after shifting by
1882 // bytes with SHLQBY.
1883
1884 class SHLQBIInst<dag OOL, dag IOL, list<dag> pattern>:
1885     RRForm<0b11011011100, OOL, IOL, "shlqbi\t$rT, $rA, $rB",
1886            RotateShift, pattern>;
1887
1888 class SHLQBIVecInst<ValueType vectype>:
1889     SHLQBIInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
1890                [(set (vectype VECREG:$rT),
1891                      (SPUshlquad_l_bits (vectype VECREG:$rA), R32C:$rB))]>;
1892
1893 multiclass ShiftLeftQuadByBits
1894 {
1895   def v16i8: SHLQBIVecInst<v16i8>;
1896   def v8i16: SHLQBIVecInst<v8i16>;
1897   def v4i32: SHLQBIVecInst<v4i32>;
1898   def v4f32: SHLQBIVecInst<v4f32>;
1899   def v2i64: SHLQBIVecInst<v2i64>;
1900   def v2f64: SHLQBIVecInst<v2f64>;
1901 }
1902
1903 defm SHLQBI : ShiftLeftQuadByBits;
1904
1905 // See note above on SHLQBI. In this case, the predicate actually does then
1906 // enforcement, whereas with SHLQBI, we have to "take it on faith."
1907 class SHLQBIIInst<dag OOL, dag IOL, list<dag> pattern>:
1908     RI7Form<0b11011111100, OOL, IOL, "shlqbii\t$rT, $rA, $val",
1909             RotateShift, pattern>;
1910
1911 class SHLQBIIVecInst<ValueType vectype>:
1912     SHLQBIIInst<(outs VECREG:$rT), (ins VECREG:$rA, u7imm_i32:$val),
1913                 [(set (vectype VECREG:$rT),
1914                       (SPUshlquad_l_bits (vectype VECREG:$rA), (i32 bitshift:$val)))]>;
1915
1916 multiclass ShiftLeftQuadByBitsImm
1917 {
1918   def v16i8 : SHLQBIIVecInst<v16i8>;
1919   def v8i16 : SHLQBIIVecInst<v8i16>;
1920   def v4i32 : SHLQBIIVecInst<v4i32>;
1921   def v4f32 : SHLQBIIVecInst<v4f32>;
1922   def v2i64 : SHLQBIIVecInst<v2i64>;
1923   def v2f64 : SHLQBIIVecInst<v2f64>;
1924 }
1925
1926 defm SHLQBII : ShiftLeftQuadByBitsImm;
1927
1928 // SHLQBY, SHLQBYI vector forms: Shift the entire vector to the left by bytes,
1929 // not by bits. See notes above on SHLQBI.
1930
1931 class SHLQBYInst<dag OOL, dag IOL, list<dag> pattern>:
1932     RI7Form<0b11111011100, OOL, IOL, "shlqby\t$rT, $rA, $rB",
1933             RotateShift, pattern>;
1934
1935 class SHLQBYVecInst<ValueType vectype>:
1936     SHLQBYInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
1937                [(set (vectype VECREG:$rT),
1938                      (SPUshlquad_l_bytes (vectype VECREG:$rA), R32C:$rB))]>;
1939
1940 multiclass ShiftLeftQuadBytes
1941 {
1942   def v16i8: SHLQBYVecInst<v16i8>;
1943   def v8i16: SHLQBYVecInst<v8i16>;
1944   def v4i32: SHLQBYVecInst<v4i32>;
1945   def v4f32: SHLQBYVecInst<v4f32>;
1946   def v2i64: SHLQBYVecInst<v2i64>;
1947   def v2f64: SHLQBYVecInst<v2f64>;
1948   def r128: SHLQBYInst<(outs GPRC:$rT), (ins GPRC:$rA, R32C:$rB),
1949                        [(set GPRC:$rT, (SPUshlquad_l_bytes GPRC:$rA, R32C:$rB))]>;
1950 }
1951
1952 defm SHLQBY: ShiftLeftQuadBytes;
1953
1954 class SHLQBYIInst<dag OOL, dag IOL, list<dag> pattern>:
1955     RI7Form<0b11111111100, OOL, IOL, "shlqbyi\t$rT, $rA, $val",
1956             RotateShift, pattern>;
1957
1958 class SHLQBYIVecInst<ValueType vectype>:
1959     SHLQBYIInst<(outs VECREG:$rT), (ins VECREG:$rA, u7imm_i32:$val),
1960                 [(set (vectype VECREG:$rT),
1961                       (SPUshlquad_l_bytes (vectype VECREG:$rA), (i32 uimm7:$val)))]>;
1962
1963 multiclass ShiftLeftQuadBytesImm
1964 {
1965   def v16i8: SHLQBYIVecInst<v16i8>;
1966   def v8i16: SHLQBYIVecInst<v8i16>;
1967   def v4i32: SHLQBYIVecInst<v4i32>;
1968   def v4f32: SHLQBYIVecInst<v4f32>;
1969   def v2i64: SHLQBYIVecInst<v2i64>;
1970   def v2f64: SHLQBYIVecInst<v2f64>;
1971   def r128:  SHLQBYIInst<(outs GPRC:$rT), (ins GPRC:$rA, u7imm_i32:$val),
1972                          [(set GPRC:$rT,
1973                                (SPUshlquad_l_bytes GPRC:$rA, (i32 uimm7:$val)))]>;
1974 }
1975
1976 defm SHLQBYI : ShiftLeftQuadBytesImm;
1977
1978 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1979 // Rotate halfword:
1980 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1981 class ROTHInst<dag OOL, dag IOL, list<dag> pattern>:
1982     RRForm<0b00111010000, OOL, IOL, "roth\t$rT, $rA, $rB",
1983            RotateShift, pattern>;
1984
1985 class ROTHVecInst<ValueType vectype>:
1986     ROTHInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1987              [(set (vectype VECREG:$rT),
1988                    (SPUvec_rotl VECREG:$rA, VECREG:$rB))]>;
1989
1990 class ROTHRegInst<RegisterClass rclass>:
1991     ROTHInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1992              [(set rclass:$rT, (rotl rclass:$rA, rclass:$rB))]>;
1993
1994 multiclass RotateLeftHalfword
1995 {
1996   def v8i16: ROTHVecInst<v8i16>;
1997   def r16: ROTHRegInst<R16C>;
1998 }
1999
2000 defm ROTH: RotateLeftHalfword;
2001
2002 def ROTHr16_r32: ROTHInst<(outs R16C:$rT), (ins R16C:$rA, R32C:$rB),
2003                           [(set R16C:$rT, (rotl R16C:$rA, R32C:$rB))]>;
2004
2005 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2006 // Rotate halfword, immediate:
2007 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2008 class ROTHIInst<dag OOL, dag IOL, list<dag> pattern>:
2009     RI7Form<0b00111110000, OOL, IOL, "rothi\t$rT, $rA, $val",
2010             RotateShift, pattern>;
2011
2012 class ROTHIVecInst<ValueType vectype>:
2013     ROTHIInst<(outs VECREG:$rT), (ins VECREG:$rA, u7imm:$val),
2014               [(set (vectype VECREG:$rT),
2015                     (SPUvec_rotl VECREG:$rA, (i16 uimm7:$val)))]>;
2016
2017 multiclass RotateLeftHalfwordImm
2018 {
2019   def v8i16: ROTHIVecInst<v8i16>;
2020   def r16: ROTHIInst<(outs R16C:$rT), (ins R16C:$rA, u7imm:$val),
2021                      [(set R16C:$rT, (rotl R16C:$rA, (i16 uimm7:$val)))]>;
2022   def r16_r32: ROTHIInst<(outs R16C:$rT), (ins R16C:$rA, u7imm_i32:$val),
2023                          [(set R16C:$rT, (rotl R16C:$rA, (i32 uimm7:$val)))]>;
2024 }
2025
2026 defm ROTHI: RotateLeftHalfwordImm;
2027
2028 def : Pat<(SPUvec_rotl VECREG:$rA, (i32 uimm7:$val)),
2029           (ROTHIv8i16 VECREG:$rA, imm:$val)>;
2030     
2031 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2032 // Rotate word:
2033 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2034
2035 class ROTInst<dag OOL, dag IOL, list<dag> pattern>:
2036     RRForm<0b00011010000, OOL, IOL, "rot\t$rT, $rA, $rB",
2037            RotateShift, pattern>;
2038
2039 class ROTVecInst<ValueType vectype>:
2040     ROTInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2041             [(set (vectype VECREG:$rT),
2042                   (SPUvec_rotl (vectype VECREG:$rA), R32C:$rB))]>;
2043
2044 class ROTRegInst<RegisterClass rclass>:
2045     ROTInst<(outs rclass:$rT), (ins rclass:$rA, R32C:$rB),
2046             [(set rclass:$rT,
2047                   (rotl rclass:$rA, R32C:$rB))]>;
2048
2049 multiclass RotateLeftWord
2050 {
2051   def v4i32: ROTVecInst<v4i32>;
2052   def r32:   ROTRegInst<R32C>;
2053 }
2054
2055 defm ROT: RotateLeftWord;
2056
2057 // The rotate amount is in the same bits whether we've got an 8-bit, 16-bit or
2058 // 32-bit register
2059 def ROTr32_r16_anyext:
2060     ROTInst<(outs R32C:$rT), (ins R32C:$rA, R16C:$rB),
2061             [(set R32C:$rT, (rotl R32C:$rA, (i32 (anyext R16C:$rB))))]>;
2062
2063 def : Pat<(rotl R32C:$rA, (i32 (zext R16C:$rB))),
2064           (ROTr32_r16_anyext R32C:$rA, R16C:$rB)>;
2065
2066 def : Pat<(rotl R32C:$rA, (i32 (sext R16C:$rB))),
2067           (ROTr32_r16_anyext R32C:$rA, R16C:$rB)>;
2068
2069 def ROTr32_r8_anyext:
2070     ROTInst<(outs R32C:$rT), (ins R32C:$rA, R8C:$rB),
2071             [(set R32C:$rT, (rotl R32C:$rA, (i32 (anyext R8C:$rB))))]>;
2072
2073 def : Pat<(rotl R32C:$rA, (i32 (zext R8C:$rB))),
2074           (ROTr32_r8_anyext R32C:$rA, R8C:$rB)>;
2075
2076 def : Pat<(rotl R32C:$rA, (i32 (sext R8C:$rB))),
2077           (ROTr32_r8_anyext R32C:$rA, R8C:$rB)>;
2078
2079 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2080 // Rotate word, immediate
2081 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2082
2083 class ROTIInst<dag OOL, dag IOL, list<dag> pattern>:
2084     RI7Form<0b00011110000, OOL, IOL, "roti\t$rT, $rA, $val",
2085             RotateShift, pattern>;
2086
2087 class ROTIVecInst<ValueType vectype, Operand optype, ValueType inttype, PatLeaf pred>:
2088     ROTIInst<(outs VECREG:$rT), (ins VECREG:$rA, optype:$val),
2089              [(set (vectype VECREG:$rT),
2090                    (SPUvec_rotl (vectype VECREG:$rA), (inttype pred:$val)))]>;
2091
2092 class ROTIRegInst<RegisterClass rclass, Operand optype, ValueType inttype, PatLeaf pred>:
2093     ROTIInst<(outs rclass:$rT), (ins rclass:$rA, optype:$val),
2094              [(set rclass:$rT, (rotl rclass:$rA, (inttype pred:$val)))]>;
2095
2096 multiclass RotateLeftWordImm
2097 {
2098   def v4i32: ROTIVecInst<v4i32, u7imm_i32, i32, uimm7>;
2099   def v4i32_i16: ROTIVecInst<v4i32, u7imm, i16, uimm7>;
2100   def v4i32_i8:  ROTIVecInst<v4i32, u7imm_i8, i8, uimm7>;
2101
2102   def r32:       ROTIRegInst<R32C, u7imm_i32, i32, uimm7>;
2103   def r32_i16:   ROTIRegInst<R32C, u7imm, i16, uimm7>;
2104   def r32_i8:    ROTIRegInst<R32C, u7imm_i8, i8, uimm7>;
2105 }
2106
2107 defm ROTI : RotateLeftWordImm;
2108
2109 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2110 // Rotate quad by byte (count)
2111 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2112
2113 class ROTQBYInst<dag OOL, dag IOL, list<dag> pattern>:
2114     RRForm<0b00111011100, OOL, IOL, "rotqby\t$rT, $rA, $rB",
2115            RotateShift, pattern>;
2116
2117 class ROTQBYVecInst<ValueType vectype>:
2118     ROTQBYInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2119                [(set (vectype VECREG:$rT),
2120                      (SPUrotbytes_left (vectype VECREG:$rA), R32C:$rB))]>;
2121
2122 multiclass RotateQuadLeftByBytes
2123 {
2124   def v16i8: ROTQBYVecInst<v16i8>;
2125   def v8i16: ROTQBYVecInst<v8i16>;
2126   def v4i32: ROTQBYVecInst<v4i32>;
2127   def v4f32: ROTQBYVecInst<v4f32>;
2128   def v2i64: ROTQBYVecInst<v2i64>;
2129   def v2f64: ROTQBYVecInst<v2f64>;
2130 }
2131
2132 defm ROTQBY: RotateQuadLeftByBytes;
2133
2134 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2135 // Rotate quad by byte (count), immediate
2136 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2137
2138 class ROTQBYIInst<dag OOL, dag IOL, list<dag> pattern>:
2139     RI7Form<0b00111111100, OOL, IOL, "rotqbyi\t$rT, $rA, $val",
2140             RotateShift, pattern>;
2141
2142 class ROTQBYIVecInst<ValueType vectype>:
2143     ROTQBYIInst<(outs VECREG:$rT), (ins VECREG:$rA, u7imm:$val),
2144                 [(set (vectype VECREG:$rT),
2145                       (SPUrotbytes_left (vectype VECREG:$rA), (i16 uimm7:$val)))]>;
2146
2147 multiclass RotateQuadByBytesImm
2148 {
2149   def v16i8: ROTQBYIVecInst<v16i8>;
2150   def v8i16: ROTQBYIVecInst<v8i16>;
2151   def v4i32: ROTQBYIVecInst<v4i32>;
2152   def v4f32: ROTQBYIVecInst<v4f32>;
2153   def v2i64: ROTQBYIVecInst<v2i64>;
2154   def vfi64: ROTQBYIVecInst<v2f64>;
2155 }
2156
2157 defm ROTQBYI: RotateQuadByBytesImm;
2158
2159 // See ROTQBY note above.
2160 class ROTQBYBIInst<dag OOL, dag IOL, list<dag> pattern>:
2161     RI7Form<0b00110011100, OOL, IOL,
2162       "rotqbybi\t$rT, $rA, $shift",
2163       RotateShift, pattern>;
2164
2165 class ROTQBYBIVecInst<ValueType vectype, RegisterClass rclass>:
2166     ROTQBYBIInst<(outs VECREG:$rT), (ins VECREG:$rA, rclass:$shift),
2167       [(set (vectype VECREG:$rT),
2168             (SPUrotbytes_left_bits (vectype VECREG:$rA), rclass:$shift))]>;
2169
2170 multiclass RotateQuadByBytesByBitshift {
2171   def v16i8_r32: ROTQBYBIVecInst<v16i8, R32C>;
2172   def v8i16_r32: ROTQBYBIVecInst<v8i16, R32C>;
2173   def v4i32_r32: ROTQBYBIVecInst<v4i32, R32C>;
2174   def v2i64_r32: ROTQBYBIVecInst<v2i64, R32C>;
2175 }
2176
2177 defm ROTQBYBI : RotateQuadByBytesByBitshift;
2178
2179 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2180 // See ROTQBY note above.
2181 //
2182 // Assume that the user of this instruction knows to shift the rotate count
2183 // into bit 29
2184 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2185
2186 class ROTQBIInst<dag OOL, dag IOL, list<dag> pattern>:
2187     RRForm<0b00011011100, OOL, IOL, "rotqbi\t$rT, $rA, $rB",
2188            RotateShift, pattern>;
2189
2190 class ROTQBIVecInst<ValueType vectype>:
2191     ROTQBIInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2192                [/* no pattern yet */]>;
2193
2194 class ROTQBIRegInst<RegisterClass rclass>:
2195     ROTQBIInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
2196                [/* no pattern yet */]>;
2197
2198 multiclass RotateQuadByBitCount
2199 {
2200   def v16i8: ROTQBIVecInst<v16i8>;
2201   def v8i16: ROTQBIVecInst<v8i16>;
2202   def v4i32: ROTQBIVecInst<v4i32>;
2203   def v2i64: ROTQBIVecInst<v2i64>;
2204
2205   def r128:  ROTQBIRegInst<GPRC>;
2206   def r64:   ROTQBIRegInst<R64C>;
2207 }
2208
2209 defm ROTQBI: RotateQuadByBitCount;
2210     
2211 class ROTQBIIInst<dag OOL, dag IOL, list<dag> pattern>:
2212     RI7Form<0b00011111100, OOL, IOL, "rotqbii\t$rT, $rA, $val",
2213             RotateShift, pattern>;
2214
2215 class ROTQBIIVecInst<ValueType vectype, Operand optype, ValueType inttype,
2216                      PatLeaf pred>:
2217     ROTQBIIInst<(outs VECREG:$rT), (ins VECREG:$rA, optype:$val),
2218                 [/* no pattern yet */]>;
2219
2220 class ROTQBIIRegInst<RegisterClass rclass, Operand optype, ValueType inttype,
2221                      PatLeaf pred>:
2222     ROTQBIIInst<(outs rclass:$rT), (ins rclass:$rA, optype:$val),
2223                 [/* no pattern yet */]>;
2224
2225 multiclass RotateQuadByBitCountImm
2226 {
2227   def v16i8: ROTQBIIVecInst<v16i8, u7imm_i32, i32, uimm7>;
2228   def v8i16: ROTQBIIVecInst<v8i16, u7imm_i32, i32, uimm7>;
2229   def v4i32: ROTQBIIVecInst<v4i32, u7imm_i32, i32, uimm7>;
2230   def v2i64: ROTQBIIVecInst<v2i64, u7imm_i32, i32, uimm7>;
2231
2232   def r128:  ROTQBIIRegInst<GPRC, u7imm_i32, i32, uimm7>;
2233   def r64:   ROTQBIIRegInst<R64C, u7imm_i32, i32, uimm7>;
2234 }
2235
2236 defm ROTQBII : RotateQuadByBitCountImm;
2237
2238 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2239 // ROTHM v8i16 form:
2240 // NOTE(1): No vector rotate is generated by the C/C++ frontend (today),
2241 //          so this only matches a synthetically generated/lowered code
2242 //          fragment.
2243 // NOTE(2): $rB must be negated before the right rotate!
2244 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2245
2246 class ROTHMInst<dag OOL, dag IOL, list<dag> pattern>:
2247     RRForm<0b10111010000, OOL, IOL, "rothm\t$rT, $rA, $rB",
2248            RotateShift, pattern>;
2249
2250 def ROTHMv8i16:
2251     ROTHMInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2252               [/* see patterns below - $rB must be negated */]>;
2253
2254 def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), R32C:$rB),
2255           (ROTHMv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2256
2257 def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), R16C:$rB),
2258           (ROTHMv8i16 VECREG:$rA,
2259                       (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2260
2261 def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), R8C:$rB),
2262           (ROTHMv8i16 VECREG:$rA,
2263                       (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB) ), 0))>;
2264
2265 // ROTHM r16 form: Rotate 16-bit quantity to right, zero fill at the left
2266 // Note: This instruction doesn't match a pattern because rB must be negated
2267 // for the instruction to work. Thus, the pattern below the instruction!
2268
2269 def ROTHMr16:
2270     ROTHMInst<(outs R16C:$rT), (ins R16C:$rA, R32C:$rB),
2271               [/* see patterns below - $rB must be negated! */]>;
2272
2273 def : Pat<(srl R16C:$rA, R32C:$rB),
2274           (ROTHMr16 R16C:$rA, (SFIr32 R32C:$rB, 0))>;
2275
2276 def : Pat<(srl R16C:$rA, R16C:$rB),
2277           (ROTHMr16 R16C:$rA,
2278                     (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2279
2280 def : Pat<(srl R16C:$rA, R8C:$rB),
2281           (ROTHMr16 R16C:$rA,
2282                     (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB) ), 0))>;
2283
2284 // ROTHMI v8i16 form: See the comment for ROTHM v8i16. The difference here is
2285 // that the immediate can be complemented, so that the user doesn't have to
2286 // worry about it.
2287
2288 class ROTHMIInst<dag OOL, dag IOL, list<dag> pattern>:
2289     RI7Form<0b10111110000, OOL, IOL, "rothmi\t$rT, $rA, $val",
2290             RotateShift, pattern>;
2291
2292 def ROTHMIv8i16:
2293     ROTHMIInst<(outs VECREG:$rT), (ins VECREG:$rA, rothNeg7imm:$val),
2294                [/* no pattern */]>;
2295
2296 def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), (i32 imm:$val)),
2297           (ROTHMIv8i16 VECREG:$rA, imm:$val)>;
2298
2299 def: Pat<(SPUvec_srl (v8i16 VECREG:$rA), (i16 imm:$val)),
2300          (ROTHMIv8i16 VECREG:$rA, imm:$val)>;
2301  
2302 def: Pat<(SPUvec_srl (v8i16 VECREG:$rA), (i8 imm:$val)),
2303          (ROTHMIv8i16 VECREG:$rA, imm:$val)>;
2304
2305 def ROTHMIr16:
2306     ROTHMIInst<(outs R16C:$rT), (ins R16C:$rA, rothNeg7imm:$val),
2307                [/* no pattern */]>;
2308
2309 def: Pat<(srl R16C:$rA, (i32 uimm7:$val)),
2310          (ROTHMIr16 R16C:$rA, uimm7:$val)>;
2311
2312 def: Pat<(srl R16C:$rA, (i16 uimm7:$val)),
2313          (ROTHMIr16 R16C:$rA, uimm7:$val)>;
2314
2315 def: Pat<(srl R16C:$rA, (i8 uimm7:$val)),
2316          (ROTHMIr16 R16C:$rA, uimm7:$val)>;
2317
2318 // ROTM v4i32 form: See the ROTHM v8i16 comments.
2319 class ROTMInst<dag OOL, dag IOL, list<dag> pattern>:
2320     RRForm<0b10011010000, OOL, IOL, "rotm\t$rT, $rA, $rB",
2321            RotateShift, pattern>;
2322
2323 def ROTMv4i32:
2324     ROTMInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2325              [/* see patterns below - $rB must be negated */]>;
2326
2327 def : Pat<(SPUvec_srl VECREG:$rA, R32C:$rB),
2328           (ROTMv4i32 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2329
2330 def : Pat<(SPUvec_srl VECREG:$rA, R16C:$rB),
2331           (ROTMv4i32 VECREG:$rA,
2332                      (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2333
2334 def : Pat<(SPUvec_srl VECREG:$rA, R8C:$rB),
2335           (ROTMv4i32 VECREG:$rA,
2336                      (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2337
2338 def ROTMr32:
2339     ROTMInst<(outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
2340              [/* see patterns below - $rB must be negated */]>;
2341
2342 def : Pat<(srl R32C:$rA, R32C:$rB),
2343           (ROTMr32 R32C:$rA, (SFIr32 R32C:$rB, 0))>;
2344
2345 def : Pat<(srl R32C:$rA, R16C:$rB),
2346           (ROTMr32 R32C:$rA,
2347                    (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2348
2349 def : Pat<(srl R32C:$rA, R8C:$rB),
2350           (ROTMr32 R32C:$rA,
2351                    (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2352
2353 // ROTMI v4i32 form: See the comment for ROTHM v8i16.
2354 def ROTMIv4i32:
2355     RI7Form<0b10011110000, (outs VECREG:$rT), (ins VECREG:$rA, rotNeg7imm:$val),
2356       "rotmi\t$rT, $rA, $val", RotateShift,
2357       [(set (v4i32 VECREG:$rT),
2358             (SPUvec_srl VECREG:$rA, (i32 uimm7:$val)))]>;
2359
2360 def : Pat<(SPUvec_srl VECREG:$rA, (i16 uimm7:$val)),
2361           (ROTMIv4i32 VECREG:$rA, uimm7:$val)>;
2362  
2363 def : Pat<(SPUvec_srl VECREG:$rA, (i8 uimm7:$val)),
2364           (ROTMIv4i32 VECREG:$rA, uimm7:$val)>;
2365
2366 // ROTMI r32 form: know how to complement the immediate value.
2367 def ROTMIr32:
2368     RI7Form<0b10011110000, (outs R32C:$rT), (ins R32C:$rA, rotNeg7imm:$val),
2369       "rotmi\t$rT, $rA, $val", RotateShift,
2370       [(set R32C:$rT, (srl R32C:$rA, (i32 uimm7:$val)))]>;
2371
2372 def : Pat<(srl R32C:$rA, (i16 imm:$val)),
2373           (ROTMIr32 R32C:$rA, uimm7:$val)>;
2374
2375 def : Pat<(srl R32C:$rA, (i8 imm:$val)),
2376           (ROTMIr32 R32C:$rA, uimm7:$val)>;
2377
2378 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2379 // ROTQMBYvec: This is a vector form merely so that when used in an
2380 // instruction pattern, type checking will succeed. This instruction assumes
2381 // that the user knew to negate $rB.
2382 //
2383 // Using the SPUrotquad_rz_bytes target-specific DAG node, the patterns
2384 // ensure that $rB is negated.
2385 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2386
2387 class ROTQMBYInst<dag OOL, dag IOL, list<dag> pattern>:
2388     RRForm<0b10111011100, OOL, IOL, "rotqmby\t$rT, $rA, $rB",
2389            RotateShift, pattern>;
2390
2391 class ROTQMBYVecInst<ValueType vectype>:
2392     ROTQMBYInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2393                 [/* no pattern, $rB must be negated */]>;
2394
2395 class ROTQMBYRegInst<RegisterClass rclass>:
2396     ROTQMBYInst<(outs rclass:$rT), (ins rclass:$rA, R32C:$rB),
2397                 [(set rclass:$rT,
2398                       (SPUrotquad_rz_bytes rclass:$rA, R32C:$rB))]>;
2399
2400 multiclass RotateQuadBytes
2401 {
2402   def v16i8: ROTQMBYVecInst<v16i8>;
2403   def v8i16: ROTQMBYVecInst<v8i16>;
2404   def v4i32: ROTQMBYVecInst<v4i32>;
2405   def v2i64: ROTQMBYVecInst<v2i64>;
2406
2407   def r128: ROTQMBYRegInst<GPRC>;
2408   def r64:  ROTQMBYRegInst<R64C>;
2409 }
2410
2411 defm ROTQMBY : RotateQuadBytes;
2412
2413 def : Pat<(SPUrotquad_rz_bytes (v16i8 VECREG:$rA), R32C:$rB),
2414           (ROTQMBYv16i8 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2415 def : Pat<(SPUrotquad_rz_bytes (v8i16 VECREG:$rA), R32C:$rB),
2416           (ROTQMBYv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2417 def : Pat<(SPUrotquad_rz_bytes (v4i32 VECREG:$rA), R32C:$rB),
2418           (ROTQMBYv4i32 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2419 def : Pat<(SPUrotquad_rz_bytes (v2i64 VECREG:$rA), R32C:$rB),
2420           (ROTQMBYv2i64 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2421 def : Pat<(SPUrotquad_rz_bytes GPRC:$rA, R32C:$rB),
2422           (ROTQMBYr128 GPRC:$rA, (SFIr32 R32C:$rB, 0))>;
2423 def : Pat<(SPUrotquad_rz_bytes R64C:$rA, R32C:$rB),
2424           (ROTQMBYr64 R64C:$rA, (SFIr32 R32C:$rB, 0))>;
2425
2426 class ROTQMBYIInst<dag OOL, dag IOL, list<dag> pattern>:
2427     RI7Form<0b10111111100, OOL, IOL, "rotqmbyi\t$rT, $rA, $val",
2428             RotateShift, pattern>;
2429
2430 class ROTQMBYIVecInst<ValueType vectype>:
2431     ROTQMBYIInst<(outs VECREG:$rT), (ins VECREG:$rA, rotNeg7imm:$val),
2432                  [(set (vectype VECREG:$rT),
2433                        (SPUrotquad_rz_bytes (vectype VECREG:$rA), (i32 uimm7:$val)))]>;
2434
2435 class ROTQMBYIRegInst<RegisterClass rclass, Operand optype, ValueType inttype, PatLeaf pred>:
2436     ROTQMBYIInst<(outs rclass:$rT), (ins rclass:$rA, optype:$val),
2437                  [(set rclass:$rT,
2438                        (SPUrotquad_rz_bytes rclass:$rA, (inttype pred:$val)))]>;
2439
2440 multiclass RotateQuadBytesImm
2441 {
2442   def v16i8: ROTQMBYIVecInst<v16i8>;
2443   def v8i16: ROTQMBYIVecInst<v8i16>;
2444   def v4i32: ROTQMBYIVecInst<v4i32>;
2445   def v2i64: ROTQMBYIVecInst<v2i64>;
2446
2447   def r128:  ROTQMBYIRegInst<GPRC, rotNeg7imm, i32, uimm7>;
2448   def r64:   ROTQMBYIRegInst<R64C, rotNeg7imm, i32, uimm7>;
2449 }
2450
2451 defm ROTQMBYI : RotateQuadBytesImm;
2452
2453 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2454 // Rotate right and mask by bit count
2455 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2456
2457 class ROTQMBYBIInst<dag OOL, dag IOL, list<dag> pattern>:
2458     RRForm<0b10110011100, OOL, IOL, "rotqmbybi\t$rT, $rA, $rB",
2459            RotateShift, pattern>;
2460
2461 class ROTQMBYBIVecInst<ValueType vectype>:
2462     ROTQMBYBIInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2463                   [/* no pattern, intrinsic? */]>;
2464
2465 multiclass RotateMaskQuadByBitCount
2466 {
2467   def v16i8: ROTQMBYBIVecInst<v16i8>;
2468   def v8i16: ROTQMBYBIVecInst<v8i16>;
2469   def v4i32: ROTQMBYBIVecInst<v4i32>;
2470   def v2i64: ROTQMBYBIVecInst<v2i64>;
2471 }
2472
2473 defm ROTQMBYBI: RotateMaskQuadByBitCount;
2474
2475 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2476 // Rotate quad and mask by bits
2477 // Note that the rotate amount has to be negated
2478 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2479
2480 class ROTQMBIInst<dag OOL, dag IOL, list<dag> pattern>:
2481     RRForm<0b10011011100, OOL, IOL, "rotqmbi\t$rT, $rA, $rB",
2482            RotateShift, pattern>;
2483
2484 class ROTQMBIVecInst<ValueType vectype>:
2485     ROTQMBIInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2486                 [/* no pattern */]>;
2487
2488 class ROTQMBIRegInst<RegisterClass rclass>:
2489     ROTQMBIInst<(outs rclass:$rT), (ins rclass:$rA, R32C:$rB),
2490                 [/* no pattern */]>;
2491
2492 multiclass RotateMaskQuadByBits
2493 {
2494   def v16i8: ROTQMBIVecInst<v16i8>;
2495   def v8i16: ROTQMBIVecInst<v8i16>;
2496   def v4i32: ROTQMBIVecInst<v4i32>;
2497   def v2i64: ROTQMBIVecInst<v2i64>;
2498
2499   def r128:  ROTQMBIRegInst<GPRC>;
2500   def r64:   ROTQMBIRegInst<R64C>;
2501 }
2502
2503 defm ROTQMBI: RotateMaskQuadByBits;
2504
2505 def : Pat<(SPUrotquad_rz_bits (v16i8 VECREG:$rA), R32C:$rB),
2506           (ROTQMBIv16i8 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2507 def : Pat<(SPUrotquad_rz_bits (v8i16 VECREG:$rA), R32C:$rB),
2508           (ROTQMBIv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2509 def : Pat<(SPUrotquad_rz_bits (v4i32 VECREG:$rA), R32C:$rB),
2510           (ROTQMBIv4i32 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2511 def : Pat<(SPUrotquad_rz_bits (v2i64 VECREG:$rA), R32C:$rB),
2512           (ROTQMBIv2i64 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2513 def : Pat<(SPUrotquad_rz_bits GPRC:$rA, R32C:$rB),
2514           (ROTQMBIr128 GPRC:$rA, (SFIr32 R32C:$rB, 0))>;
2515 def : Pat<(SPUrotquad_rz_bits R64C:$rA, R32C:$rB),
2516           (ROTQMBIr64 R64C:$rA, (SFIr32 R32C:$rB, 0))>;
2517
2518 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2519 // Rotate quad and mask by bits, immediate
2520 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2521
2522 class ROTQMBIIInst<dag OOL, dag IOL, list<dag> pattern>:
2523     RI7Form<0b10011111100, OOL, IOL, "rotqmbii\t$rT, $rA, $val",
2524             RotateShift, pattern>;
2525
2526 class ROTQMBIIVecInst<ValueType vectype>:
2527    ROTQMBIIInst<(outs VECREG:$rT), (ins VECREG:$rA, rotNeg7imm:$val),
2528                  [(set (vectype VECREG:$rT),
2529                        (SPUrotquad_rz_bits (vectype VECREG:$rA), (i32 uimm7:$val)))]>;
2530
2531 class ROTQMBIIRegInst<RegisterClass rclass>:
2532    ROTQMBIIInst<(outs rclass:$rT), (ins rclass:$rA, rotNeg7imm:$val),
2533                  [(set rclass:$rT,
2534                        (SPUrotquad_rz_bits rclass:$rA, (i32 uimm7:$val)))]>;
2535
2536 multiclass RotateMaskQuadByBitsImm
2537 {
2538   def v16i8: ROTQMBIIVecInst<v16i8>;
2539   def v8i16: ROTQMBIIVecInst<v8i16>;
2540   def v4i32: ROTQMBIIVecInst<v4i32>;
2541   def v2i64: ROTQMBIIVecInst<v2i64>;
2542
2543   def r128:  ROTQMBIIRegInst<GPRC>;
2544   def r64:   ROTQMBIIRegInst<R64C>;
2545 }
2546
2547 defm ROTQMBII: RotateMaskQuadByBitsImm;
2548
2549 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2550 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2551
2552 def ROTMAHv8i16:
2553     RRForm<0b01111010000, (outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2554       "rotmah\t$rT, $rA, $rB", RotateShift,
2555       [/* see patterns below - $rB must be negated */]>;
2556
2557 def : Pat<(SPUvec_sra VECREG:$rA, R32C:$rB),
2558           (ROTMAHv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2559
2560 def : Pat<(SPUvec_sra VECREG:$rA, R16C:$rB),
2561           (ROTMAHv8i16 VECREG:$rA,
2562                        (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2563
2564 def : Pat<(SPUvec_sra VECREG:$rA, R8C:$rB),
2565           (ROTMAHv8i16 VECREG:$rA,
2566                        (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2567
2568 def ROTMAHr16:
2569     RRForm<0b01111010000, (outs R16C:$rT), (ins R16C:$rA, R32C:$rB),
2570       "rotmah\t$rT, $rA, $rB", RotateShift,
2571       [/* see patterns below - $rB must be negated */]>;
2572
2573 def : Pat<(sra R16C:$rA, R32C:$rB),
2574           (ROTMAHr16 R16C:$rA, (SFIr32 R32C:$rB, 0))>;
2575
2576 def : Pat<(sra R16C:$rA, R16C:$rB),
2577           (ROTMAHr16 R16C:$rA,
2578                      (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2579
2580 def : Pat<(sra R16C:$rA, R8C:$rB),
2581           (ROTMAHr16 R16C:$rA,
2582                      (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2583
2584 def ROTMAHIv8i16:
2585     RRForm<0b01111110000, (outs VECREG:$rT), (ins VECREG:$rA, rothNeg7imm:$val),
2586       "rotmahi\t$rT, $rA, $val", RotateShift,
2587       [(set (v8i16 VECREG:$rT),
2588             (SPUvec_sra (v8i16 VECREG:$rA), (i32 uimm7:$val)))]>;
2589
2590 def : Pat<(SPUvec_sra (v8i16 VECREG:$rA), (i16 uimm7:$val)),
2591           (ROTMAHIv8i16 (v8i16 VECREG:$rA), (i32 uimm7:$val))>;
2592
2593 def : Pat<(SPUvec_sra (v8i16 VECREG:$rA), (i8 uimm7:$val)),
2594           (ROTMAHIv8i16 (v8i16 VECREG:$rA), (i32 uimm7:$val))>;
2595
2596 def ROTMAHIr16:
2597     RRForm<0b01111110000, (outs R16C:$rT), (ins R16C:$rA, rothNeg7imm_i16:$val),
2598       "rotmahi\t$rT, $rA, $val", RotateShift,
2599       [(set R16C:$rT, (sra R16C:$rA, (i16 uimm7:$val)))]>;
2600
2601 def : Pat<(sra R16C:$rA, (i32 imm:$val)),
2602           (ROTMAHIr16 R16C:$rA, uimm7:$val)>;
2603
2604 def : Pat<(sra R16C:$rA, (i8 imm:$val)),
2605           (ROTMAHIr16 R16C:$rA, uimm7:$val)>;
2606
2607 def ROTMAv4i32:
2608     RRForm<0b01011010000, (outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2609       "rotma\t$rT, $rA, $rB", RotateShift,
2610       [/* see patterns below - $rB must be negated */]>;
2611
2612 def : Pat<(SPUvec_sra VECREG:$rA, R32C:$rB),
2613           (ROTMAv4i32 (v4i32 VECREG:$rA), (SFIr32 R32C:$rB, 0))>;
2614
2615 def : Pat<(SPUvec_sra VECREG:$rA, R16C:$rB),
2616           (ROTMAv4i32 (v4i32 VECREG:$rA),
2617                       (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2618
2619 def : Pat<(SPUvec_sra VECREG:$rA, R8C:$rB),
2620           (ROTMAv4i32 (v4i32 VECREG:$rA),
2621                       (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2622
2623 def ROTMAr32:
2624     RRForm<0b01011010000, (outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
2625       "rotma\t$rT, $rA, $rB", RotateShift,
2626       [/* see patterns below - $rB must be negated */]>;
2627
2628 def : Pat<(sra R32C:$rA, R32C:$rB),
2629           (ROTMAr32 R32C:$rA, (SFIr32 R32C:$rB, 0))>;
2630
2631 def : Pat<(sra R32C:$rA, R16C:$rB),
2632           (ROTMAr32 R32C:$rA,
2633                     (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2634
2635 def : Pat<(sra R32C:$rA, R8C:$rB),
2636           (ROTMAr32 R32C:$rA,
2637                     (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2638
2639 class ROTMAIInst<dag OOL, dag IOL, list<dag> pattern>:
2640     RRForm<0b01011110000, OOL, IOL,
2641       "rotmai\t$rT, $rA, $val",
2642       RotateShift, pattern>;
2643
2644 class ROTMAIVecInst<ValueType vectype, Operand intop, ValueType inttype>:
2645     ROTMAIInst<(outs VECREG:$rT), (ins VECREG:$rA, intop:$val),
2646       [(set (vectype VECREG:$rT),
2647             (SPUvec_sra VECREG:$rA, (inttype uimm7:$val)))]>;
2648
2649 class ROTMAIRegInst<RegisterClass rclass, Operand intop, ValueType inttype>:
2650     ROTMAIInst<(outs rclass:$rT), (ins rclass:$rA, intop:$val),
2651       [(set rclass:$rT, (sra rclass:$rA, (inttype uimm7:$val)))]>;
2652
2653 multiclass RotateMaskAlgebraicImm {
2654   def v2i64_i32 : ROTMAIVecInst<v2i64, rotNeg7imm, i32>;
2655   def v4i32_i32 : ROTMAIVecInst<v4i32, rotNeg7imm, i32>;
2656   def r64_i32 : ROTMAIRegInst<R64C, rotNeg7imm, i32>;
2657   def r32_i32 : ROTMAIRegInst<R32C, rotNeg7imm, i32>;
2658 }
2659
2660 defm ROTMAI : RotateMaskAlgebraicImm;
2661
2662 //===----------------------------------------------------------------------===//
2663 // Branch and conditionals:
2664 //===----------------------------------------------------------------------===//
2665
2666 let isTerminator = 1, isBarrier = 1 in {
2667   // Halt If Equal (r32 preferred slot only, no vector form)
2668   def HEQr32:
2669     RRForm_3<0b00011011110, (outs), (ins R32C:$rA, R32C:$rB),
2670       "heq\t$rA, $rB", BranchResolv,
2671       [/* no pattern to match */]>;
2672
2673   def HEQIr32 :
2674     RI10Form_2<0b11111110, (outs), (ins R32C:$rA, s10imm:$val),
2675       "heqi\t$rA, $val", BranchResolv,
2676       [/* no pattern to match */]>;
2677
2678   // HGT/HGTI: These instructions use signed arithmetic for the comparison,
2679   // contrasting with HLGT/HLGTI, which use unsigned comparison:
2680   def HGTr32:
2681     RRForm_3<0b00011010010, (outs), (ins R32C:$rA, R32C:$rB),
2682       "hgt\t$rA, $rB", BranchResolv,
2683       [/* no pattern to match */]>;
2684
2685   def HGTIr32: 
2686     RI10Form_2<0b11110010, (outs), (ins R32C:$rA, s10imm:$val),
2687       "hgti\t$rA, $val", BranchResolv,
2688       [/* no pattern to match */]>;
2689
2690   def HLGTr32:
2691     RRForm_3<0b00011011010, (outs), (ins R32C:$rA, R32C:$rB),
2692       "hlgt\t$rA, $rB", BranchResolv,
2693       [/* no pattern to match */]>;
2694
2695   def HLGTIr32:
2696     RI10Form_2<0b11111010, (outs), (ins R32C:$rA, s10imm:$val),
2697       "hlgti\t$rA, $val", BranchResolv,
2698       [/* no pattern to match */]>;
2699 }
2700
2701 //------------------------------------------------------------------------
2702 // Comparison operators:
2703 //------------------------------------------------------------------------
2704
2705 class CEQBInst<dag OOL, dag IOL, list<dag> pattern> :
2706   RRForm<0b00001011110, OOL, IOL, "ceqb\t$rT, $rA, $rB",
2707          ByteOp, pattern>;
2708
2709 multiclass CmpEqualByte
2710 {
2711   def v16i8 :
2712     CEQBInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2713       [(set (v16i8 VECREG:$rT), (seteq (v8i16 VECREG:$rA),
2714                                        (v8i16 VECREG:$rB)))]>;
2715
2716   def r8 :
2717     CEQBInst<(outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
2718              [(set R8C:$rT, (seteq R8C:$rA, R8C:$rB))]>;
2719 }
2720
2721 class CEQBIInst<dag OOL, dag IOL, list<dag> pattern> :
2722   RI10Form<0b01111110, OOL, IOL, "ceqbi\t$rT, $rA, $val",
2723            ByteOp, pattern>;
2724
2725 multiclass CmpEqualByteImm
2726 {
2727   def v16i8 :
2728     CEQBIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm_i8:$val),
2729               [(set (v16i8 VECREG:$rT), (seteq (v16i8 VECREG:$rA),
2730                                                v16i8SExt8Imm:$val))]>;
2731   def r8:
2732     CEQBIInst<(outs R8C:$rT), (ins R8C:$rA, s10imm_i8:$val),
2733              [(set R8C:$rT, (seteq R8C:$rA, immSExt8:$val))]>;
2734 }
2735
2736 class CEQHInst<dag OOL, dag IOL, list<dag> pattern> :
2737   RRForm<0b00010011110, OOL, IOL, "ceqh\t$rT, $rA, $rB",
2738          ByteOp, pattern>;
2739
2740 multiclass CmpEqualHalfword
2741 {
2742   def v8i16 : CEQHInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2743                        [(set (v8i16 VECREG:$rT), (seteq (v8i16 VECREG:$rA),
2744                                                         (v8i16 VECREG:$rB)))]>;
2745
2746   def r16 : CEQHInst<(outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
2747                      [(set R16C:$rT, (seteq R16C:$rA, R16C:$rB))]>;
2748 }
2749
2750 class CEQHIInst<dag OOL, dag IOL, list<dag> pattern> :
2751   RI10Form<0b10111110, OOL, IOL, "ceqhi\t$rT, $rA, $val",
2752            ByteOp, pattern>;
2753
2754 multiclass CmpEqualHalfwordImm
2755 {
2756   def v8i16 : CEQHIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
2757                         [(set (v8i16 VECREG:$rT),
2758                               (seteq (v8i16 VECREG:$rA),
2759                                      (v8i16 v8i16SExt10Imm:$val)))]>;
2760   def r16 : CEQHIInst<(outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
2761                       [(set R16C:$rT, (seteq R16C:$rA, i16ImmSExt10:$val))]>;
2762 }
2763
2764 class CEQInst<dag OOL, dag IOL, list<dag> pattern> :
2765   RRForm<0b00000011110, OOL, IOL, "ceq\t$rT, $rA, $rB",
2766          ByteOp, pattern>;
2767
2768 multiclass CmpEqualWord
2769 {
2770   def v4i32 : CEQInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2771                       [(set (v4i32 VECREG:$rT),
2772                             (seteq (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
2773
2774   def r32 : CEQInst<(outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
2775                     [(set R32C:$rT, (seteq R32C:$rA, R32C:$rB))]>;
2776 }
2777
2778 class CEQIInst<dag OOL, dag IOL, list<dag> pattern> :
2779   RI10Form<0b00111110, OOL, IOL, "ceqi\t$rT, $rA, $val",
2780            ByteOp, pattern>;
2781
2782 multiclass CmpEqualWordImm
2783 {
2784   def v4i32 : CEQIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
2785                        [(set (v4i32 VECREG:$rT),
2786                              (seteq (v4i32 VECREG:$rA),
2787                                     (v4i32 v4i32SExt16Imm:$val)))]>;
2788
2789   def r32: CEQIInst<(outs R32C:$rT), (ins R32C:$rA, s10imm_i32:$val),
2790                     [(set R32C:$rT, (seteq R32C:$rA, i32ImmSExt10:$val))]>;
2791 }
2792
2793 class CGTBInst<dag OOL, dag IOL, list<dag> pattern> :
2794   RRForm<0b00001010010, OOL, IOL, "cgtb\t$rT, $rA, $rB",
2795          ByteOp, pattern>;
2796
2797 multiclass CmpGtrByte
2798 {
2799   def v16i8 :
2800     CGTBInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2801       [(set (v16i8 VECREG:$rT), (setgt (v8i16 VECREG:$rA),
2802                                        (v8i16 VECREG:$rB)))]>;
2803
2804   def r8 :
2805     CGTBInst<(outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
2806              [(set R8C:$rT, (setgt R8C:$rA, R8C:$rB))]>;
2807 }
2808
2809 class CGTBIInst<dag OOL, dag IOL, list<dag> pattern> :
2810   RI10Form<0b01110010, OOL, IOL, "cgtbi\t$rT, $rA, $val",
2811            ByteOp, pattern>;
2812
2813 multiclass CmpGtrByteImm
2814 {
2815   def v16i8 :
2816     CGTBIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm_i8:$val),
2817               [(set (v16i8 VECREG:$rT), (setgt (v16i8 VECREG:$rA),
2818                                                v16i8SExt8Imm:$val))]>;
2819   def r8:
2820     CGTBIInst<(outs R8C:$rT), (ins R8C:$rA, s10imm_i8:$val),
2821               [(set R8C:$rT, (setgt R8C:$rA, immSExt8:$val))]>;
2822 }
2823
2824 class CGTHInst<dag OOL, dag IOL, list<dag> pattern> :
2825   RRForm<0b00010010010, OOL, IOL, "cgth\t$rT, $rA, $rB",
2826          ByteOp, pattern>;
2827
2828 multiclass CmpGtrHalfword
2829 {
2830   def v8i16 : CGTHInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2831                        [(set (v8i16 VECREG:$rT), (setgt (v8i16 VECREG:$rA),
2832                                                         (v8i16 VECREG:$rB)))]>;
2833
2834   def r16 : CGTHInst<(outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
2835                      [(set R16C:$rT, (setgt R16C:$rA, R16C:$rB))]>;
2836 }
2837
2838 class CGTHIInst<dag OOL, dag IOL, list<dag> pattern> :
2839   RI10Form<0b10110010, OOL, IOL, "cgthi\t$rT, $rA, $val",
2840            ByteOp, pattern>;
2841
2842 multiclass CmpGtrHalfwordImm
2843 {
2844   def v8i16 : CGTHIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
2845                         [(set (v8i16 VECREG:$rT),
2846                               (setgt (v8i16 VECREG:$rA),
2847                                      (v8i16 v8i16SExt10Imm:$val)))]>;
2848   def r16 : CGTHIInst<(outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
2849                       [(set R16C:$rT, (setgt R16C:$rA, i16ImmSExt10:$val))]>;
2850 }
2851
2852 class CGTInst<dag OOL, dag IOL, list<dag> pattern> :
2853   RRForm<0b00000010010, OOL, IOL, "cgt\t$rT, $rA, $rB",
2854          ByteOp, pattern>;
2855
2856 multiclass CmpGtrWord
2857 {
2858   def v4i32 : CGTInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2859                       [(set (v4i32 VECREG:$rT),
2860                             (setgt (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
2861
2862   def r32 : CGTInst<(outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
2863                     [(set R32C:$rT, (setgt R32C:$rA, R32C:$rB))]>;
2864 }
2865
2866 class CGTIInst<dag OOL, dag IOL, list<dag> pattern> :
2867   RI10Form<0b00110010, OOL, IOL, "cgti\t$rT, $rA, $val",
2868            ByteOp, pattern>;
2869
2870 multiclass CmpGtrWordImm
2871 {
2872   def v4i32 : CGTIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
2873                        [(set (v4i32 VECREG:$rT),
2874                              (setgt (v4i32 VECREG:$rA),
2875                                     (v4i32 v4i32SExt16Imm:$val)))]>;
2876
2877   def r32: CGTIInst<(outs R32C:$rT), (ins R32C:$rA, s10imm_i32:$val),
2878                     [(set R32C:$rT, (setgt R32C:$rA, i32ImmSExt10:$val))]>;
2879 }
2880
2881 class CLGTBInst<dag OOL, dag IOL, list<dag> pattern> :
2882   RRForm<0b00001011010, OOL, IOL, "clgtb\t$rT, $rA, $rB",
2883          ByteOp, pattern>;
2884
2885 multiclass CmpLGtrByte
2886 {
2887   def v16i8 :
2888     CLGTBInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2889       [(set (v16i8 VECREG:$rT), (setugt (v8i16 VECREG:$rA),
2890                                        (v8i16 VECREG:$rB)))]>;
2891
2892   def r8 :
2893     CLGTBInst<(outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
2894              [(set R8C:$rT, (setugt R8C:$rA, R8C:$rB))]>;
2895 }
2896
2897 class CLGTBIInst<dag OOL, dag IOL, list<dag> pattern> :
2898   RI10Form<0b01111010, OOL, IOL, "clgtbi\t$rT, $rA, $val",
2899            ByteOp, pattern>;
2900
2901 multiclass CmpLGtrByteImm
2902 {
2903   def v16i8 :
2904     CLGTBIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm_i8:$val),
2905               [(set (v16i8 VECREG:$rT), (setugt (v16i8 VECREG:$rA),
2906                                                v16i8SExt8Imm:$val))]>;
2907   def r8:
2908     CLGTBIInst<(outs R8C:$rT), (ins R8C:$rA, s10imm_i8:$val),
2909              [(set R8C:$rT, (setugt R8C:$rA, immSExt8:$val))]>;
2910 }
2911
2912 class CLGTHInst<dag OOL, dag IOL, list<dag> pattern> :
2913   RRForm<0b00010011010, OOL, IOL, "clgth\t$rT, $rA, $rB",
2914          ByteOp, pattern>;
2915
2916 multiclass CmpLGtrHalfword
2917 {
2918   def v8i16 : CLGTHInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2919                        [(set (v8i16 VECREG:$rT), (setugt (v8i16 VECREG:$rA),
2920                                                         (v8i16 VECREG:$rB)))]>;
2921
2922   def r16 : CLGTHInst<(outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
2923                      [(set R16C:$rT, (setugt R16C:$rA, R16C:$rB))]>;
2924 }
2925
2926 class CLGTHIInst<dag OOL, dag IOL, list<dag> pattern> :
2927   RI10Form<0b10111010, OOL, IOL, "clgthi\t$rT, $rA, $val",
2928            ByteOp, pattern>;
2929
2930 multiclass CmpLGtrHalfwordImm
2931 {
2932   def v8i16 : CLGTHIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
2933                          [(set (v8i16 VECREG:$rT),
2934                                (setugt (v8i16 VECREG:$rA),
2935                                        (v8i16 v8i16SExt10Imm:$val)))]>;
2936   def r16 : CLGTHIInst<(outs R16C:$rT), (ins R16C:$rA, s10imm:$val),
2937                        [(set R16C:$rT, (setugt R16C:$rA, i16ImmSExt10:$val))]>;
2938 }
2939
2940 class CLGTInst<dag OOL, dag IOL, list<dag> pattern> :
2941   RRForm<0b00000011010, OOL, IOL, "clgt\t$rT, $rA, $rB",
2942          ByteOp, pattern>;
2943
2944 multiclass CmpLGtrWord
2945 {
2946   def v4i32 : CLGTInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2947                       [(set (v4i32 VECREG:$rT),
2948                             (setugt (v4i32 VECREG:$rA), (v4i32 VECREG:$rB)))]>;
2949
2950   def r32 : CLGTInst<(outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
2951                      [(set R32C:$rT, (setugt R32C:$rA, R32C:$rB))]>;
2952 }
2953
2954 class CLGTIInst<dag OOL, dag IOL, list<dag> pattern> :
2955   RI10Form<0b00111010, OOL, IOL, "clgti\t$rT, $rA, $val",
2956            ByteOp, pattern>;
2957
2958 multiclass CmpLGtrWordImm
2959 {
2960   def v4i32 : CLGTIInst<(outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
2961                        [(set (v4i32 VECREG:$rT),
2962                              (setugt (v4i32 VECREG:$rA),
2963                                     (v4i32 v4i32SExt16Imm:$val)))]>;
2964
2965   def r32: CLGTIInst<(outs R32C:$rT), (ins R32C:$rA, s10imm_i32:$val),
2966                      [(set R32C:$rT, (setugt R32C:$rA, i32ImmSExt10:$val))]>;
2967 }
2968
2969 defm CEQB   : CmpEqualByte;
2970 defm CEQBI  : CmpEqualByteImm;
2971 defm CEQH   : CmpEqualHalfword;
2972 defm CEQHI  : CmpEqualHalfwordImm;
2973 defm CEQ    : CmpEqualWord;
2974 defm CEQI   : CmpEqualWordImm;
2975 defm CGTB   : CmpGtrByte;
2976 defm CGTBI  : CmpGtrByteImm;
2977 defm CGTH   : CmpGtrHalfword;
2978 defm CGTHI  : CmpGtrHalfwordImm;
2979 defm CGT    : CmpGtrWord;
2980 defm CGTI   : CmpGtrWordImm;
2981 defm CLGTB  : CmpLGtrByte;
2982 defm CLGTBI : CmpLGtrByteImm;
2983 defm CLGTH  : CmpLGtrHalfword;
2984 defm CLGTHI : CmpLGtrHalfwordImm;
2985 defm CLGT   : CmpLGtrWord;
2986 defm CLGTI  : CmpLGtrWordImm;
2987
2988 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2989 // For SETCC primitives not supported above (setlt, setle, setge, etc.)
2990 // define a pattern to generate the right code, as a binary operator
2991 // (in a manner of speaking.)
2992 //
2993 // N.B.: This only matches the setcc set of conditionals. Special pattern
2994 // matching is used for select conditionals.
2995 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2996
2997 class SETCCNegCondReg<PatFrag cond, RegisterClass rclass, ValueType inttype,
2998                       SPUInstr xorinst, SPUInstr cmpare>:
2999   Pat<(cond rclass:$rA, rclass:$rB),
3000       (xorinst (cmpare rclass:$rA, rclass:$rB), (inttype -1))>;
3001
3002 class SETCCNegCondImm<PatFrag cond, RegisterClass rclass, ValueType inttype,
3003                       PatLeaf immpred, SPUInstr xorinst, SPUInstr cmpare>:
3004   Pat<(cond rclass:$rA, (inttype immpred:$imm)),
3005       (xorinst (cmpare rclass:$rA, (inttype immpred:$imm)), (inttype -1))>;
3006
3007 def : SETCCNegCondReg<setne, R8C, i8, XORBIr8, CEQBr8>;
3008 def : SETCCNegCondImm<setne, R8C, i8, immSExt8, XORBIr8, CEQBIr8>;
3009
3010 def : SETCCNegCondReg<setne, R16C, i16, XORHIr16, CEQHr16>;
3011 def : SETCCNegCondImm<setne, R16C, i16, i16ImmSExt10, XORHIr16, CEQHIr16>;
3012
3013 def : SETCCNegCondReg<setne, R32C, i32, XORIr32, CEQr32>;
3014 def : SETCCNegCondImm<setne, R32C, i32, i32ImmSExt10, XORIr32, CEQIr32>;
3015
3016 class SETCCBinOpReg<PatFrag cond, RegisterClass rclass,
3017                     SPUInstr binop, SPUInstr cmpOp1, SPUInstr cmpOp2>:
3018     Pat<(cond rclass:$rA, rclass:$rB),
3019         (binop (cmpOp1 rclass:$rA, rclass:$rB),
3020                (cmpOp2 rclass:$rA, rclass:$rB))>;
3021
3022 class SETCCBinOpImm<PatFrag cond, RegisterClass rclass, PatLeaf immpred,
3023                     ValueType immtype,
3024                     SPUInstr binop, SPUInstr cmpOp1, SPUInstr cmpOp2>:
3025     Pat<(cond rclass:$rA, (immtype immpred:$imm)),
3026         (binop (cmpOp1 rclass:$rA, (immtype immpred:$imm)),
3027                (cmpOp2 rclass:$rA, (immtype immpred:$imm)))>;
3028
3029 def : SETCCBinOpReg<setge, R8C, ORr8, CGTBr8, CEQBr8>;
3030 def : SETCCBinOpImm<setge, R8C, immSExt8, i8, ORr8, CGTBIr8, CEQBIr8>;
3031 def : SETCCBinOpReg<setlt, R8C, NORr8, CGTBr8, CEQBr8>;
3032 def : SETCCBinOpImm<setlt, R8C, immSExt8, i8, NORr8, CGTBIr8, CEQBIr8>;
3033 def : Pat<(setle R8C:$rA, R8C:$rB),
3034           (XORBIr8 (CGTBr8 R8C:$rA, R8C:$rB), 0xff)>;
3035 def :  Pat<(setle R8C:$rA, immU8:$imm),
3036            (XORBIr8 (CGTBIr8 R8C:$rA, immU8:$imm), 0xff)>;
3037
3038 def : SETCCBinOpReg<setge, R16C, ORr16, CGTHr16, CEQHr16>;
3039 def : SETCCBinOpImm<setge, R16C, i16ImmSExt10, i16,
3040                     ORr16, CGTHIr16, CEQHIr16>;
3041 def : SETCCBinOpReg<setlt, R16C, NORr16, CGTHr16, CEQHr16>;
3042 def : SETCCBinOpImm<setlt, R16C, i16ImmSExt10, i16, NORr16, CGTHIr16, CEQHIr16>;
3043 def : Pat<(setle R16C:$rA, R16C:$rB),
3044           (XORHIr16 (CGTHr16 R16C:$rA, R16C:$rB), 0xffff)>;
3045 def : Pat<(setle R16C:$rA, i16ImmSExt10:$imm),
3046           (XORHIr16 (CGTHIr16 R16C:$rA, i16ImmSExt10:$imm), 0xffff)>;
3047
3048 def : SETCCBinOpReg<setge, R32C, ORr32, CGTr32, CEQr32>;
3049 def : SETCCBinOpImm<setge, R32C, i32ImmSExt10, i32,
3050                     ORr32, CGTIr32, CEQIr32>;
3051 def : SETCCBinOpReg<setlt, R32C, NORr32, CGTr32, CEQr32>;
3052 def : SETCCBinOpImm<setlt, R32C, i32ImmSExt10, i32, NORr32, CGTIr32, CEQIr32>;
3053 def : Pat<(setle R32C:$rA, R32C:$rB),
3054           (XORIr32 (CGTr32 R32C:$rA, R32C:$rB), 0xffffffff)>;
3055 def : Pat<(setle R32C:$rA, i32ImmSExt10:$imm),
3056           (XORIr32 (CGTIr32 R32C:$rA, i32ImmSExt10:$imm), 0xffffffff)>;
3057
3058 def : SETCCBinOpReg<setuge, R8C, ORr8, CLGTBr8, CEQBr8>;
3059 def : SETCCBinOpImm<setuge, R8C, immSExt8, i8, ORr8, CLGTBIr8, CEQBIr8>;
3060 def : SETCCBinOpReg<setult, R8C, NORr8, CLGTBr8, CEQBr8>;
3061 def : SETCCBinOpImm<setult, R8C, immSExt8, i8, NORr8, CLGTBIr8, CEQBIr8>;
3062 def : Pat<(setule R8C:$rA, R8C:$rB),
3063           (XORBIr8 (CLGTBr8 R8C:$rA, R8C:$rB), 0xff)>;
3064 def :  Pat<(setule R8C:$rA, immU8:$imm),
3065            (XORBIr8 (CLGTBIr8 R8C:$rA, immU8:$imm), 0xff)>;
3066
3067 def : SETCCBinOpReg<setuge, R16C, ORr16, CLGTHr16, CEQHr16>;
3068 def : SETCCBinOpImm<setuge, R16C, i16ImmSExt10, i16,
3069                     ORr16, CLGTHIr16, CEQHIr16>;
3070 def : SETCCBinOpReg<setult, R16C, NORr16, CLGTHr16, CEQHr16>;
3071 def : SETCCBinOpImm<setult, R16C, i16ImmSExt10, i16, NORr16,
3072                     CLGTHIr16, CEQHIr16>;
3073 def : Pat<(setule R16C:$rA, R16C:$rB),
3074           (XORHIr16 (CLGTHr16 R16C:$rA, R16C:$rB), 0xffff)>;
3075 def :  Pat<(setule R16C:$rA, i16ImmSExt10:$imm),
3076            (XORHIr16 (CLGTHIr16 R16C:$rA, i16ImmSExt10:$imm), 0xffff)>;
3077
3078 def : SETCCBinOpReg<setuge, R32C, ORr32, CLGTr32, CEQr32>;
3079 def : SETCCBinOpImm<setuge, R32C, i32ImmSExt10, i32,
3080                     ORr32, CLGTIr32, CEQIr32>;
3081 def : SETCCBinOpReg<setult, R32C, NORr32, CLGTr32, CEQr32>;
3082 def : SETCCBinOpImm<setult, R32C, i32ImmSExt10, i32, NORr32, CLGTIr32, CEQIr32>;
3083 def : Pat<(setule R32C:$rA, R32C:$rB),
3084           (XORIr32 (CLGTr32 R32C:$rA, R32C:$rB), 0xffffffff)>;
3085 def : Pat<(setule R32C:$rA, i32ImmSExt10:$imm),
3086           (XORIr32 (CLGTIr32 R32C:$rA, i32ImmSExt10:$imm), 0xffffffff)>;
3087
3088 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
3089 // select conditional patterns:
3090 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
3091
3092 class SELECTNegCondReg<PatFrag cond, RegisterClass rclass, ValueType inttype,
3093                        SPUInstr selinstr, SPUInstr cmpare>:
3094   Pat<(select (inttype (cond rclass:$rA, rclass:$rB)),
3095               rclass:$rTrue, rclass:$rFalse),
3096       (selinstr rclass:$rTrue, rclass:$rFalse,
3097                 (cmpare rclass:$rA, rclass:$rB))>;
3098
3099 class SELECTNegCondImm<PatFrag cond, RegisterClass rclass, ValueType inttype,
3100                        PatLeaf immpred, SPUInstr selinstr, SPUInstr cmpare>:
3101   Pat<(select (inttype (cond rclass:$rA, immpred:$imm)),
3102               rclass:$rTrue, rclass:$rFalse),
3103       (selinstr rclass:$rTrue, rclass:$rFalse,
3104                 (cmpare rclass:$rA, immpred:$imm))>;
3105
3106 def : SELECTNegCondReg<setne, R8C, i8, SELBr8, CEQBr8>;
3107 def : SELECTNegCondImm<setne, R8C, i8, immSExt8, SELBr8, CEQBIr8>;
3108 def : SELECTNegCondReg<setle, R8C, i8, SELBr8, CGTBr8>;
3109 def : SELECTNegCondImm<setle, R8C, i8, immSExt8, SELBr8, CGTBr8>;
3110 def : SELECTNegCondReg<setule, R8C, i8, SELBr8, CLGTBr8>;
3111 def : SELECTNegCondImm<setule, R8C, i8, immU8, SELBr8, CLGTBIr8>;
3112
3113 def : SELECTNegCondReg<setne, R16C, i16, SELBr16, CEQHr16>;
3114 def : SELECTNegCondImm<setne, R16C, i16, i16ImmSExt10, SELBr16, CEQHIr16>;
3115 def : SELECTNegCondReg<setle, R16C, i16, SELBr16, CGTHr16>;
3116 def : SELECTNegCondImm<setle, R16C, i16, i16ImmSExt10, SELBr16, CGTHIr16>;
3117 def : SELECTNegCondReg<setule, R16C, i16, SELBr16, CLGTHr16>;
3118 def : SELECTNegCondImm<setule, R16C, i16, i16ImmSExt10, SELBr16, CLGTHIr16>;
3119
3120 def : SELECTNegCondReg<setne, R32C, i32, SELBr32, CEQr32>;
3121 def : SELECTNegCondImm<setne, R32C, i32, i32ImmSExt10, SELBr32, CEQIr32>;
3122 def : SELECTNegCondReg<setle, R32C, i32, SELBr32, CGTr32>;
3123 def : SELECTNegCondImm<setle, R32C, i32, i32ImmSExt10, SELBr32, CGTIr32>;
3124 def : SELECTNegCondReg<setule, R32C, i32, SELBr32, CLGTr32>;
3125 def : SELECTNegCondImm<setule, R32C, i32, i32ImmSExt10, SELBr32, CLGTIr32>;
3126
3127 class SELECTBinOpReg<PatFrag cond, RegisterClass rclass, ValueType inttype,
3128                      SPUInstr selinstr, SPUInstr binop, SPUInstr cmpOp1,
3129                      SPUInstr cmpOp2>:
3130   Pat<(select (inttype (cond rclass:$rA, rclass:$rB)),
3131               rclass:$rFalse, rclass:$rTrue),
3132       (selinstr rclass:$rTrue, rclass:$rFalse,
3133                 (binop (cmpOp1 rclass:$rA, rclass:$rB),
3134                        (cmpOp2 rclass:$rA, rclass:$rB)))>;
3135
3136 class SELECTBinOpImm<PatFrag cond, RegisterClass rclass, PatLeaf immpred,
3137                      ValueType inttype,
3138                      SPUInstr selinstr, SPUInstr binop, SPUInstr cmpOp1,
3139                      SPUInstr cmpOp2>:
3140     Pat<(select (inttype (cond rclass:$rA, (inttype immpred:$imm))),
3141                 rclass:$rTrue, rclass:$rFalse),
3142         (selinstr rclass:$rFalse, rclass:$rTrue,
3143                   (binop (cmpOp1 rclass:$rA, (inttype immpred:$imm)),
3144                          (cmpOp2 rclass:$rA, (inttype immpred:$imm))))>;
3145
3146 def : SELECTBinOpReg<setge, R8C, i8, SELBr8, ORr8, CGTBr8, CEQBr8>;
3147 def : SELECTBinOpImm<setge, R8C, immSExt8, i8,
3148                      SELBr8, ORr8, CGTBIr8, CEQBIr8>;
3149
3150 def : SELECTBinOpReg<setge, R16C, i16, SELBr16, ORr16, CGTHr16, CEQHr16>;
3151 def : SELECTBinOpImm<setge, R16C, i16ImmSExt10, i16,
3152                      SELBr16, ORr16, CGTHIr16, CEQHIr16>;
3153
3154 def : SELECTBinOpReg<setge, R32C, i32, SELBr32, ORr32, CGTr32, CEQr32>;
3155 def : SELECTBinOpImm<setge, R32C, i32ImmSExt10, i32,
3156                      SELBr32, ORr32, CGTIr32, CEQIr32>;
3157
3158 def : SELECTBinOpReg<setuge, R8C, i8, SELBr8, ORr8, CLGTBr8, CEQBr8>;
3159 def : SELECTBinOpImm<setuge, R8C, immSExt8, i8,
3160                      SELBr8, ORr8, CLGTBIr8, CEQBIr8>;
3161
3162 def : SELECTBinOpReg<setuge, R16C, i16, SELBr16, ORr16, CLGTHr16, CEQHr16>;
3163 def : SELECTBinOpImm<setuge, R16C, i16ImmUns10, i16,
3164                      SELBr16, ORr16, CLGTHIr16, CEQHIr16>;
3165
3166 def : SELECTBinOpReg<setuge, R32C, i32, SELBr32, ORr32, CLGTr32, CEQr32>;
3167 def : SELECTBinOpImm<setuge, R32C, i32ImmUns10, i32,
3168                      SELBr32, ORr32, CLGTIr32, CEQIr32>;
3169
3170 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
3171
3172 let isCall = 1,
3173   // All calls clobber the non-callee-saved registers:
3174   Defs = [R0, R1, R2, R3, R4, R5, R6, R7, R8, R9,
3175           R10,R11,R12,R13,R14,R15,R16,R17,R18,R19,
3176           R20,R21,R22,R23,R24,R25,R26,R27,R28,R29,
3177           R30,R31,R32,R33,R34,R35,R36,R37,R38,R39,
3178           R40,R41,R42,R43,R44,R45,R46,R47,R48,R49,
3179           R50,R51,R52,R53,R54,R55,R56,R57,R58,R59,
3180           R60,R61,R62,R63,R64,R65,R66,R67,R68,R69,
3181           R70,R71,R72,R73,R74,R75,R76,R77,R78,R79],
3182   // All of these instructions use $lr (aka $0)
3183   Uses = [R0]  in {
3184   // Branch relative and set link: Used if we actually know that the target
3185   // is within [-32768, 32767] bytes of the target
3186   def BRSL:
3187     BranchSetLink<0b011001100, (outs), (ins relcalltarget:$func, variable_ops),
3188       "brsl\t$$lr, $func",
3189       [(SPUcall (SPUpcrel tglobaladdr:$func, 0))]>;
3190
3191   // Branch absolute and set link: Used if we actually know that the target
3192   // is an absolute address
3193   def BRASL:
3194     BranchSetLink<0b011001100, (outs), (ins calltarget:$func, variable_ops),
3195       "brasl\t$$lr, $func",
3196       [(SPUcall (SPUaform tglobaladdr:$func, 0))]>;
3197
3198   // Branch indirect and set link if external data. These instructions are not
3199   // actually generated, matched by an intrinsic:
3200   def BISLED_00: BISLEDForm<0b11, "bisled\t$$lr, $func", [/* empty pattern */]>;
3201   def BISLED_E0: BISLEDForm<0b10, "bisled\t$$lr, $func", [/* empty pattern */]>;
3202   def BISLED_0D: BISLEDForm<0b01, "bisled\t$$lr, $func", [/* empty pattern */]>;
3203   def BISLED_ED: BISLEDForm<0b00, "bisled\t$$lr, $func", [/* empty pattern */]>;
3204
3205   // Branch indirect and set link. This is the "X-form" address version of a
3206   // function call
3207   def BISL:
3208     BIForm<0b10010101100, "bisl\t$$lr, $func", [(SPUcall R32C:$func)]>;
3209 }
3210
3211 // Unconditional branches:
3212 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in {
3213   def BR :
3214     UncondBranch<0b001001100, (outs), (ins brtarget:$dest),
3215       "br\t$dest",
3216       [(br bb:$dest)]>;
3217
3218   // Unconditional, absolute address branch
3219   def BRA:
3220     UncondBranch<0b001100000, (outs), (ins brtarget:$dest),
3221       "bra\t$dest",
3222       [/* no pattern */]>;
3223
3224   // Indirect branch
3225   def BI:
3226     BIForm<0b00010101100, "bi\t$func", [(brind R32C:$func)]>;
3227
3228   // Various branches:
3229   def BRNZ:
3230     RI16Form<0b010000100, (outs), (ins R32C:$rCond, brtarget:$dest),
3231       "brnz\t$rCond,$dest",
3232       BranchResolv,
3233       [(brcond R32C:$rCond, bb:$dest)]>;
3234
3235   def BRZ:
3236     RI16Form<0b000000100, (outs), (ins R32C:$rT, brtarget:$dest),
3237       "brz\t$rT,$dest",
3238       BranchResolv,
3239       [/* no pattern */]>;
3240
3241   def BRHNZ:
3242     RI16Form<0b011000100, (outs), (ins R16C:$rCond, brtarget:$dest),
3243       "brhnz\t$rCond,$dest",
3244       BranchResolv,
3245       [(brcond R16C:$rCond, bb:$dest)]>;
3246
3247   def BRHZ:
3248     RI16Form<0b001000100, (outs), (ins R16C:$rT, brtarget:$dest),
3249       "brhz\t$rT,$dest",
3250       BranchResolv,
3251       [/* no pattern */]>;
3252   
3253 /*
3254   def BINZ:
3255     BICondForm<0b10010100100, "binz\t$rA, $func",
3256                [(SPUbinz R32C:$rA, R32C:$func)]>;
3257
3258   def BIZ:
3259     BICondForm<0b00010100100, "biz\t$rA, $func",
3260                [(SPUbiz R32C:$rA, R32C:$func)]>;
3261 */
3262 }
3263
3264 //===----------------------------------------------------------------------===//
3265 // setcc and brcond patterns:
3266 //===----------------------------------------------------------------------===//
3267
3268 def : Pat<(brcond (i16 (seteq R16C:$rA, 0)), bb:$dest), 
3269           (BRHZ R16C:$rA, bb:$dest)>;
3270 def : Pat<(brcond (i16 (setne R16C:$rA, 0)), bb:$dest), 
3271           (BRHNZ R16C:$rA, bb:$dest)>;
3272
3273 def : Pat<(brcond (i32 (seteq R32C:$rA, 0)), bb:$dest), 
3274           (BRZ R32C:$rA, bb:$dest)>;
3275 def : Pat<(brcond (i32 (setne R32C:$rA, 0)), bb:$dest), 
3276           (BRNZ R32C:$rA, bb:$dest)>;
3277
3278 multiclass BranchCondEQ<PatFrag cond, SPUInstr brinst16, SPUInstr brinst32>
3279 {
3280   def r16imm: Pat<(brcond (i16 (cond R16C:$rA, i16ImmSExt10:$val)), bb:$dest),
3281                   (brinst16 (CEQHIr16 R16C:$rA, i16ImmSExt10:$val), bb:$dest)>;
3282
3283   def r16 : Pat<(brcond (i16 (cond R16C:$rA, R16C:$rB)), bb:$dest),
3284                 (brinst16 (CEQHr16 R16C:$rA, R16:$rB), bb:$dest)>;
3285
3286   def r32imm : Pat<(brcond (i32 (cond R32C:$rA, i32ImmSExt10:$val)), bb:$dest),
3287                    (brinst32 (CEQIr32 R32C:$rA, i32ImmSExt10:$val), bb:$dest)>;
3288
3289   def r32 : Pat<(brcond (i32 (cond R32C:$rA, R32C:$rB)), bb:$dest),
3290                 (brinst32 (CEQr32 R32C:$rA, R32C:$rB), bb:$dest)>;
3291 }
3292
3293 defm BRCONDeq : BranchCondEQ<seteq, BRHZ, BRZ>;
3294 defm BRCONDne : BranchCondEQ<setne, BRHNZ, BRNZ>;
3295
3296 multiclass BranchCondLGT<PatFrag cond, SPUInstr brinst16, SPUInstr brinst32>
3297 {
3298   def r16imm : Pat<(brcond (i16 (cond R16C:$rA, i16ImmSExt10:$val)), bb:$dest),
3299                    (brinst16 (CLGTHIr16 R16C:$rA, i16ImmSExt10:$val), bb:$dest)>;
3300
3301   def r16 : Pat<(brcond (i16 (cond R16C:$rA, R16C:$rB)), bb:$dest),
3302                 (brinst16 (CLGTHr16 R16C:$rA, R16:$rB), bb:$dest)>;
3303
3304   def r32imm : Pat<(brcond (i32 (cond R32C:$rA, i32ImmSExt10:$val)), bb:$dest),
3305                    (brinst32 (CLGTIr32 R32C:$rA, i32ImmSExt10:$val), bb:$dest)>;
3306
3307   def r32 : Pat<(brcond (i32 (cond R32C:$rA, R32C:$rB)), bb:$dest),
3308                 (brinst32 (CLGTr32 R32C:$rA, R32C:$rB), bb:$dest)>;
3309 }
3310
3311 defm BRCONDugt : BranchCondLGT<setugt, BRHNZ, BRNZ>;
3312 defm BRCONDule : BranchCondLGT<setule, BRHZ, BRZ>;
3313
3314 multiclass BranchCondLGTEQ<PatFrag cond, SPUInstr orinst16, SPUInstr brinst16,
3315                            SPUInstr orinst32, SPUInstr brinst32>
3316 {
3317   def r16imm: Pat<(brcond (i16 (cond R16C:$rA, i16ImmSExt10:$val)), bb:$dest),
3318                   (brinst16 (orinst16 (CLGTHIr16 R16C:$rA, i16ImmSExt10:$val),
3319                                       (CEQHIr16 R16C:$rA, i16ImmSExt10:$val)),
3320                             bb:$dest)>;
3321
3322   def r16: Pat<(brcond (i16 (cond R16C:$rA, R16C:$rB)), bb:$dest),
3323                (brinst16 (orinst16 (CLGTHr16 R16C:$rA, R16:$rB),
3324                                    (CEQHr16 R16C:$rA, R16:$rB)),
3325                          bb:$dest)>;
3326
3327   def r32imm : Pat<(brcond (i32 (cond R32C:$rA, i32ImmSExt10:$val)), bb:$dest),
3328                    (brinst32 (orinst32 (CLGTIr32 R32C:$rA, i32ImmSExt10:$val),
3329                                        (CEQIr32 R32C:$rA, i32ImmSExt10:$val)),
3330                              bb:$dest)>;
3331
3332   def r32 : Pat<(brcond (i32 (cond R32C:$rA, R32C:$rB)), bb:$dest),
3333                 (brinst32 (orinst32 (CLGTr32 R32C:$rA, R32C:$rB),
3334                                     (CEQr32 R32C:$rA, R32C:$rB)),
3335                           bb:$dest)>;
3336 }
3337
3338 defm BRCONDuge : BranchCondLGTEQ<setuge, ORr16, BRHNZ, ORr32, BRNZ>;
3339 defm BRCONDult : BranchCondLGTEQ<setult, ORr16, BRHZ, ORr32, BRZ>;
3340
3341 multiclass BranchCondGT<PatFrag cond, SPUInstr brinst16, SPUInstr brinst32>
3342 {
3343   def r16imm : Pat<(brcond (i16 (cond R16C:$rA, i16ImmSExt10:$val)), bb:$dest),
3344                    (brinst16 (CGTHIr16 R16C:$rA, i16ImmSExt10:$val), bb:$dest)>;
3345
3346   def r16 : Pat<(brcond (i16 (cond R16C:$rA, R16C:$rB)), bb:$dest),
3347                 (brinst16 (CGTHr16 R16C:$rA, R16:$rB), bb:$dest)>;
3348
3349   def r32imm : Pat<(brcond (i32 (cond R32C:$rA, i32ImmSExt10:$val)), bb:$dest),
3350                    (brinst32 (CGTIr32 R32C:$rA, i32ImmSExt10:$val), bb:$dest)>;
3351
3352   def r32 : Pat<(brcond (i32 (cond R32C:$rA, R32C:$rB)), bb:$dest),
3353                 (brinst32 (CGTr32 R32C:$rA, R32C:$rB), bb:$dest)>;
3354 }
3355
3356 defm BRCONDgt : BranchCondGT<setgt, BRHNZ, BRNZ>;
3357 defm BRCONDle : BranchCondGT<setle, BRHZ, BRZ>;
3358
3359 multiclass BranchCondGTEQ<PatFrag cond, SPUInstr orinst16, SPUInstr brinst16,
3360                           SPUInstr orinst32, SPUInstr brinst32>
3361 {
3362   def r16imm: Pat<(brcond (i16 (cond R16C:$rA, i16ImmSExt10:$val)), bb:$dest),
3363                   (brinst16 (orinst16 (CGTHIr16 R16C:$rA, i16ImmSExt10:$val),
3364                                       (CEQHIr16 R16C:$rA, i16ImmSExt10:$val)),
3365                             bb:$dest)>;
3366
3367   def r16: Pat<(brcond (i16 (cond R16C:$rA, R16C:$rB)), bb:$dest),
3368                (brinst16 (orinst16 (CGTHr16 R16C:$rA, R16:$rB),
3369                                    (CEQHr16 R16C:$rA, R16:$rB)),
3370                          bb:$dest)>;
3371
3372   def r32imm : Pat<(brcond (i32 (cond R32C:$rA, i32ImmSExt10:$val)), bb:$dest),
3373                    (brinst32 (orinst32 (CGTIr32 R32C:$rA, i32ImmSExt10:$val),
3374                                        (CEQIr32 R32C:$rA, i32ImmSExt10:$val)),
3375                              bb:$dest)>;
3376
3377   def r32 : Pat<(brcond (i32 (cond R32C:$rA, R32C:$rB)), bb:$dest),
3378                 (brinst32 (orinst32 (CGTr32 R32C:$rA, R32C:$rB),
3379                                     (CEQr32 R32C:$rA, R32C:$rB)),
3380                           bb:$dest)>;
3381 }
3382
3383 defm BRCONDge : BranchCondGTEQ<setge, ORr16, BRHNZ, ORr32, BRNZ>;
3384 defm BRCONDlt : BranchCondGTEQ<setlt, ORr16, BRHZ, ORr32, BRZ>;
3385
3386 let isTerminator = 1, isBarrier = 1 in {
3387   let isReturn = 1 in {
3388     def RET:
3389         RETForm<"bi\t$$lr", [(retflag)]>;
3390   }
3391 }
3392
3393 //===----------------------------------------------------------------------===//
3394 // Single precision floating point instructions
3395 //===----------------------------------------------------------------------===//
3396
3397 def FAv4f32:
3398     RRForm<0b00100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3399       "fa\t$rT, $rA, $rB", SPrecFP,
3400       [(set (v4f32 VECREG:$rT), (fadd (v4f32 VECREG:$rA), (v4f32 VECREG:$rB)))]>;
3401
3402 def FAf32 :
3403     RRForm<0b00100011010, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3404       "fa\t$rT, $rA, $rB", SPrecFP,
3405       [(set R32FP:$rT, (fadd R32FP:$rA, R32FP:$rB))]>;
3406
3407 def FSv4f32:
3408     RRForm<0b00100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3409       "fs\t$rT, $rA, $rB", SPrecFP,
3410       [(set (v4f32 VECREG:$rT), (fsub (v4f32 VECREG:$rA), (v4f32 VECREG:$rB)))]>;
3411
3412 def FSf32 :
3413     RRForm<0b10100011010, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3414       "fs\t$rT, $rA, $rB", SPrecFP,
3415       [(set R32FP:$rT, (fsub R32FP:$rA, R32FP:$rB))]>;
3416
3417 // Floating point reciprocal estimate
3418 def FREv4f32 :
3419     RRForm_1<0b00011101100, (outs VECREG:$rT), (ins VECREG:$rA),
3420       "frest\t$rT, $rA", SPrecFP,
3421       [(set (v4f32 VECREG:$rT), (SPUreciprocalEst (v4f32 VECREG:$rA)))]>;
3422
3423 def FREf32 :
3424     RRForm_1<0b00011101100, (outs R32FP:$rT), (ins R32FP:$rA),
3425       "frest\t$rT, $rA", SPrecFP,
3426       [(set R32FP:$rT, (SPUreciprocalEst R32FP:$rA))]>;
3427
3428 // Floating point interpolate (used in conjunction with reciprocal estimate)
3429 def FIv4f32 :
3430     RRForm<0b00101011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3431       "fi\t$rT, $rA, $rB", SPrecFP,
3432       [(set (v4f32 VECREG:$rT), (SPUinterpolate (v4f32 VECREG:$rA),
3433                                                 (v4f32 VECREG:$rB)))]>;
3434
3435 def FIf32 :
3436     RRForm<0b00101011110, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3437       "fi\t$rT, $rA, $rB", SPrecFP,
3438       [(set R32FP:$rT, (SPUinterpolate R32FP:$rA, R32FP:$rB))]>;
3439
3440 //--------------------------------------------------------------------------
3441 // Basic single precision floating point comparisons:
3442 //
3443 // Note: There is no support on SPU for single precision NaN. Consequently,
3444 // ordered and unordered comparisons are the same.
3445 //--------------------------------------------------------------------------
3446
3447 def FCEQf32 :
3448     RRForm<0b01000011110, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3449       "fceq\t$rT, $rA, $rB", SPrecFP,
3450       [(set R32C:$rT, (setueq R32FP:$rA, R32FP:$rB))]>;
3451
3452 def : Pat<(setoeq R32FP:$rA, R32FP:$rB),
3453           (FCEQf32 R32FP:$rA, R32FP:$rB)>;
3454
3455 def FCMEQf32 :
3456     RRForm<0b01010011110, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3457       "fcmeq\t$rT, $rA, $rB", SPrecFP,
3458       [(set R32C:$rT, (setueq (fabs R32FP:$rA), (fabs R32FP:$rB)))]>;
3459
3460 def : Pat<(setoeq (fabs R32FP:$rA), (fabs R32FP:$rB)),
3461           (FCMEQf32 R32FP:$rA, R32FP:$rB)>;
3462
3463 def FCGTf32 :
3464     RRForm<0b01000011010, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3465       "fcgt\t$rT, $rA, $rB", SPrecFP,
3466       [(set R32C:$rT, (setugt R32FP:$rA, R32FP:$rB))]>;
3467
3468 def : Pat<(setugt R32FP:$rA, R32FP:$rB),
3469           (FCGTf32 R32FP:$rA, R32FP:$rB)>;
3470
3471 def FCMGTf32 :
3472     RRForm<0b01010011010, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3473       "fcmgt\t$rT, $rA, $rB", SPrecFP,
3474       [(set R32C:$rT, (setugt (fabs R32FP:$rA), (fabs R32FP:$rB)))]>;
3475
3476 def : Pat<(setugt (fabs R32FP:$rA), (fabs R32FP:$rB)),
3477           (FCMGTf32 R32FP:$rA, R32FP:$rB)>;
3478
3479 //--------------------------------------------------------------------------
3480 // Single precision floating point comparisons and SETCC equivalents:
3481 //--------------------------------------------------------------------------
3482
3483 def : SETCCNegCondReg<setune, R32FP, i32, XORIr32, FCEQf32>;
3484 def : SETCCNegCondReg<setone, R32FP, i32, XORIr32, FCEQf32>;
3485
3486 def : SETCCBinOpReg<setuge, R32FP, ORr32, FCGTf32, FCEQf32>;
3487 def : SETCCBinOpReg<setoge, R32FP, ORr32, FCGTf32, FCEQf32>;
3488
3489 def : SETCCBinOpReg<setult, R32FP, NORr32, FCGTf32, FCEQf32>;
3490 def : SETCCBinOpReg<setolt, R32FP, NORr32, FCGTf32, FCEQf32>;
3491
3492 def : Pat<(setule R32FP:$rA, R32FP:$rB),
3493           (XORIr32 (FCGTf32 R32FP:$rA, R32FP:$rB), 0xffffffff)>;
3494 def : Pat<(setole R32FP:$rA, R32FP:$rB),
3495           (XORIr32 (FCGTf32 R32FP:$rA, R32FP:$rB), 0xffffffff)>;
3496
3497 // FP Status and Control Register Write
3498 // Why isn't rT a don't care in the ISA?
3499 // Should we create a special RRForm_3 for this guy and zero out the rT?
3500 def FSCRWf32 :
3501     RRForm_1<0b01011101110, (outs R32FP:$rT), (ins R32FP:$rA),
3502       "fscrwr\t$rA", SPrecFP,
3503       [/* This instruction requires an intrinsic. Note: rT is unused. */]>;
3504
3505 // FP Status and Control Register Read
3506 def FSCRRf32 :
3507     RRForm_2<0b01011101110, (outs R32FP:$rT), (ins),
3508       "fscrrd\t$rT", SPrecFP,
3509       [/* This instruction requires an intrinsic */]>;
3510
3511 // llvm instruction space
3512 // How do these map onto cell instructions?
3513 // fdiv rA rB
3514 //   frest rC rB        # c = 1/b (both lines)
3515 //   fi rC rB rC
3516 //   fm rD rA rC        # d = a * 1/b
3517 //   fnms rB rD rB rA # b = - (d * b - a) --should == 0 in a perfect world
3518 //   fma rB rB rC rD            # b = b * c + d
3519 //                              = -(d *b -a) * c + d
3520 //                              = a * c - c ( a *b *c - a)
3521
3522 // fcopysign (???)
3523
3524 // Library calls:
3525 // These llvm instructions will actually map to library calls.
3526 // All that's needed, then, is to check that the appropriate library is
3527 // imported and do a brsl to the proper function name.
3528 // frem # fmod(x, y): x - (x/y) * y
3529 // (Note: fmod(double, double), fmodf(float,float)
3530 // fsqrt?
3531 // fsin?
3532 // fcos?
3533 // Unimplemented SPU instruction space
3534 // floating reciprocal absolute square root estimate (frsqest)
3535
3536 // The following are probably just intrinsics
3537 // status and control register write 
3538 // status and control register read
3539
3540 //--------------------------------------
3541 // Floating point multiply instructions
3542 //--------------------------------------
3543
3544 def FMv4f32:
3545     RRForm<0b00100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3546       "fm\t$rT, $rA, $rB", SPrecFP,
3547       [(set (v4f32 VECREG:$rT), (fmul (v4f32 VECREG:$rA),
3548                                       (v4f32 VECREG:$rB)))]>;
3549
3550 def FMf32 :
3551     RRForm<0b01100011010, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3552       "fm\t$rT, $rA, $rB", SPrecFP,
3553       [(set R32FP:$rT, (fmul R32FP:$rA, R32FP:$rB))]>;
3554
3555 // Floating point multiply and add
3556 // e.g. d = c + (a * b)
3557 def FMAv4f32:
3558     RRRForm<0b0111, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3559       "fma\t$rT, $rA, $rB, $rC", SPrecFP,
3560       [(set (v4f32 VECREG:$rT),
3561             (fadd (v4f32 VECREG:$rC),
3562                   (fmul (v4f32 VECREG:$rA), (v4f32 VECREG:$rB))))]>;
3563
3564 def FMAf32:
3565     RRRForm<0b0111, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB, R32FP:$rC),
3566       "fma\t$rT, $rA, $rB, $rC", SPrecFP,
3567       [(set R32FP:$rT, (fadd R32FP:$rC, (fmul R32FP:$rA, R32FP:$rB)))]>;
3568
3569 // FP multiply and subtract
3570 // Subtracts value in rC from product
3571 // res = a * b - c
3572 def FMSv4f32 :
3573     RRRForm<0b0111, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3574       "fms\t$rT, $rA, $rB, $rC", SPrecFP,
3575       [(set (v4f32 VECREG:$rT),
3576             (fsub (fmul (v4f32 VECREG:$rA), (v4f32 VECREG:$rB)),
3577                   (v4f32 VECREG:$rC)))]>;
3578
3579 def FMSf32 :
3580     RRRForm<0b0111, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB, R32FP:$rC),
3581       "fms\t$rT, $rA, $rB, $rC", SPrecFP,
3582       [(set R32FP:$rT,
3583             (fsub (fmul R32FP:$rA, R32FP:$rB), R32FP:$rC))]>;
3584
3585 // Floating Negative Mulitply and Subtract
3586 // Subtracts product from value in rC
3587 // res = fneg(fms a b c)
3588 //     = - (a * b - c)
3589 //     = c - a * b
3590 // NOTE: subtraction order
3591 // fsub a b = a - b
3592 // fs a b = b - a? 
3593 def FNMSf32 :
3594     RRRForm<0b1101, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB, R32FP:$rC),
3595       "fnms\t$rT, $rA, $rB, $rC", SPrecFP,
3596       [(set R32FP:$rT, (fsub R32FP:$rC, (fmul R32FP:$rA, R32FP:$rB)))]>;
3597
3598 def FNMSv4f32 :
3599     RRRForm<0b1101, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3600       "fnms\t$rT, $rA, $rB, $rC", SPrecFP,
3601       [(set (v4f32 VECREG:$rT), 
3602             (fsub (v4f32 VECREG:$rC), 
3603                   (fmul (v4f32 VECREG:$rA), 
3604                         (v4f32 VECREG:$rB))))]>;
3605
3606 //--------------------------------------
3607 // Floating Point Conversions
3608 // Signed conversions:
3609 def CSiFv4f32:
3610     CVTIntFPForm<0b0101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3611       "csflt\t$rT, $rA, 0", SPrecFP,
3612       [(set (v4f32 VECREG:$rT), (sint_to_fp (v4i32 VECREG:$rA)))]>;
3613
3614 // Convert signed integer to floating point 
3615 def CSiFf32 :
3616     CVTIntFPForm<0b0101101110, (outs R32FP:$rT), (ins R32C:$rA),
3617       "csflt\t$rT, $rA, 0", SPrecFP,
3618       [(set R32FP:$rT, (sint_to_fp R32C:$rA))]>;
3619
3620 // Convert unsigned into to float
3621 def CUiFv4f32 :
3622     CVTIntFPForm<0b1101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3623       "cuflt\t$rT, $rA, 0", SPrecFP,
3624       [(set (v4f32 VECREG:$rT), (uint_to_fp (v4i32 VECREG:$rA)))]>;
3625
3626 def CUiFf32 :
3627     CVTIntFPForm<0b1101101110, (outs R32FP:$rT), (ins R32C:$rA),
3628       "cuflt\t$rT, $rA, 0", SPrecFP,
3629       [(set R32FP:$rT, (uint_to_fp R32C:$rA))]>;
3630
3631 // Convert float to unsigned int 
3632 // Assume that scale = 0
3633
3634 def CFUiv4f32 :
3635     CVTIntFPForm<0b1101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3636       "cfltu\t$rT, $rA, 0", SPrecFP,
3637       [(set (v4i32 VECREG:$rT), (fp_to_uint (v4f32 VECREG:$rA)))]>;
3638
3639 def CFUif32 :
3640     CVTIntFPForm<0b1101101110, (outs R32C:$rT), (ins R32FP:$rA),
3641       "cfltu\t$rT, $rA, 0", SPrecFP,
3642       [(set R32C:$rT, (fp_to_uint R32FP:$rA))]>;
3643
3644 // Convert float to signed int 
3645 // Assume that scale = 0
3646
3647 def CFSiv4f32 :
3648     CVTIntFPForm<0b1101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3649       "cflts\t$rT, $rA, 0", SPrecFP,
3650       [(set (v4i32 VECREG:$rT), (fp_to_sint (v4f32 VECREG:$rA)))]>;
3651
3652 def CFSif32 :
3653     CVTIntFPForm<0b1101101110, (outs R32C:$rT), (ins R32FP:$rA),
3654       "cflts\t$rT, $rA, 0", SPrecFP,
3655       [(set R32C:$rT, (fp_to_sint R32FP:$rA))]>;
3656
3657 //===----------------------------------------------------------------------==//
3658 // Single<->Double precision conversions
3659 //===----------------------------------------------------------------------==//
3660
3661 // NOTE: We use "vec" name suffix here to avoid confusion (e.g. input is a
3662 // v4f32, output is v2f64--which goes in the name?)
3663
3664 // Floating point extend single to double
3665 // NOTE: Not sure if passing in v4f32 to FESDvec is correct since it
3666 // operates on two double-word slots (i.e. 1st and 3rd fp numbers
3667 // are ignored).
3668 def FESDvec :
3669     RRForm_1<0b00011101110, (outs VECREG:$rT), (ins VECREG:$rA),
3670       "fesd\t$rT, $rA", SPrecFP,
3671       [(set (v2f64 VECREG:$rT), (fextend (v4f32 VECREG:$rA)))]>;
3672
3673 def FESDf32 :
3674     RRForm_1<0b00011101110, (outs R64FP:$rT), (ins R32FP:$rA),
3675       "fesd\t$rT, $rA", SPrecFP,
3676       [(set R64FP:$rT, (fextend R32FP:$rA))]>;
3677
3678 // Floating point round double to single
3679 //def FRDSvec :
3680 //    RRForm_1<0b10011101110, (outs VECREG:$rT), (ins VECREG:$rA),
3681 //      "frds\t$rT, $rA,", SPrecFP,
3682 //      [(set (v4f32 R32FP:$rT), (fround (v2f64 R64FP:$rA)))]>;
3683
3684 def FRDSf64 :
3685     RRForm_1<0b10011101110, (outs R32FP:$rT), (ins R64FP:$rA),
3686       "frds\t$rT, $rA", SPrecFP,
3687       [(set R32FP:$rT, (fround R64FP:$rA))]>;
3688
3689 //ToDo include anyextend?
3690
3691 //===----------------------------------------------------------------------==//
3692 // Double precision floating point instructions
3693 //===----------------------------------------------------------------------==//
3694 def FAf64 :
3695     RRForm<0b00110011010, (outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
3696       "dfa\t$rT, $rA, $rB", DPrecFP,
3697       [(set R64FP:$rT, (fadd R64FP:$rA, R64FP:$rB))]>;
3698
3699 def FAv2f64 :
3700     RRForm<0b00110011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3701       "dfa\t$rT, $rA, $rB", DPrecFP,
3702       [(set (v2f64 VECREG:$rT), (fadd (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)))]>;
3703
3704 def FSf64 :
3705     RRForm<0b10100011010, (outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
3706       "dfs\t$rT, $rA, $rB", DPrecFP,
3707       [(set R64FP:$rT, (fsub R64FP:$rA, R64FP:$rB))]>;
3708
3709 def FSv2f64 :
3710     RRForm<0b10100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3711       "dfs\t$rT, $rA, $rB", DPrecFP,
3712       [(set (v2f64 VECREG:$rT),
3713             (fsub (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)))]>;
3714
3715 def FMf64 :
3716     RRForm<0b01100011010, (outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
3717       "dfm\t$rT, $rA, $rB", DPrecFP,
3718       [(set R64FP:$rT, (fmul R64FP:$rA, R64FP:$rB))]>;
3719
3720 def FMv2f64:
3721     RRForm<0b00100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3722       "dfm\t$rT, $rA, $rB", DPrecFP,
3723       [(set (v2f64 VECREG:$rT),
3724             (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)))]>;
3725
3726 def FMAf64:
3727     RRForm<0b00111010110, (outs R64FP:$rT),
3728                           (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3729       "dfma\t$rT, $rA, $rB", DPrecFP,
3730       [(set R64FP:$rT, (fadd R64FP:$rC, (fmul R64FP:$rA, R64FP:$rB)))]>,
3731     RegConstraint<"$rC = $rT">,
3732     NoEncode<"$rC">;
3733
3734 def FMAv2f64:
3735     RRForm<0b00111010110, (outs VECREG:$rT),
3736                           (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3737       "dfma\t$rT, $rA, $rB", DPrecFP,
3738       [(set (v2f64 VECREG:$rT),
3739             (fadd (v2f64 VECREG:$rC),
3740                   (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB))))]>,
3741     RegConstraint<"$rC = $rT">,
3742     NoEncode<"$rC">;
3743
3744 def FMSf64 :
3745     RRForm<0b10111010110, (outs R64FP:$rT),
3746                           (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3747       "dfms\t$rT, $rA, $rB", DPrecFP,
3748       [(set R64FP:$rT, (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))]>,
3749     RegConstraint<"$rC = $rT">,
3750     NoEncode<"$rC">;
3751
3752 def FMSv2f64 :
3753     RRForm<0b10111010110, (outs VECREG:$rT),
3754                           (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3755       "dfms\t$rT, $rA, $rB", DPrecFP,
3756       [(set (v2f64 VECREG:$rT),
3757             (fsub (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)),
3758                   (v2f64 VECREG:$rC)))]>;
3759
3760 // FNMS: - (a * b - c)
3761 // - (a * b) + c => c - (a * b)
3762 def FNMSf64 :
3763     RRForm<0b01111010110, (outs R64FP:$rT),
3764                           (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3765       "dfnms\t$rT, $rA, $rB", DPrecFP,
3766       [(set R64FP:$rT, (fsub R64FP:$rC, (fmul R64FP:$rA, R64FP:$rB)))]>,
3767     RegConstraint<"$rC = $rT">,
3768     NoEncode<"$rC">;
3769
3770 def : Pat<(fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC)),
3771           (FNMSf64 R64FP:$rA, R64FP:$rB, R64FP:$rC)>;
3772
3773 def FNMSv2f64 :
3774     RRForm<0b01111010110, (outs VECREG:$rT),
3775                           (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3776       "dfnms\t$rT, $rA, $rB", DPrecFP,
3777       [(set (v2f64 VECREG:$rT), 
3778             (fsub (v2f64 VECREG:$rC), 
3779                   (fmul (v2f64 VECREG:$rA), 
3780                         (v2f64 VECREG:$rB))))]>,
3781     RegConstraint<"$rC = $rT">,
3782     NoEncode<"$rC">;
3783
3784 def : Pat<(fneg (fsub (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)),
3785                 (v2f64 VECREG:$rC))),
3786           (FNMSv2f64 VECREG:$rA, VECREG:$rB, VECREG:$rC)>;
3787
3788 // - (a * b + c)
3789 // - (a * b) - c
3790 def FNMAf64 :
3791     RRForm<0b11111010110, (outs R64FP:$rT),
3792                           (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3793       "dfnma\t$rT, $rA, $rB", DPrecFP,
3794       [(set R64FP:$rT, (fneg (fadd R64FP:$rC, (fmul R64FP:$rA, R64FP:$rB))))]>,
3795     RegConstraint<"$rC = $rT">,
3796     NoEncode<"$rC">;
3797
3798 def FNMAv2f64 :
3799     RRForm<0b11111010110, (outs VECREG:$rT),
3800                           (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3801       "dfnma\t$rT, $rA, $rB", DPrecFP,
3802       [(set (v2f64 VECREG:$rT), 
3803             (fneg (fadd (v2f64 VECREG:$rC), 
3804                         (fmul (v2f64 VECREG:$rA), 
3805                               (v2f64 VECREG:$rB)))))]>,
3806     RegConstraint<"$rC = $rT">,
3807     NoEncode<"$rC">;
3808
3809 //===----------------------------------------------------------------------==//
3810 // Floating point negation and absolute value
3811 //===----------------------------------------------------------------------==//
3812
3813 def : Pat<(fneg (v4f32 VECREG:$rA)),
3814           (XORfnegvec (v4f32 VECREG:$rA), 
3815                       (v4f32 (ILHUv4i32 0x8000)))>;
3816
3817 def : Pat<(fneg R32FP:$rA),
3818           (XORfneg32 R32FP:$rA, (ILHUr32 0x8000))>;
3819
3820 def : Pat<(fneg (v2f64 VECREG:$rA)),
3821           (XORfnegvec (v2f64 VECREG:$rA),
3822                       (v2f64 (ANDBIv16i8 (FSMBIv16i8 0x8080), 0x80)))>;
3823
3824 def : Pat<(fneg R64FP:$rA),
3825           (XORfneg64 R64FP:$rA,
3826                      (ANDBIv16i8 (FSMBIv16i8 0x8080), 0x80))>;
3827
3828 // Floating point absolute value
3829
3830 def : Pat<(fabs R32FP:$rA),
3831           (ANDfabs32 R32FP:$rA, (IOHLr32 (ILHUr32 0x7fff), 0xffff))>;
3832
3833 def : Pat<(fabs (v4f32 VECREG:$rA)),
3834           (ANDfabsvec (v4f32 VECREG:$rA),
3835                       (v4f32 (ANDBIv16i8 (FSMBIv16i8 0xffff), 0x7f)))>;
3836
3837 def : Pat<(fabs R64FP:$rA),
3838           (ANDfabs64 R64FP:$rA, (ANDBIv16i8 (FSMBIv16i8 0xffff), 0x7f))>;
3839
3840 def : Pat<(fabs (v2f64 VECREG:$rA)),
3841           (ANDfabsvec (v2f64 VECREG:$rA),
3842                       (v2f64 (ANDBIv16i8 (FSMBIv16i8 0xffff), 0x7f)))>;
3843
3844 //===----------------------------------------------------------------------===//
3845 // Execution, Load NOP (execute NOPs belong in even pipeline, load NOPs belong
3846 // in the odd pipeline)
3847 //===----------------------------------------------------------------------===//
3848
3849 def ENOP : SPUInstr<(outs), (ins), "enop", ExecNOP> {
3850   let Pattern = [];
3851
3852   let Inst{0-10} = 0b10000000010;
3853   let Inst{11-17} = 0;
3854   let Inst{18-24} = 0;
3855   let Inst{25-31} = 0;
3856 }
3857
3858 def LNOP : SPUInstr<(outs), (ins), "lnop", LoadNOP> {
3859   let Pattern = [];
3860
3861   let Inst{0-10} = 0b10000000000;
3862   let Inst{11-17} = 0;
3863   let Inst{18-24} = 0;
3864   let Inst{25-31} = 0;
3865 }
3866
3867 //===----------------------------------------------------------------------===//
3868 // Bit conversions (type conversions between vector/packed types)
3869 // NOTE: Promotions are handled using the XS* instructions. Truncation
3870 // is not handled.
3871 //===----------------------------------------------------------------------===//
3872 def : Pat<(v16i8 (bitconvert (v8i16 VECREG:$src))), (v16i8 VECREG:$src)>;
3873 def : Pat<(v16i8 (bitconvert (v4i32 VECREG:$src))), (v16i8 VECREG:$src)>;
3874 def : Pat<(v16i8 (bitconvert (v2i64 VECREG:$src))), (v16i8 VECREG:$src)>;
3875 def : Pat<(v16i8 (bitconvert (v4f32 VECREG:$src))), (v16i8 VECREG:$src)>;
3876 def : Pat<(v16i8 (bitconvert (v2f64 VECREG:$src))), (v16i8 VECREG:$src)>;
3877
3878 def : Pat<(v8i16 (bitconvert (v16i8 VECREG:$src))), (v8i16 VECREG:$src)>;
3879 def : Pat<(v8i16 (bitconvert (v4i32 VECREG:$src))), (v8i16 VECREG:$src)>;
3880 def : Pat<(v8i16 (bitconvert (v2i64 VECREG:$src))), (v8i16 VECREG:$src)>;
3881 def : Pat<(v8i16 (bitconvert (v4f32 VECREG:$src))), (v8i16 VECREG:$src)>;
3882 def : Pat<(v8i16 (bitconvert (v2f64 VECREG:$src))), (v8i16 VECREG:$src)>;
3883
3884 def : Pat<(v4i32 (bitconvert (v16i8 VECREG:$src))), (v4i32 VECREG:$src)>;
3885 def : Pat<(v4i32 (bitconvert (v8i16 VECREG:$src))), (v4i32 VECREG:$src)>;
3886 def : Pat<(v4i32 (bitconvert (v2i64 VECREG:$src))), (v4i32 VECREG:$src)>;
3887 def : Pat<(v4i32 (bitconvert (v4f32 VECREG:$src))), (v4i32 VECREG:$src)>;
3888 def : Pat<(v4i32 (bitconvert (v2f64 VECREG:$src))), (v4i32 VECREG:$src)>;
3889
3890 def : Pat<(v2i64 (bitconvert (v16i8 VECREG:$src))), (v2i64 VECREG:$src)>;
3891 def : Pat<(v2i64 (bitconvert (v8i16 VECREG:$src))), (v2i64 VECREG:$src)>;
3892 def : Pat<(v2i64 (bitconvert (v4i32 VECREG:$src))), (v2i64 VECREG:$src)>;
3893 def : Pat<(v2i64 (bitconvert (v4f32 VECREG:$src))), (v2i64 VECREG:$src)>;
3894 def : Pat<(v2i64 (bitconvert (v2f64 VECREG:$src))), (v2i64 VECREG:$src)>;
3895
3896 def : Pat<(v4f32 (bitconvert (v16i8 VECREG:$src))), (v4f32 VECREG:$src)>;
3897 def : Pat<(v4f32 (bitconvert (v8i16 VECREG:$src))), (v4f32 VECREG:$src)>;
3898 def : Pat<(v4f32 (bitconvert (v2i64 VECREG:$src))), (v4f32 VECREG:$src)>;
3899 def : Pat<(v4f32 (bitconvert (v4i32 VECREG:$src))), (v4f32 VECREG:$src)>;
3900 def : Pat<(v4f32 (bitconvert (v2f64 VECREG:$src))), (v4f32 VECREG:$src)>;
3901
3902 def : Pat<(v2f64 (bitconvert (v16i8 VECREG:$src))), (v2f64 VECREG:$src)>;
3903 def : Pat<(v2f64 (bitconvert (v8i16 VECREG:$src))), (v2f64 VECREG:$src)>;
3904 def : Pat<(v2f64 (bitconvert (v4i32 VECREG:$src))), (v2f64 VECREG:$src)>;
3905 def : Pat<(v2f64 (bitconvert (v2i64 VECREG:$src))), (v2f64 VECREG:$src)>;
3906 def : Pat<(v2f64 (bitconvert (v2f64 VECREG:$src))), (v2f64 VECREG:$src)>;
3907
3908 def : Pat<(f32 (bitconvert (i32 R32C:$src))), (f32 R32FP:$src)>;
3909 def : Pat<(f64 (bitconvert (i64 R64C:$src))), (f64 R64FP:$src)>;
3910
3911 //===----------------------------------------------------------------------===//
3912 // Instruction patterns:
3913 //===----------------------------------------------------------------------===//
3914
3915 // General 32-bit constants:
3916 def : Pat<(i32 imm:$imm),
3917           (IOHLr32 (ILHUr32 (HI16 imm:$imm)), (LO16 imm:$imm))>;
3918
3919 // Single precision float constants:
3920 def : Pat<(f32 fpimm:$imm),
3921           (IOHLf32 (ILHUf32 (HI16_f32 fpimm:$imm)), (LO16_f32 fpimm:$imm))>;
3922
3923 // General constant 32-bit vectors
3924 def : Pat<(v4i32 v4i32Imm:$imm),
3925           (IOHLv4i32 (v4i32 (ILHUv4i32 (HI16_vec v4i32Imm:$imm))),
3926                      (LO16_vec v4i32Imm:$imm))>;
3927  
3928 // 8-bit constants
3929 def : Pat<(i8 imm:$imm),
3930           (ILHr8 imm:$imm)>;
3931
3932 //===----------------------------------------------------------------------===//
3933 // Call instruction patterns:
3934 //===----------------------------------------------------------------------===//
3935 // Return void
3936 def : Pat<(ret),
3937           (RET)>;
3938
3939 //===----------------------------------------------------------------------===//
3940 // Zero/Any/Sign extensions
3941 //===----------------------------------------------------------------------===//
3942
3943 // sext 8->32: Sign extend bytes to words
3944 def : Pat<(sext_inreg R32C:$rSrc, i8),
3945           (XSHWr32 (XSBHr32 R32C:$rSrc))>;
3946
3947 def : Pat<(i32 (sext R8C:$rSrc)),
3948           (XSHWr16 (XSBHr8 R8C:$rSrc))>;
3949
3950 // zext 8->16: Zero extend bytes to halfwords
3951 def : Pat<(i16 (zext R8C:$rSrc)),
3952           (ANDHIi8i16 R8C:$rSrc, 0xff)>;
3953
3954 // zext 8->32: Zero extend bytes to words
3955 def : Pat<(i32 (zext R8C:$rSrc)),
3956           (ANDIi8i32 R8C:$rSrc, 0xff)>;
3957
3958 // anyext 8->16: Extend 8->16 bits, irrespective of sign
3959 def : Pat<(i16 (anyext R8C:$rSrc)),
3960           (ORHIi8i16 R8C:$rSrc, 0)>;
3961
3962 // anyext 8->32: Extend 8->32 bits, irrespective of sign
3963 def : Pat<(i32 (anyext R8C:$rSrc)),
3964           (ORIi8i32 R8C:$rSrc, 0)>;
3965
3966 // zext 16->32: Zero extend halfwords to words
3967 def : Pat<(i32 (zext R16C:$rSrc)),
3968           (ANDi16i32 R16C:$rSrc, (ILAr32 0xffff))>;
3969
3970 def : Pat<(i32 (zext (and R16C:$rSrc, 0xf))),
3971           (ANDIi16i32 R16C:$rSrc, 0xf)>;
3972
3973 def : Pat<(i32 (zext (and R16C:$rSrc, 0xff))),
3974           (ANDIi16i32 R16C:$rSrc, 0xff)>;
3975
3976 def : Pat<(i32 (zext (and R16C:$rSrc, 0xfff))),
3977           (ANDIi16i32 R16C:$rSrc, 0xfff)>;
3978
3979 // anyext 16->32: Extend 16->32 bits, irrespective of sign
3980 def : Pat<(i32 (anyext R16C:$rSrc)),
3981           (ORIi16i32 R16C:$rSrc, 0)>;
3982
3983 //===----------------------------------------------------------------------===//
3984 // Address generation: SPU, like PPC, has to split addresses into high and
3985 // low parts in order to load them into a register.
3986 //===----------------------------------------------------------------------===//
3987
3988 def : Pat<(SPUaform tglobaladdr:$in, 0),  (ILAlsa tglobaladdr:$in)>;
3989 def : Pat<(SPUaform texternalsym:$in, 0), (ILAlsa texternalsym:$in)>;
3990 def : Pat<(SPUaform tjumptable:$in, 0),   (ILAlsa tjumptable:$in)>;
3991 def : Pat<(SPUaform tconstpool:$in, 0),   (ILAlsa  tconstpool:$in)>;
3992
3993 def : Pat<(SPUindirect (SPUhi tglobaladdr:$in, 0),
3994                        (SPUlo tglobaladdr:$in, 0)),
3995           (IOHLlo (ILHUhi tglobaladdr:$in), tglobaladdr:$in)>;
3996
3997 def : Pat<(SPUindirect (SPUhi texternalsym:$in, 0),
3998                        (SPUlo texternalsym:$in, 0)),
3999           (IOHLlo (ILHUhi texternalsym:$in), texternalsym:$in)>;
4000
4001 def : Pat<(SPUindirect (SPUhi tjumptable:$in, 0),
4002                        (SPUlo tjumptable:$in, 0)),
4003           (IOHLlo (ILHUhi tjumptable:$in), tjumptable:$in)>;
4004
4005 def : Pat<(SPUindirect (SPUhi tconstpool:$in, 0),
4006                        (SPUlo tconstpool:$in, 0)),
4007           (IOHLlo (ILHUhi tconstpool:$in), tconstpool:$in)>;
4008
4009 def : Pat<(SPUindirect R32C:$sp, i32ImmSExt10:$imm),
4010           (AIr32 R32C:$sp, i32ImmSExt10:$imm)>;
4011
4012 def : Pat<(SPUindirect R32C:$sp, imm:$imm),
4013           (Ar32 R32C:$sp,
4014                 (IOHLr32 (ILHUr32 (HI16 imm:$imm)), (LO16 imm:$imm)))>;
4015
4016 def : Pat<(add (SPUhi tglobaladdr:$in, 0), (SPUlo tglobaladdr:$in, 0)),
4017           (IOHLlo (ILHUhi tglobaladdr:$in), tglobaladdr:$in)>;
4018
4019 def : Pat<(add (SPUhi texternalsym:$in, 0), (SPUlo texternalsym:$in, 0)),
4020           (IOHLlo (ILHUhi texternalsym:$in), texternalsym:$in)>;
4021
4022 def : Pat<(add (SPUhi tjumptable:$in, 0), (SPUlo tjumptable:$in, 0)),
4023           (IOHLlo (ILHUhi tjumptable:$in), tjumptable:$in)>;
4024
4025 def : Pat<(add (SPUhi tconstpool:$in, 0), (SPUlo tconstpool:$in, 0)),
4026           (IOHLlo (ILHUhi tconstpool:$in), tconstpool:$in)>;
4027
4028 // Instrinsics:
4029 include "CellSDKIntrinsics.td"