blob: 2338a0318bae5eaef07e9f23fc95dcd240a88d3b [file] [log] [blame]
Scott Michel8b6b4202007-12-04 22:35:58 +00001//==- SPUInstrInfo.td - Describe the Cell SPU Instructions -*- tablegen -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel8b6b4202007-12-04 22:35:58 +00007//
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
24let hasCtrlDep = 1, Defs = [R1], Uses = [R1] in {
Scott Michelbc5fbc12008-04-30 00:30:08 +000025 def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm_i32:$amt),
Scott Michel8b6b4202007-12-04 22:35:58 +000026 "${:comment} ADJCALLSTACKDOWN",
Chris Lattnerfe5d4022008-10-11 22:08:30 +000027 [(callseq_start timm:$amt)]>;
Scott Michelbc5fbc12008-04-30 00:30:08 +000028 def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm_i32:$amt),
Scott Michel8b6b4202007-12-04 22:35:58 +000029 "${:comment} ADJCALLSTACKUP",
Chris Lattnerfe5d4022008-10-11 22:08:30 +000030 [(callseq_end timm:$amt)]>;
Scott Michel8b6b4202007-12-04 22:35:58 +000031}
32
33//===----------------------------------------------------------------------===//
34// DWARF debugging Pseudo Instructions
35//===----------------------------------------------------------------------===//
36
37def 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
Dan Gohman5574cc72008-12-03 18:15:48 +000050let canFoldAsLoad = 1 in {
Scott Michelf9f42e62008-01-29 02:16:57 +000051 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 { }
Scott Michel8b6b4202007-12-04 22:35:58 +000057
Scott Michelf9f42e62008-01-29 02:16:57 +000058 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 { }
Scott Michel8b6b4202007-12-04 22:35:58 +000064
Scott Michelf9f42e62008-01-29 02:16:57 +000065 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +000073
Scott Michelf9f42e62008-01-29 02:16:57 +000074 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 }
Scott Michel8b6b4202007-12-04 22:35:58 +000082
Scott Michelf9f42e62008-01-29 02:16:57 +000083 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 { }
Scott Michel8b6b4202007-12-04 22:35:58 +000089
Scott Michelf9f42e62008-01-29 02:16:57 +000090 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 { }
Scott Michel8b6b4202007-12-04 22:35:58 +000096
Scott Michelf9f42e62008-01-29 02:16:57 +000097 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000105
Scott Michelf9f42e62008-01-29 02:16:57 +0000106 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 }
Scott Michel8b6b4202007-12-04 22:35:58 +0000114
Scott Michelf9f42e62008-01-29 02:16:57 +0000115 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 { }
Scott Michel8b6b4202007-12-04 22:35:58 +0000121
Scott Michelf9f42e62008-01-29 02:16:57 +0000122 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 { }
Scott Michel8b6b4202007-12-04 22:35:58 +0000128
Scott Michelf9f42e62008-01-29 02:16:57 +0000129 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000137
Scott Michelf9f42e62008-01-29 02:16:57 +0000138 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 }
Scott Michel8b6b4202007-12-04 22:35:58 +0000146
Scott Michelf9f42e62008-01-29 02:16:57 +0000147 defm LQA : LoadAForms;
148 defm LQD : LoadDForms;
149 defm LQX : LoadXForms;
Scott Michel438be252007-12-17 22:32:34 +0000150
Scott Michel8b6b4202007-12-04 22:35:58 +0000151/* Load quadword, PC relative: Not much use at this point in time.
Scott Michelf9f42e62008-01-29 02:16:57 +0000152 Might be of use later for relocatable code. It's effectively the
153 same as LQA, but uses PC-relative addressing.
Scott Michel8b6b4202007-12-04 22:35:58 +0000154 def LQR : RI16Form<0b111001100, (outs VECREG:$rT), (ins s16imm:$disp),
155 "lqr\t$rT, $disp", LoadStore,
156 [(set VECREG:$rT, (load iaddr:$disp))]>;
157 */
Scott Michel8b6b4202007-12-04 22:35:58 +0000158}
159
160//===----------------------------------------------------------------------===//
161// Stores:
162//===----------------------------------------------------------------------===//
Scott Michelf9f42e62008-01-29 02:16:57 +0000163class 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{ }
Scott Michel8b6b4202007-12-04 22:35:58 +0000169
Scott Michelf9f42e62008-01-29 02:16:57 +0000170class 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{ }
Scott Michel8b6b4202007-12-04 22:35:58 +0000176
Scott Michelf9f42e62008-01-29 02:16:57 +0000177multiclass 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000185
Scott Michelf9f42e62008-01-29 02:16:57 +0000186 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}
Scott Michel8b6b4202007-12-04 22:35:58 +0000194
Scott Michelf9f42e62008-01-29 02:16:57 +0000195class StoreAFormVec<ValueType vectype>
196 : RI16Form<0b0010010, (outs), (ins VECREG:$rT, addr256k:$src),
Scott Michel5a6f17b2008-01-30 02:55:46 +0000197 "stqa\t$rT, $src",
198 LoadStore,
Scott Michel6baba072008-03-05 23:02:02 +0000199 [(store (vectype VECREG:$rT), aform_addr:$src)]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000200
Scott Michelf9f42e62008-01-29 02:16:57 +0000201class StoreAForm<RegisterClass rclass>
202 : RI16Form<0b001001, (outs), (ins rclass:$rT, addr256k:$src),
Scott Michel5a6f17b2008-01-30 02:55:46 +0000203 "stqa\t$rT, $src",
204 LoadStore,
Scott Michel6baba072008-03-05 23:02:02 +0000205 [(store rclass:$rT, aform_addr:$src)]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000206
Scott Michelf9f42e62008-01-29 02:16:57 +0000207multiclass 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000215
Scott Michelf9f42e62008-01-29 02:16:57 +0000216 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}
Scott Michel8b6b4202007-12-04 22:35:58 +0000224
Scott Michelf9f42e62008-01-29 02:16:57 +0000225class StoreXFormVec<ValueType vectype>
226 : RRForm<0b00100100, (outs), (ins VECREG:$rT, memrr:$src),
Scott Michel5a6f17b2008-01-30 02:55:46 +0000227 "stqx\t$rT, $src",
228 LoadStore,
229 [(store (vectype VECREG:$rT), xform_addr:$src)]>
Scott Michelf9f42e62008-01-29 02:16:57 +0000230{ }
Scott Michel8b6b4202007-12-04 22:35:58 +0000231
Scott Michelf9f42e62008-01-29 02:16:57 +0000232class StoreXForm<RegisterClass rclass>
233 : RRForm<0b00100100, (outs), (ins rclass:$rT, memrr:$src),
Scott Michel5a6f17b2008-01-30 02:55:46 +0000234 "stqx\t$rT, $src",
235 LoadStore,
236 [(store rclass:$rT, xform_addr:$src)]>
Scott Michelf9f42e62008-01-29 02:16:57 +0000237{ }
Scott Michel8b6b4202007-12-04 22:35:58 +0000238
Scott Michelf9f42e62008-01-29 02:16:57 +0000239multiclass 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000247
Scott Michelf9f42e62008-01-29 02:16:57 +0000248 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}
Scott Michel8b6b4202007-12-04 22:35:58 +0000256
Scott Michelf9f42e62008-01-29 02:16:57 +0000257defm STQD : StoreDForms;
258defm STQA : StoreAForms;
259defm STQX : StoreXForms;
Scott Michel8b6b4202007-12-04 22:35:58 +0000260
261/* Store quadword, PC relative: Not much use at this point in time. Might
Scott Michelf9f42e62008-01-29 02:16:57 +0000262 be useful for relocatable code.
Chris Lattneref8d6082008-01-06 06:44:58 +0000263def STQR : RI16Form<0b111000100, (outs), (ins VECREG:$rT, s16imm:$disp),
264 "stqr\t$rT, $disp", LoadStore,
265 [(store VECREG:$rT, iaddr:$disp)]>;
266*/
Scott Michel8b6b4202007-12-04 22:35:58 +0000267
268//===----------------------------------------------------------------------===//
269// Generate Controls for Insertion:
270//===----------------------------------------------------------------------===//
271
Scott Michel0718cd82008-12-01 17:56:02 +0000272def CBD: RI7Form<0b10101111100, (outs VECREG:$rT), (ins memri7:$src),
273 "cbd\t$rT, $src", ShuffleOp,
274 [(set (v16i8 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000275
Scott Michel0718cd82008-12-01 17:56:02 +0000276def CBX: RRForm<0b00101011100, (outs VECREG:$rT), (ins memrr:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000277 "cbx\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000278 [(set (v16i8 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000279
Scott Michel0718cd82008-12-01 17:56:02 +0000280def CHD: RI7Form<0b10101111100, (outs VECREG:$rT), (ins memri7:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000281 "chd\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000282 [(set (v8i16 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000283
Scott Michel0718cd82008-12-01 17:56:02 +0000284def CHX: RRForm<0b10101011100, (outs VECREG:$rT), (ins memrr:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000285 "chx\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000286 [(set (v8i16 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000287
Scott Michel0718cd82008-12-01 17:56:02 +0000288def CWD: RI7Form<0b01101111100, (outs VECREG:$rT), (ins memri7:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000289 "cwd\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000290 [(set (v4i32 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000291
Scott Michel0718cd82008-12-01 17:56:02 +0000292def CWX: RRForm<0b01101011100, (outs VECREG:$rT), (ins memrr:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000293 "cwx\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000294 [(set (v4i32 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000295
Scott Michel0718cd82008-12-01 17:56:02 +0000296def 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
300def CWXf32: RRForm<0b01101011100, (outs VECREG:$rT), (ins memrr:$src),
Scott Michelbc5fbc12008-04-30 00:30:08 +0000301 "cwx\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000302 [(set (v4f32 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
Scott Michelbc5fbc12008-04-30 00:30:08 +0000303
Scott Michel0718cd82008-12-01 17:56:02 +0000304def CDD: RI7Form<0b11101111100, (outs VECREG:$rT), (ins memri7:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000305 "cdd\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000306 [(set (v2i64 VECREG:$rT), (SPUshufmask dform2_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000307
Scott Michel0718cd82008-12-01 17:56:02 +0000308def CDX: RRForm<0b11101011100, (outs VECREG:$rT), (ins memrr:$src),
Scott Michel8b6b4202007-12-04 22:35:58 +0000309 "cdx\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000310 [(set (v2i64 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000311
Scott Michel0718cd82008-12-01 17:56:02 +0000312def 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
316def CDXf64: RRForm<0b11101011100, (outs VECREG:$rT), (ins memrr:$src),
Scott Michelbc5fbc12008-04-30 00:30:08 +0000317 "cdx\t$rT, $src", ShuffleOp,
Scott Michel56a125e2008-11-22 23:50:42 +0000318 [(set (v2f64 VECREG:$rT), (SPUshufmask xform_addr:$src))]>;
Scott Michelbc5fbc12008-04-30 00:30:08 +0000319
Scott Michel8b6b4202007-12-04 22:35:58 +0000320//===----------------------------------------------------------------------===//
321// Constant formation:
322//===----------------------------------------------------------------------===//
323
324def 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
329def ILHr16:
330 RI16Form<0b110000010, (outs R16C:$rT), (ins s16imm:$val),
331 "ilh\t$rT, $val", ImmLoad,
332 [(set R16C:$rT, immSExt16:$val)]>;
333
Scott Michel438be252007-12-17 22:32:34 +0000334// Cell SPU doesn't have a native 8-bit immediate load, but ILH works ("with
335// the right constant")
336def ILHr8:
337 RI16Form<0b110000010, (outs R8C:$rT), (ins s16imm_i8:$val),
338 "ilh\t$rT, $val", ImmLoad,
339 [(set R8C:$rT, immSExt8:$val)]>;
340
Scott Michel8b6b4202007-12-04 22:35:58 +0000341// IL does sign extension!
Scott Michel8b6b4202007-12-04 22:35:58 +0000342
Scott Michel6baba072008-03-05 23:02:02 +0000343class ILInst<dag OOL, dag IOL, list<dag> pattern>:
344 RI16Form<0b100000010, OOL, IOL, "il\t$rT, $val",
345 ImmLoad, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000346
Scott Michel6baba072008-03-05 23:02:02 +0000347class ILVecInst<ValueType vectype, Operand immtype, PatLeaf xform>:
348 ILInst<(outs VECREG:$rT), (ins immtype:$val),
349 [(set (vectype VECREG:$rT), (vectype xform:$val))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000350
Scott Michel6baba072008-03-05 23:02:02 +0000351class ILRegInst<RegisterClass rclass, Operand immtype, PatLeaf xform>:
352 ILInst<(outs rclass:$rT), (ins immtype:$val),
353 [(set rclass:$rT, xform:$val)]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000354
Scott Michel6baba072008-03-05 23:02:02 +0000355multiclass ImmediateLoad
356{
357 def v2i64: ILVecInst<v2i64, s16imm_i64, v2i64SExt16Imm>;
358 def v4i32: ILVecInst<v4i32, s16imm_i32, v4i32SExt16Imm>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000359
Scott Michel6baba072008-03-05 23:02:02 +0000360 // TODO: Need v2f64, v4f32
Scott Michel8b6b4202007-12-04 22:35:58 +0000361
Scott Michel6baba072008-03-05 23:02:02 +0000362 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}
Scott Michel8b6b4202007-12-04 22:35:58 +0000367
Scott Michel6baba072008-03-05 23:02:02 +0000368defm IL : ImmediateLoad;
Scott Michel8b6b4202007-12-04 22:35:58 +0000369
Scott Michel6baba072008-03-05 23:02:02 +0000370class ILHUInst<dag OOL, dag IOL, list<dag> pattern>:
371 RI16Form<0b010000010, OOL, IOL, "ilhu\t$rT, $val",
372 ImmLoad, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000373
Scott Michel6baba072008-03-05 23:02:02 +0000374class ILHUVecInst<ValueType vectype, Operand immtype, PatLeaf xform>:
375 ILHUInst<(outs VECREG:$rT), (ins immtype:$val),
376 [(set (vectype VECREG:$rT), (vectype xform:$val))]>;
377
378class ILHURegInst<RegisterClass rclass, Operand immtype, PatLeaf xform>:
379 ILHUInst<(outs rclass:$rT), (ins immtype:$val),
380 [(set rclass:$rT, xform:$val)]>;
381
382multiclass ImmLoadHalfwordUpper
383{
384 def v2i64: ILHUVecInst<v2i64, u16imm_i64, immILHUvec_i64>;
Scott Michelbc5fbc12008-04-30 00:30:08 +0000385 def v4i32: ILHUVecInst<v4i32, u16imm_i32, immILHUvec>;
Scott Michel6baba072008-03-05 23:02:02 +0000386
387 def r64: ILHURegInst<R64C, u16imm_i64, hi16>;
Scott Michelbc5fbc12008-04-30 00:30:08 +0000388 def r32: ILHURegInst<R32C, u16imm_i32, hi16>;
Scott Michel6baba072008-03-05 23:02:02 +0000389
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
397defm ILHU : ImmLoadHalfwordUpper;
Scott Michel8b6b4202007-12-04 22:35:58 +0000398
399// Immediate load address (can also be used to load 18-bit unsigned constants,
400// see the zext 16->32 pattern)
Scott Michel6baba072008-03-05 23:02:02 +0000401
Scott Michel97872d32008-02-23 18:41:37 +0000402class ILAInst<dag OOL, dag IOL, list<dag> pattern>:
403 RI18Form<0b1000010, OOL, IOL, "ila\t$rT, $val",
404 LoadNOP, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000405
Scott Michel6baba072008-03-05 23:02:02 +0000406class ILAVecInst<ValueType vectype, Operand immtype, PatLeaf xform>:
407 ILAInst<(outs VECREG:$rT), (ins immtype:$val),
408 [(set (vectype VECREG:$rT), (vectype xform:$val))]>;
409
410class ILARegInst<RegisterClass rclass, Operand immtype, PatLeaf xform>:
411 ILAInst<(outs rclass:$rT), (ins immtype:$val),
412 [(set rclass:$rT, xform:$val)]>;
413
Scott Michel97872d32008-02-23 18:41:37 +0000414multiclass ImmLoadAddress
415{
Scott Michel6baba072008-03-05 23:02:02 +0000416 def v2i64: ILAVecInst<v2i64, u18imm, v2i64Uns18Imm>;
417 def v4i32: ILAVecInst<v4i32, u18imm, v4i32Uns18Imm>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000418
Scott Michel6baba072008-03-05 23:02:02 +0000419 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000423
Scott Michel6baba072008-03-05 23:02:02 +0000424 def lo: ILARegInst<R32C, symbolLo, imm18>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000425
Scott Michel97872d32008-02-23 18:41:37 +0000426 def lsa: ILAInst<(outs R32C:$rT), (ins symbolLSA:$val),
427 [/* no pattern */]>;
428}
429
430defm ILA : ImmLoadAddress;
Scott Michel8b6b4202007-12-04 22:35:58 +0000431
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
Scott Michel6baba072008-03-05 23:02:02 +0000437class 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">;
Scott Michel8b6b4202007-12-04 22:35:58 +0000442
Scott Michel6baba072008-03-05 23:02:02 +0000443class IOHLVecInst<ValueType vectype, Operand immtype /* , PatLeaf xform */>:
444 IOHLInst<(outs VECREG:$rT), (ins VECREG:$rS, immtype:$val),
445 [/* no pattern */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000446
Scott Michel6baba072008-03-05 23:02:02 +0000447class IOHLRegInst<RegisterClass rclass, Operand immtype /* , PatLeaf xform */>:
448 IOHLInst<(outs rclass:$rT), (ins rclass:$rS, immtype:$val),
449 [/* no pattern */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000450
Scott Michel6baba072008-03-05 23:02:02 +0000451multiclass ImmOrHalfwordLower
452{
453 def v2i64: IOHLVecInst<v2i64, u16imm_i64>;
Scott Michelbc5fbc12008-04-30 00:30:08 +0000454 def v4i32: IOHLVecInst<v4i32, u16imm_i32>;
Scott Michel6baba072008-03-05 23:02:02 +0000455
456 def r32: IOHLRegInst<R32C, i32imm>;
457 def f32: IOHLRegInst<R32FP, f32imm>;
458
459 def lo: IOHLRegInst<R32C, symbolLo>;
460}
461
462defm IOHL: ImmOrHalfwordLower;
Scott Micheldbac4cf2008-01-11 02:53:15 +0000463
Scott Michel8b6b4202007-12-04 22:35:58 +0000464// Form select mask for bytes using immediate, used in conjunction with the
465// SELB instruction:
466
Scott Michel6baba072008-03-05 23:02:02 +0000467class FSMBIVec<ValueType vectype>:
468 RI16Form<0b101001100, (outs VECREG:$rT), (ins u16imm:$val),
469 "fsmbi\t$rT, $val",
470 SelectOp,
Scott Michel67224b22008-06-02 22:18:03 +0000471 [(set (vectype VECREG:$rT), (SPUselmask (i16 immU16:$val)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000472
Scott Michel97872d32008-02-23 18:41:37 +0000473multiclass FormSelectMaskBytesImm
Scott Michelf9f42e62008-01-29 02:16:57 +0000474{
475 def v16i8: FSMBIVec<v16i8>;
476 def v8i16: FSMBIVec<v8i16>;
477 def v4i32: FSMBIVec<v4i32>;
478 def v2i64: FSMBIVec<v2i64>;
479}
Scott Michel8b6b4202007-12-04 22:35:58 +0000480
Scott Michel97872d32008-02-23 18:41:37 +0000481defm FSMBI : FormSelectMaskBytesImm;
482
483// fsmb: Form select mask for bytes. N.B. Input operand, $rA, is 16-bits
484def FSMB:
485 RRForm_1<0b01101101100, (outs VECREG:$rT), (ins R16C:$rA),
Scott Michel6baba072008-03-05 23:02:02 +0000486 "fsmb\t$rT, $rA", SelectOp,
Scott Michel67224b22008-06-02 22:18:03 +0000487 [(set (v16i8 VECREG:$rT), (SPUselmask R16C:$rA))]>;
Scott Michel97872d32008-02-23 18:41:37 +0000488
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)
491def FSMH:
492 RRForm_1<0b10101101100, (outs VECREG:$rT), (ins R16C:$rA),
493 "fsmh\t$rT, $rA", SelectOp,
Scott Michel67224b22008-06-02 22:18:03 +0000494 [(set (v8i16 VECREG:$rT), (SPUselmask R16C:$rA))]>;
Scott Michel97872d32008-02-23 18:41:37 +0000495
496// fsm: Form select mask for words. Like the other fsm* instructions,
497// only the lower 4 bits of $rA are significant.
Scott Michel67224b22008-06-02 22:18:03 +0000498class 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
504multiclass FormSelectMaskWord {
505 def r32 : FSMInst<v4i32, R32C>;
506 def r16 : FSMInst<v4i32, R16C>;
507}
508
509defm FSM : FormSelectMaskWord;
510
511// Special case when used for i64 math operations
512multiclass FormSelectMaskWord64 {
513 def r32 : FSMInst<v2i64, R32C>;
514 def r16 : FSMInst<v2i64, R16C>;
515}
516
517defm FSM64 : FormSelectMaskWord64;
Scott Michel8b6b4202007-12-04 22:35:58 +0000518
519//===----------------------------------------------------------------------===//
520// Integer and Logical Operations:
521//===----------------------------------------------------------------------===//
522
523def 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
528def : Pat<(add (v8i16 VECREG:$rA), (v8i16 VECREG:$rB)),
529 (AHv8i16 VECREG:$rA, VECREG:$rB)>;
530
Scott Michel8b6b4202007-12-04 22:35:58 +0000531def 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
536def 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
Scott Michel97872d32008-02-23 18:41:37 +0000542def 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000546
Scott Michel97872d32008-02-23 18:41:37 +0000547def 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000551
552def : Pat<(add (v16i8 VECREG:$rA), (v16i8 VECREG:$rB)),
553 (Avec VECREG:$rA, VECREG:$rB)>;
554
Scott Michel97872d32008-02-23 18:41:37 +0000555def 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000559
Scott Michel438be252007-12-17 22:32:34 +0000560def Ar8:
561 RRForm<0b00000011000, (outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
562 "a\t$rT, $rA, $rB", IntegerOp,
Scott Michel67224b22008-06-02 22:18:03 +0000563 [/* no pattern */]>;
Scott Michel438be252007-12-17 22:32:34 +0000564
Scott Michel8b6b4202007-12-04 22:35:58 +0000565def 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
Scott Michel438be252007-12-17 22:32:34 +0000571def 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000575
Scott Michel438be252007-12-17 22:32:34 +0000576def 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000581
Scott Michel438be252007-12-17 22:32:34 +0000582def 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000586
587def 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
593def 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
597def 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
602def 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
606def 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
612def 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.
Scott Michel67224b22008-06-02 22:18:03 +0000618class ADDXInst<dag OOL, dag IOL, list<dag> pattern>:
619 RRForm<0b00000010110, OOL, IOL,
620 "addx\t$rT, $rA, $rB",
621 IntegerOp, pattern>;
622
623class 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)))]>,
Scott Michel8b6b4202007-12-04 22:35:58 +0000629 RegConstraint<"$rCarry = $rT">,
630 NoEncode<"$rCarry">;
631
Scott Michel67224b22008-06-02 22:18:03 +0000632class 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))]>,
Scott Michel8b6b4202007-12-04 22:35:58 +0000637 RegConstraint<"$rCarry = $rT">,
638 NoEncode<"$rCarry">;
639
Scott Michel67224b22008-06-02 22:18:03 +0000640multiclass AddExtended {
641 def v2i64 : ADDXVecInst<v2i64>;
642 def v4i32 : ADDXVecInst<v4i32>;
643 def r64 : ADDXRegInst<R64C>;
644 def r32 : ADDXRegInst<R32C>;
645}
646
647defm ADDX : AddExtended;
648
649// CG: Generate carry for add
650class CGInst<dag OOL, dag IOL, list<dag> pattern>:
651 RRForm<0b01000011000, OOL, IOL,
652 "cg\t$rT, $rA, $rB",
653 IntegerOp, pattern>;
654
655class 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
661class 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
667multiclass CarryGenerate {
668 def v2i64 : CGVecInst<v2i64>;
669 def v4i32 : CGVecInst<v4i32>;
670 def r64 : CGRegInst<R64C>;
671 def r32 : CGRegInst<R32C>;
672}
673
674defm CG : CarryGenerate;
675
676// SFX: Subract from, extended. This is used in conjunction with BG to subtract
677// with carry (borrow, in this case)
678class SFXInst<dag OOL, dag IOL, list<dag> pattern>:
679 RRForm<0b10000010110, OOL, IOL,
680 "sfx\t$rT, $rA, $rB",
681 IntegerOp, pattern>;
682
683class 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)))]>,
Scott Michel8b6b4202007-12-04 22:35:58 +0000689 RegConstraint<"$rCarry = $rT">,
690 NoEncode<"$rCarry">;
691
Scott Michel67224b22008-06-02 22:18:03 +0000692class 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
700multiclass SubtractExtended {
701 def v2i64 : SFXVecInst<v2i64>;
702 def v4i32 : SFXVecInst<v4i32>;
703 def r64 : SFXRegInst<R64C>;
704 def r32 : SFXRegInst<R32C>;
705}
706
707defm SFX : SubtractExtended;
708
Scott Michel8b6b4202007-12-04 22:35:58 +0000709// BG: only available in vector form, doesn't match a pattern.
Scott Michel67224b22008-06-02 22:18:03 +0000710class BGInst<dag OOL, dag IOL, list<dag> pattern>:
711 RRForm<0b01000010000, OOL, IOL,
712 "bg\t$rT, $rA, $rB",
713 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000714
Scott Michel67224b22008-06-02 22:18:03 +0000715class 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
721class 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
727multiclass BorrowGenerate {
728 def v4i32 : BGVecInst<v4i32>;
729 def v2i64 : BGVecInst<v2i64>;
730 def r64 : BGRegInst<R64C>;
731 def r32 : BGRegInst<R32C>;
732}
733
734defm BG : BorrowGenerate;
735
736// BGX: Borrow generate, extended.
Scott Michel8b6b4202007-12-04 22:35:58 +0000737def 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
748def 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
754def 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
759def 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
765def 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
771def 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)
778def 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
783def 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
790def MPYUIvec:
791 RI10Form<0b10101110, (outs VECREG:$rT), (ins VECREG:$rA, s10imm:$val),
792 "mpyui\t$rT, $rA, $val", IntegerMulDiv,
793 []>;
794
795def 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
801def 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
808def 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
814def : Pat<(add (mul (sext R16C:$rA), (sext R16C:$rB)), R32C:$rC),
815 (MPYAr32 R16C:$rA, R16C:$rB, R32C:$rC)>;
816
817def 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
831def 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
837def 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.)
844def MPYSvec:
845 RRForm<0b11100011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
846 "mpys\t$rT, $rA, $rB", IntegerMulDiv,
847 []>;
848
849def 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)
856def 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
862def 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:
868def MPYHHAvec:
869 RRForm<0b01100010110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
870 "mpyhha\t$rT, $rA, $rB", IntegerMulDiv,
871 []>;
872
873def 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
879def MPYHHUvec:
880 RRForm<0b01110011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
881 "mpyhhu\t$rT, $rA, $rB", IntegerMulDiv,
882 []>;
883
884def 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
890def MPYHHAUvec:
891 RRForm<0b01110010110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
892 "mpyhhau\t$rT, $rA, $rB", IntegerMulDiv,
893 []>;
894
895def 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
901def CLZv4i32:
902 RRForm_1<0b10100101010, (outs VECREG:$rT), (ins VECREG:$rA),
903 "clz\t$rT, $rA", IntegerOp,
904 [/* intrinsic */]>;
905
906def 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!
915def CNTBv16i8:
916 RRForm_1<0b00101101010, (outs VECREG:$rT), (ins VECREG:$rA),
917 "cntb\t$rT, $rA", IntegerOp,
Scott Michel67224b22008-06-02 22:18:03 +0000918 [(set (v16i8 VECREG:$rT), (SPUcntb (v16i8 VECREG:$rA)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000919
920def CNTBv8i16 :
921 RRForm_1<0b00101101010, (outs VECREG:$rT), (ins VECREG:$rA),
922 "cntb\t$rT, $rA", IntegerOp,
Scott Michel67224b22008-06-02 22:18:03 +0000923 [(set (v8i16 VECREG:$rT), (SPUcntb (v8i16 VECREG:$rA)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000924
925def CNTBv4i32 :
926 RRForm_1<0b00101101010, (outs VECREG:$rT), (ins VECREG:$rA),
927 "cntb\t$rT, $rA", IntegerOp,
Scott Michel67224b22008-06-02 22:18:03 +0000928 [(set (v4i32 VECREG:$rT), (SPUcntb (v4i32 VECREG:$rA)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000929
Scott Michel8b6b4202007-12-04 22:35:58 +0000930// gbb: Gather all low order bits from each byte in $rA into a single 16-bit
931// quantity stored into $rT
932def 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
939def 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
946def GB:
947 RRForm_1<0b00001101100, (outs R16C:$rT), (ins VECREG:$rA),
948 "gb\t$rT, $rA", GatherOp,
949 []>;
950
951// avgb: average bytes
952def 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
958def 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
964def 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:
Scott Michel67224b22008-06-02 22:18:03 +0000970class XSBHInst<dag OOL, dag IOL, list<dag> pattern>:
971 RRForm_1<0b01101101010, OOL, IOL,
972 "xsbh\t$rDst, $rSrc",
973 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000974
Scott Michel67224b22008-06-02 22:18:03 +0000975class XSBHVecInst<ValueType vectype>:
976 XSBHInst<(outs VECREG:$rDst), (ins VECREG:$rSrc),
977 [(set (v8i16 VECREG:$rDst), (sext (vectype VECREG:$rSrc)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +0000978
Scott Michel67224b22008-06-02 22:18:03 +0000979class XSBHRegInst<RegisterClass rclass>:
980 XSBHInst<(outs rclass:$rDst), (ins rclass:$rSrc),
981 [(set rclass:$rDst, (sext_inreg rclass:$rSrc, i8))]>;
982
983multiclass 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
995defm XSBH : ExtendByteHalfword;
996
997// Sign-extend, but take an 8-bit register to a 16-bit register (not done as
998// sext_inreg)
Scott Michel438be252007-12-17 22:32:34 +0000999def XSBHr8:
Scott Michel67224b22008-06-02 22:18:03 +00001000 XSBHInst<(outs R16C:$rDst), (ins R8C:$rSrc),
1001 [(set R16C:$rDst, (sext R8C:$rSrc))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001002
1003// Sign extend halfwords to words:
1004def 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
1009def 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
1014def 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
1019def 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
1024def 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
1029def 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
1034def : Pat<(sext R32C:$inp),
1035 (XSWDr32 R32C:$inp)>;
1036
1037// AND operations
Scott Michel8b6b4202007-12-04 22:35:58 +00001038
Scott Michel97872d32008-02-23 18:41:37 +00001039class ANDInst<dag OOL, dag IOL, list<dag> pattern> :
1040 RRForm<0b10000011000, OOL, IOL, "and\t$rT, $rA, $rB",
1041 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001042
Scott Michel97872d32008-02-23 18:41:37 +00001043class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001047
Scott Michel6baba072008-03-05 23:02:02 +00001048class ANDRegInst<RegisterClass rclass>:
1049 ANDInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1050 [(set rclass:$rT, (and rclass:$rA, rclass:$rB))]>;
1051
Scott Michel97872d32008-02-23 18:41:37 +00001052multiclass BitwiseAnd
1053{
1054 def v16i8: ANDVecInst<v16i8>;
1055 def v8i16: ANDVecInst<v8i16>;
1056 def v4i32: ANDVecInst<v4i32>;
1057 def v2i64: ANDVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001058
Scott Michel6baba072008-03-05 23:02:02 +00001059 def r128: ANDRegInst<GPRC>;
1060 def r64: ANDRegInst<R64C>;
1061 def r32: ANDRegInst<R32C>;
1062 def r16: ANDRegInst<R16C>;
1063 def r8: ANDRegInst<R8C>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001064
Scott Michel97872d32008-02-23 18:41:37 +00001065 //===---------------------------------------------
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 */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001069
Scott Michel97872d32008-02-23 18:41:37 +00001070 def fabs64: ANDInst<(outs R64FP:$rT), (ins R64FP:$rA, VECREG:$rB),
1071 [/* Intentionally does not match a pattern */]>;
Scott Michel438be252007-12-17 22:32:34 +00001072
Scott Michel97872d32008-02-23 18:41:37 +00001073 // 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
1089defm AND : BitwiseAnd;
Scott Michel8b6b4202007-12-04 22:35:58 +00001090
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.)
Scott Michel8b6b4202007-12-04 22:35:58 +00001095
Scott Michel97872d32008-02-23 18:41:37 +00001096class ANDCInst<dag OOL, dag IOL, list<dag> pattern>:
1097 RRForm<0b10000011010, OOL, IOL, "andc\t$rT, $rA, $rB",
1098 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001099
Scott Michel97872d32008-02-23 18:41:37 +00001100class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001104
Scott Michel97872d32008-02-23 18:41:37 +00001105class ANDCRegInst<RegisterClass rclass>:
1106 ANDCInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1107 [(set rclass:$rT, (and rclass:$rA, (not rclass:$rB)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001108
Scott Michel97872d32008-02-23 18:41:37 +00001109multiclass AndComplement
1110{
1111 def v16i8: ANDCVecInst<v16i8>;
1112 def v8i16: ANDCVecInst<v8i16>;
1113 def v4i32: ANDCVecInst<v4i32>;
1114 def v2i64: ANDCVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001115
Scott Michel97872d32008-02-23 18:41:37 +00001116 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}
Scott Michel438be252007-12-17 22:32:34 +00001122
Scott Michel97872d32008-02-23 18:41:37 +00001123defm ANDC : AndComplement;
Scott Michel8b6b4202007-12-04 22:35:58 +00001124
Scott Michel97872d32008-02-23 18:41:37 +00001125class ANDBIInst<dag OOL, dag IOL, list<dag> pattern>:
1126 RI10Form<0b01101000, OOL, IOL, "andbi\t$rT, $rA, $val",
Scott Michel61895fe2008-12-10 00:15:19 +00001127 ByteOp, pattern>;
Scott Michel438be252007-12-17 22:32:34 +00001128
Scott Michel97872d32008-02-23 18:41:37 +00001129multiclass 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001135
Scott Michel97872d32008-02-23 18:41:37 +00001136 def r8: ANDBIInst<(outs R8C:$rT), (ins R8C:$rA, u10imm_i8:$val),
1137 [(set R8C:$rT, (and R8C:$rA, immU8:$val))]>;
1138}
Scott Michel438be252007-12-17 22:32:34 +00001139
Scott Michel97872d32008-02-23 18:41:37 +00001140defm ANDBI : AndByteImm;
Scott Michel8b6b4202007-12-04 22:35:58 +00001141
Scott Michel97872d32008-02-23 18:41:37 +00001142class ANDHIInst<dag OOL, dag IOL, list<dag> pattern> :
1143 RI10Form<0b10101000, OOL, IOL, "andhi\t$rT, $rA, $val",
Scott Michel61895fe2008-12-10 00:15:19 +00001144 ByteOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001145
Scott Michel97872d32008-02-23 18:41:37 +00001146multiclass 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001151
Scott Michel97872d32008-02-23 18:41:37 +00001152 def r16: ANDHIInst<(outs R16C:$rT), (ins R16C:$rA, u10imm:$val),
1153 [(set R16C:$rT, (and R16C:$rA, i16ImmUns10:$val))]>;
Scott Michel438be252007-12-17 22:32:34 +00001154
Scott Michel97872d32008-02-23 18:41:37 +00001155 // 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00001159
Scott Michel97872d32008-02-23 18:41:37 +00001160defm ANDHI : AndHalfwordImm;
1161
1162class ANDIInst<dag OOL, dag IOL, list<dag> pattern> :
1163 RI10Form<0b00101000, OOL, IOL, "andi\t$rT, $rA, $val",
1164 IntegerOp, pattern>;
1165
1166multiclass 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
1191defm ANDI : AndWordImm;
1192
1193//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00001194// Bitwise OR group:
Scott Michel97872d32008-02-23 18:41:37 +00001195//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1196
Scott Michel8b6b4202007-12-04 22:35:58 +00001197// Bitwise "or" (N.B.: These are also register-register copy instructions...)
Scott Michel97872d32008-02-23 18:41:37 +00001198class ORInst<dag OOL, dag IOL, list<dag> pattern>:
1199 RRForm<0b10000010000, OOL, IOL, "or\t$rT, $rA, $rB",
1200 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001201
Scott Michel97872d32008-02-23 18:41:37 +00001202class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001206
Scott Michel97872d32008-02-23 18:41:37 +00001207class ORRegInst<RegisterClass rclass>:
1208 ORInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1209 [(set rclass:$rT, (or rclass:$rA, rclass:$rB))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001210
Scott Michel97872d32008-02-23 18:41:37 +00001211class ORPromoteScalar<RegisterClass rclass>:
1212 ORInst<(outs VECREG:$rT), (ins rclass:$rA, rclass:$rB),
1213 [/* no pattern */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001214
Scott Michel97872d32008-02-23 18:41:37 +00001215class ORExtractElt<RegisterClass rclass>:
1216 ORInst<(outs rclass:$rT), (ins VECREG:$rA, VECREG:$rB),
1217 [/* no pattern */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001218
Scott Michel97872d32008-02-23 18:41:37 +00001219multiclass BitwiseOr
1220{
1221 def v16i8: ORVecInst<v16i8>;
1222 def v8i16: ORVecInst<v8i16>;
1223 def v4i32: ORVecInst<v4i32>;
1224 def v2i64: ORVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001225
Scott Michel97872d32008-02-23 18:41:37 +00001226 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)))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001230
Scott Michel97872d32008-02-23 18:41:37 +00001231 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)))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001235
Scott Michel97872d32008-02-23 18:41:37 +00001236 def r64: ORRegInst<R64C>;
1237 def r32: ORRegInst<R32C>;
1238 def r16: ORRegInst<R16C>;
1239 def r8: ORRegInst<R8C>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001240
Scott Michel97872d32008-02-23 18:41:37 +00001241 // OR instructions used to copy f32 and f64 registers.
1242 def f32: ORInst<(outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
1243 [/* no pattern */]>;
Scott Michel438be252007-12-17 22:32:34 +00001244
Scott Michel97872d32008-02-23 18:41:37 +00001245 def f64: ORInst<(outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
1246 [/* no pattern */]>;
Scott Michel754d8662007-12-20 00:44:13 +00001247
Scott Michel97872d32008-02-23 18:41:37 +00001248 // 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>;
Scott Michel754d8662007-12-20 00:44:13 +00001255
Scott Michel97872d32008-02-23 18:41:37 +00001256 // 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}
Scott Michel438be252007-12-17 22:32:34 +00001264
Scott Michel97872d32008-02-23 18:41:37 +00001265defm OR : BitwiseOr;
1266
1267// scalar->vector promotion patterns:
Scott Michel438be252007-12-17 22:32:34 +00001268def : Pat<(v16i8 (SPUpromote_scalar R8C:$rA)),
Scott Michel5a6f17b2008-01-30 02:55:46 +00001269 (ORv16i8_i8 R8C:$rA, R8C:$rA)>;
Scott Michel438be252007-12-17 22:32:34 +00001270
Scott Michel8b6b4202007-12-04 22:35:58 +00001271def : Pat<(v8i16 (SPUpromote_scalar R16C:$rA)),
1272 (ORv8i16_i16 R16C:$rA, R16C:$rA)>;
1273
Scott Michel8b6b4202007-12-04 22:35:58 +00001274def : Pat<(v4i32 (SPUpromote_scalar R32C:$rA)),
1275 (ORv4i32_i32 R32C:$rA, R32C:$rA)>;
1276
Scott Michel8b6b4202007-12-04 22:35:58 +00001277def : Pat<(v2i64 (SPUpromote_scalar R64C:$rA)),
1278 (ORv2i64_i64 R64C:$rA, R64C:$rA)>;
1279
Scott Michel8b6b4202007-12-04 22:35:58 +00001280def : Pat<(v4f32 (SPUpromote_scalar R32FP:$rA)),
1281 (ORv4f32_f32 R32FP:$rA, R32FP:$rA)>;
1282
Scott Michel8b6b4202007-12-04 22:35:58 +00001283def : 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)
Scott Michel438be252007-12-17 22:32:34 +00001287
Scott Michelc630c412008-11-24 17:11:17 +00001288def : Pat<(SPUvec2prefslot (v16i8 VECREG:$rA)),
Scott Michel5a6f17b2008-01-30 02:55:46 +00001289 (ORi8_v16i8 VECREG:$rA, VECREG:$rA)>;
Scott Michel438be252007-12-17 22:32:34 +00001290
Scott Michelc630c412008-11-24 17:11:17 +00001291def : Pat<(SPUvec2prefslot (v8i16 VECREG:$rA)),
Scott Michel8b6b4202007-12-04 22:35:58 +00001292 (ORi16_v8i16 VECREG:$rA, VECREG:$rA)>;
1293
Scott Michelc630c412008-11-24 17:11:17 +00001294def : Pat<(SPUvec2prefslot (v4i32 VECREG:$rA)),
Scott Michel8b6b4202007-12-04 22:35:58 +00001295 (ORi32_v4i32 VECREG:$rA, VECREG:$rA)>;
1296
Scott Michelc630c412008-11-24 17:11:17 +00001297def : Pat<(SPUvec2prefslot (v2i64 VECREG:$rA)),
Scott Michel8b6b4202007-12-04 22:35:58 +00001298 (ORi64_v2i64 VECREG:$rA, VECREG:$rA)>;
1299
Scott Michelc630c412008-11-24 17:11:17 +00001300def : Pat<(SPUvec2prefslot (v4f32 VECREG:$rA)),
Scott Michel8b6b4202007-12-04 22:35:58 +00001301 (ORf32_v4f32 VECREG:$rA, VECREG:$rA)>;
1302
Scott Michelc630c412008-11-24 17:11:17 +00001303def : Pat<(SPUvec2prefslot (v2f64 VECREG:$rA)),
Scott Michel8b6b4202007-12-04 22:35:58 +00001304 (ORf64_v2f64 VECREG:$rA, VECREG:$rA)>;
1305
Scott Michel97872d32008-02-23 18:41:37 +00001306// ORC: Bitwise "or" with complement (c = a | ~b)
Scott Michel8b6b4202007-12-04 22:35:58 +00001307
Scott Michel97872d32008-02-23 18:41:37 +00001308class ORCInst<dag OOL, dag IOL, list<dag> pattern>:
1309 RRForm<0b10010010000, OOL, IOL, "orc\t$rT, $rA, $rB",
1310 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001311
Scott Michel97872d32008-02-23 18:41:37 +00001312class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001316
Scott Michel97872d32008-02-23 18:41:37 +00001317class ORCRegInst<RegisterClass rclass>:
1318 ORCInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1319 [(set rclass:$rT, (or rclass:$rA, (not rclass:$rB)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001320
Scott Michel97872d32008-02-23 18:41:37 +00001321multiclass BitwiseOrComplement
1322{
1323 def v16i8: ORCVecInst<v16i8>;
1324 def v8i16: ORCVecInst<v8i16>;
1325 def v4i32: ORCVecInst<v4i32>;
1326 def v2i64: ORCVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001327
Scott Michel97872d32008-02-23 18:41:37 +00001328 def r64: ORCRegInst<R64C>;
1329 def r32: ORCRegInst<R32C>;
1330 def r16: ORCRegInst<R16C>;
1331 def r8: ORCRegInst<R8C>;
1332}
1333
1334defm ORC : BitwiseOrComplement;
Scott Michel438be252007-12-17 22:32:34 +00001335
Scott Michel8b6b4202007-12-04 22:35:58 +00001336// OR byte immediate
Scott Michel97872d32008-02-23 18:41:37 +00001337class ORBIInst<dag OOL, dag IOL, list<dag> pattern>:
1338 RI10Form<0b01100000, OOL, IOL, "orbi\t$rT, $rA, $val",
1339 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001340
Scott Michel97872d32008-02-23 18:41:37 +00001341class 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
1346multiclass 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
1354defm ORBI : BitwiseOrByteImm;
Scott Michel438be252007-12-17 22:32:34 +00001355
Scott Michel8b6b4202007-12-04 22:35:58 +00001356// OR halfword immediate
Scott Michel97872d32008-02-23 18:41:37 +00001357class ORHIInst<dag OOL, dag IOL, list<dag> pattern>:
1358 RI10Form<0b10100000, OOL, IOL, "orhi\t$rT, $rA, $val",
1359 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001360
Scott Michel97872d32008-02-23 18:41:37 +00001361class 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))]>;
Scott Michel438be252007-12-17 22:32:34 +00001365
Scott Michel97872d32008-02-23 18:41:37 +00001366multiclass 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
1379defm ORHI : BitwiseOrHalfwordImm;
1380
1381class ORIInst<dag OOL, dag IOL, list<dag> pattern>:
1382 RI10Form<0b00100000, OOL, IOL, "ori\t$rT, $rA, $val",
1383 IntegerOp, pattern>;
1384
1385class 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001389
1390// Bitwise "or" with immediate
Scott Michel97872d32008-02-23 18:41:37 +00001391multiclass BitwiseOrImm
1392{
1393 def v4i32: ORIVecInst<v4i32, v4i32Uns10Imm>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001394
Scott Michel97872d32008-02-23 18:41:37 +00001395 def r32: ORIInst<(outs R32C:$rT), (ins R32C:$rA, u10imm_i32:$val),
1396 [(set R32C:$rT, (or R32C:$rA, i32ImmUns10:$val))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001397
Scott Michel97872d32008-02-23 18:41:37 +00001398 // 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001404
Scott Michel97872d32008-02-23 18:41:37 +00001405 // 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00001412
Scott Michel97872d32008-02-23 18:41:37 +00001413defm ORI : BitwiseOrImm;
Scott Michel438be252007-12-17 22:32:34 +00001414
Scott Michel8b6b4202007-12-04 22:35:58 +00001415// ORX: "or" across the vector: or's $rA's word slots leaving the result in
1416// $rT[0], slots 1-3 are zeroed.
1417//
Scott Michel438be252007-12-17 22:32:34 +00001418// FIXME: Needs to match an intrinsic pattern.
Scott Michel8b6b4202007-12-04 22:35:58 +00001419def ORXv4i32:
1420 RRForm<0b10010010000, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
1421 "orx\t$rT, $rA, $rB", IntegerOp,
1422 []>;
1423
Scott Michel438be252007-12-17 22:32:34 +00001424// XOR:
Scott Michel8b6b4202007-12-04 22:35:58 +00001425
Scott Michel6baba072008-03-05 23:02:02 +00001426class XORInst<dag OOL, dag IOL, list<dag> pattern> :
1427 RRForm<0b10010010000, OOL, IOL, "xor\t$rT, $rA, $rB",
1428 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001429
Scott Michel6baba072008-03-05 23:02:02 +00001430class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001434
Scott Michel6baba072008-03-05 23:02:02 +00001435class XORRegInst<RegisterClass rclass>:
1436 XORInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1437 [(set rclass:$rT, (xor rclass:$rA, rclass:$rB))]>;
1438
1439multiclass 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
1465defm XOR : BitwiseExclusiveOr;
Scott Michel8b6b4202007-12-04 22:35:58 +00001466
1467//==----------------------------------------------------------
Scott Michel438be252007-12-17 22:32:34 +00001468
Scott Michel97872d32008-02-23 18:41:37 +00001469class XORBIInst<dag OOL, dag IOL, list<dag> pattern>:
1470 RI10Form<0b01100000, OOL, IOL, "xorbi\t$rT, $rA, $val",
1471 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001472
Scott Michel97872d32008-02-23 18:41:37 +00001473multiclass 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
1484defm XORBI : XorByteImm;
Scott Michel438be252007-12-17 22:32:34 +00001485
Scott Michel8b6b4202007-12-04 22:35:58 +00001486def XORHIv8i16:
Scott Michel97872d32008-02-23 18:41:37 +00001487 RI10Form<0b10100000, (outs VECREG:$rT), (ins VECREG:$rA, u10imm:$val),
Scott Michel8b6b4202007-12-04 22:35:58 +00001488 "xorhi\t$rT, $rA, $val", IntegerOp,
1489 [(set (v8i16 VECREG:$rT), (xor (v8i16 VECREG:$rA),
1490 v8i16SExt10Imm:$val))]>;
1491
1492def 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
1497def XORIv4i32:
Scott Michel53ab7792008-03-10 16:58:52 +00001498 RI10Form<0b00100000, (outs VECREG:$rT), (ins VECREG:$rA, s10imm_i32:$val),
Scott Michel8b6b4202007-12-04 22:35:58 +00001499 "xori\t$rT, $rA, $val", IntegerOp,
1500 [(set (v4i32 VECREG:$rT), (xor (v4i32 VECREG:$rA),
1501 v4i32SExt10Imm:$val))]>;
1502
1503def 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:
1509def 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
1515def 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
1521def 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
1527def 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
1532def 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
Scott Michel438be252007-12-17 22:32:34 +00001537def 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
Scott Michel8b6b4202007-12-04 22:35:58 +00001542// NOR:
1543def 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
1549def 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
1555def 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
1561def 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
1566def 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
Scott Michel438be252007-12-17 22:32:34 +00001571def 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
Scott Michel8b6b4202007-12-04 22:35:58 +00001576// Select bits:
Scott Michel6baba072008-03-05 23:02:02 +00001577class SELBInst<dag OOL, dag IOL, list<dag> pattern>:
1578 RRRForm<0b1000, OOL, IOL, "selb\t$rT, $rA, $rB, $rC",
1579 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001580
Scott Michel6baba072008-03-05 23:02:02 +00001581class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001587
Scott Michel6baba072008-03-05 23:02:02 +00001588class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001593
Scott Michel6baba072008-03-05 23:02:02 +00001594multiclass SelectBits
1595{
1596 def v16i8: SELBVecInst<v16i8>;
1597 def v8i16: SELBVecInst<v8i16>;
1598 def v4i32: SELBVecInst<v4i32>;
1599 def v2i64: SELBVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001600
Scott Michel6baba072008-03-05 23:02:02 +00001601 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00001607
Scott Michel6baba072008-03-05 23:02:02 +00001608defm SELB : SelectBits;
Scott Michel8b6b4202007-12-04 22:35:58 +00001609
Scott Michel56a125e2008-11-22 23:50:42 +00001610class SPUselbPatVec<ValueType vectype, SPUInstr inst>:
Scott Michel6baba072008-03-05 23:02:02 +00001611 Pat<(SPUselb (vectype VECREG:$rA), (vectype VECREG:$rB), (vectype VECREG:$rC)),
1612 (inst VECREG:$rA, VECREG:$rB, VECREG:$rC)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001613
Scott Michel56a125e2008-11-22 23:50:42 +00001614def : SPUselbPatVec<v16i8, SELBv16i8>;
1615def : SPUselbPatVec<v8i16, SELBv8i16>;
1616def : SPUselbPatVec<v4i32, SELBv4i32>;
1617def : SPUselbPatVec<v2i64, SELBv2i64>;
1618
1619class SPUselbPatReg<RegisterClass rclass, SPUInstr inst>:
1620 Pat<(SPUselb rclass:$rA, rclass:$rB, rclass:$rC),
1621 (inst rclass:$rA, rclass:$rB, rclass:$rC)>;
1622
1623def : SPUselbPatReg<R8C, SELBr8>;
1624def : SPUselbPatReg<R16C, SELBr16>;
1625def : SPUselbPatReg<R32C, SELBr32>;
1626def : SPUselbPatReg<R64C, SELBr64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001627
Scott Michel6baba072008-03-05 23:02:02 +00001628class SelectConditional<RegisterClass rclass, SPUInstr inst>:
1629 Pat<(select rclass:$rCond, rclass:$rTrue, rclass:$rFalse),
Scott Michel53ab7792008-03-10 16:58:52 +00001630 (inst rclass:$rFalse, rclass:$rTrue, rclass:$rCond)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001631
Scott Michel6baba072008-03-05 23:02:02 +00001632def : SelectConditional<R32C, SELBr32>;
1633def : SelectConditional<R16C, SELBr16>;
1634def : SelectConditional<R8C, SELBr8>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001635
Scott Michel6baba072008-03-05 23:02:02 +00001636// 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.
Scott Michel8b6b4202007-12-04 22:35:58 +00001640
Scott Michel6baba072008-03-05 23:02:02 +00001641class EQVInst<dag OOL, dag IOL, list<dag> pattern>:
1642 RRForm<0b10010010000, OOL, IOL, "eqv\t$rT, $rA, $rB",
1643 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001644
Scott Michel6baba072008-03-05 23:02:02 +00001645class 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)))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001651
Scott Michel6baba072008-03-05 23:02:02 +00001652class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001656
Scott Michel6baba072008-03-05 23:02:02 +00001657class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001661
Scott Michel6baba072008-03-05 23:02:02 +00001662class EQVRegPattern1<RegisterClass rclass>:
1663 EQVInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1664 [(set rclass:$rT, (xor rclass:$rA, (not rclass:$rB)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001665
Scott Michel6baba072008-03-05 23:02:02 +00001666class 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)))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001671
Scott Michel6baba072008-03-05 23:02:02 +00001672class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001677
Scott Michel6baba072008-03-05 23:02:02 +00001678class 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))))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001682
Scott Michel6baba072008-03-05 23:02:02 +00001683class EQVRegPattern3<RegisterClass rclass>:
1684 EQVInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1685 [(set rclass:$rT, (not (xor rclass:$rA, rclass:$rB)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001686
Scott Michel6baba072008-03-05 23:02:02 +00001687multiclass BitEquivalence
1688{
1689 def v16i8: EQVVecInst<v16i8>;
1690 def v8i16: EQVVecInst<v8i16>;
1691 def v4i32: EQVVecInst<v4i32>;
1692 def v2i64: EQVVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001693
Scott Michel6baba072008-03-05 23:02:02 +00001694 def v16i8_1: EQVVecPattern1<v16i8>;
1695 def v8i16_1: EQVVecPattern1<v8i16>;
1696 def v4i32_1: EQVVecPattern1<v4i32>;
1697 def v2i64_1: EQVVecPattern1<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001698
Scott Michel6baba072008-03-05 23:02:02 +00001699 def v16i8_2: EQVVecPattern2<v16i8>;
1700 def v8i16_2: EQVVecPattern2<v8i16>;
1701 def v4i32_2: EQVVecPattern2<v4i32>;
1702 def v2i64_2: EQVVecPattern2<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001703
Scott Michel6baba072008-03-05 23:02:02 +00001704 def v16i8_3: EQVVecPattern3<v16i8>;
1705 def v8i16_3: EQVVecPattern3<v8i16>;
1706 def v4i32_3: EQVVecPattern3<v4i32>;
1707 def v2i64_3: EQVVecPattern3<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001708
Scott Michel6baba072008-03-05 23:02:02 +00001709 def r128: EQVRegInst<GPRC>;
1710 def r64: EQVRegInst<R64C>;
1711 def r32: EQVRegInst<R32C>;
1712 def r16: EQVRegInst<R16C>;
1713 def r8: EQVRegInst<R8C>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001714
Scott Michel6baba072008-03-05 23:02:02 +00001715 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001720
Scott Michel6baba072008-03-05 23:02:02 +00001721 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001726
Scott Michel6baba072008-03-05 23:02:02 +00001727 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}
Scott Michel438be252007-12-17 22:32:34 +00001733
Scott Michel6baba072008-03-05 23:02:02 +00001734defm EQV: BitEquivalence;
Scott Michel8b6b4202007-12-04 22:35:58 +00001735
1736//===----------------------------------------------------------------------===//
1737// Vector shuffle...
1738//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00001739// 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.
Scott Michel97872d32008-02-23 18:41:37 +00001743//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00001744
Scott Michel97872d32008-02-23 18:41:37 +00001745class SHUFBInst<dag OOL, dag IOL, list<dag> pattern>:
1746 RRRForm<0b1000, OOL, IOL, "shufb\t$rT, $rA, $rB, $rC",
1747 IntegerOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001748
Scott Michel0718cd82008-12-01 17:56:02 +00001749class SHUFBVecInst<ValueType resultvec, ValueType maskvec>:
Scott Michel97872d32008-02-23 18:41:37 +00001750 SHUFBInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
Scott Michel0718cd82008-12-01 17:56:02 +00001751 [(set (resultvec VECREG:$rT),
1752 (SPUshuffle (resultvec VECREG:$rA),
1753 (resultvec VECREG:$rB),
1754 (maskvec VECREG:$rC)))]>;
Scott Michel754d8662007-12-20 00:44:13 +00001755
Scott Michel97872d32008-02-23 18:41:37 +00001756multiclass ShuffleBytes
1757{
Scott Michel0718cd82008-12-01 17:56:02 +00001758 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001766
Scott Michel0718cd82008-12-01 17:56:02 +00001767 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>;
Scott Michel97872d32008-02-23 18:41:37 +00001772}
1773
1774defm SHUFB : ShuffleBytes;
1775
Scott Michel8b6b4202007-12-04 22:35:58 +00001776//===----------------------------------------------------------------------===//
1777// Shift and rotate group:
1778//===----------------------------------------------------------------------===//
1779
Scott Michel97872d32008-02-23 18:41:37 +00001780class SHLHInst<dag OOL, dag IOL, list<dag> pattern>:
1781 RRForm<0b11111010000, OOL, IOL, "shlh\t$rT, $rA, $rB",
1782 RotateShift, pattern>;
1783
1784class 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001788
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// }
Scott Michel8b6b4202007-12-04 22:35:58 +00001796
Scott Michel97872d32008-02-23 18:41:37 +00001797multiclass 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00001805
Scott Michel97872d32008-02-23 18:41:37 +00001806defm SHLH : ShiftLeftHalfword;
Scott Michel8b6b4202007-12-04 22:35:58 +00001807
Scott Michel97872d32008-02-23 18:41:37 +00001808//===----------------------------------------------------------------------===//
Scott Michel438be252007-12-17 22:32:34 +00001809
Scott Michel97872d32008-02-23 18:41:37 +00001810class SHLHIInst<dag OOL, dag IOL, list<dag> pattern>:
1811 RI7Form<0b11111010000, OOL, IOL, "shlhi\t$rT, $rA, $val",
1812 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001813
Scott Michel97872d32008-02-23 18:41:37 +00001814class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001818
Scott Michel97872d32008-02-23 18:41:37 +00001819multiclass 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
1826defm SHLHI : ShiftLeftHalfwordImm;
1827
1828def : Pat<(SPUvec_shl (v8i16 VECREG:$rA), (i32 uimm7:$val)),
1829 (SHLHIv8i16 VECREG:$rA, uimm7:$val)>;
1830
1831def : Pat<(shl R16C:$rA, (i32 uimm7:$val)),
Scott Michel438be252007-12-17 22:32:34 +00001832 (SHLHIr16 R16C:$rA, uimm7:$val)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001833
Scott Michel97872d32008-02-23 18:41:37 +00001834//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00001835
Scott Michel97872d32008-02-23 18:41:37 +00001836class SHLInst<dag OOL, dag IOL, list<dag> pattern>:
1837 RRForm<0b11111010000, OOL, IOL, "shl\t$rT, $rA, $rB",
1838 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001839
Scott Michel97872d32008-02-23 18:41:37 +00001840multiclass 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00001850
Scott Michel97872d32008-02-23 18:41:37 +00001851defm SHL: ShiftLeftWord;
Scott Michel438be252007-12-17 22:32:34 +00001852
Scott Michel97872d32008-02-23 18:41:37 +00001853//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00001854
Scott Michel97872d32008-02-23 18:41:37 +00001855class SHLIInst<dag OOL, dag IOL, list<dag> pattern>:
1856 RI7Form<0b11111010000, OOL, IOL, "shli\t$rT, $rA, $val",
1857 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001858
Scott Michel97872d32008-02-23 18:41:37 +00001859multiclass 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001865
Scott Michel97872d32008-02-23 18:41:37 +00001866 def r32:
1867 SHLIInst<(outs R32C:$rT), (ins R32C:$rA, u7imm_i32:$val),
1868 [(set R32C:$rT, (shl R32C:$rA, (i32 uimm7:$val)))]>;
1869}
Scott Michel8b6b4202007-12-04 22:35:58 +00001870
Scott Michel97872d32008-02-23 18:41:37 +00001871defm SHLI : ShiftLeftWordImm;
Scott Michel438be252007-12-17 22:32:34 +00001872
Scott Michel97872d32008-02-23 18:41:37 +00001873//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00001874// 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.
Scott Michel97872d32008-02-23 18:41:37 +00001876//
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.
Scott Michel8b6b4202007-12-04 22:35:58 +00001883
Scott Michel97872d32008-02-23 18:41:37 +00001884class SHLQBIInst<dag OOL, dag IOL, list<dag> pattern>:
1885 RRForm<0b11011011100, OOL, IOL, "shlqbi\t$rT, $rA, $rB",
1886 RotateShift, pattern>;
1887
1888class 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
1893multiclass ShiftLeftQuadByBits
1894{
1895 def v16i8: SHLQBIVecInst<v16i8>;
1896 def v8i16: SHLQBIVecInst<v8i16>;
1897 def v4i32: SHLQBIVecInst<v4i32>;
Scott Michel56a125e2008-11-22 23:50:42 +00001898 def v4f32: SHLQBIVecInst<v4f32>;
Scott Michel97872d32008-02-23 18:41:37 +00001899 def v2i64: SHLQBIVecInst<v2i64>;
Scott Michel56a125e2008-11-22 23:50:42 +00001900 def v2f64: SHLQBIVecInst<v2f64>;
Scott Michel97872d32008-02-23 18:41:37 +00001901}
1902
1903defm 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."
1907class SHLQBIIInst<dag OOL, dag IOL, list<dag> pattern>:
1908 RI7Form<0b11011111100, OOL, IOL, "shlqbii\t$rT, $rA, $val",
1909 RotateShift, pattern>;
1910
1911class 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
1916multiclass ShiftLeftQuadByBitsImm
1917{
1918 def v16i8 : SHLQBIIVecInst<v16i8>;
1919 def v8i16 : SHLQBIIVecInst<v8i16>;
1920 def v4i32 : SHLQBIIVecInst<v4i32>;
Scott Michel56a125e2008-11-22 23:50:42 +00001921 def v4f32 : SHLQBIIVecInst<v4f32>;
Scott Michel97872d32008-02-23 18:41:37 +00001922 def v2i64 : SHLQBIIVecInst<v2i64>;
Scott Michel56a125e2008-11-22 23:50:42 +00001923 def v2f64 : SHLQBIIVecInst<v2f64>;
Scott Michel97872d32008-02-23 18:41:37 +00001924}
1925
1926defm SHLQBII : ShiftLeftQuadByBitsImm;
Scott Michel8b6b4202007-12-04 22:35:58 +00001927
1928// SHLQBY, SHLQBYI vector forms: Shift the entire vector to the left by bytes,
Scott Michel97872d32008-02-23 18:41:37 +00001929// not by bits. See notes above on SHLQBI.
Scott Michel8b6b4202007-12-04 22:35:58 +00001930
Scott Michel97872d32008-02-23 18:41:37 +00001931class SHLQBYInst<dag OOL, dag IOL, list<dag> pattern>:
Scott Michelfa888632008-11-25 00:23:16 +00001932 RI7Form<0b11111011100, OOL, IOL, "shlqby\t$rT, $rA, $rB",
Scott Michel97872d32008-02-23 18:41:37 +00001933 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001934
Scott Michel97872d32008-02-23 18:41:37 +00001935class 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00001939
Scott Michel97872d32008-02-23 18:41:37 +00001940multiclass ShiftLeftQuadBytes
1941{
1942 def v16i8: SHLQBYVecInst<v16i8>;
1943 def v8i16: SHLQBYVecInst<v8i16>;
1944 def v4i32: SHLQBYVecInst<v4i32>;
Scott Michel56a125e2008-11-22 23:50:42 +00001945 def v4f32: SHLQBYVecInst<v4f32>;
Scott Michel97872d32008-02-23 18:41:37 +00001946 def v2i64: SHLQBYVecInst<v2i64>;
Scott Michel56a125e2008-11-22 23:50:42 +00001947 def v2f64: SHLQBYVecInst<v2f64>;
Scott Michel97872d32008-02-23 18:41:37 +00001948 def r128: SHLQBYInst<(outs GPRC:$rT), (ins GPRC:$rA, R32C:$rB),
1949 [(set GPRC:$rT, (SPUshlquad_l_bytes GPRC:$rA, R32C:$rB))]>;
1950}
Scott Michel8b6b4202007-12-04 22:35:58 +00001951
Scott Michel97872d32008-02-23 18:41:37 +00001952defm SHLQBY: ShiftLeftQuadBytes;
Scott Michel8b6b4202007-12-04 22:35:58 +00001953
Scott Michel97872d32008-02-23 18:41:37 +00001954class SHLQBYIInst<dag OOL, dag IOL, list<dag> pattern>:
1955 RI7Form<0b11111111100, OOL, IOL, "shlqbyi\t$rT, $rA, $val",
1956 RotateShift, pattern>;
Scott Michel438be252007-12-17 22:32:34 +00001957
Scott Michel97872d32008-02-23 18:41:37 +00001958class 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)))]>;
Scott Michel438be252007-12-17 22:32:34 +00001962
Scott Michel97872d32008-02-23 18:41:37 +00001963multiclass ShiftLeftQuadBytesImm
1964{
1965 def v16i8: SHLQBYIVecInst<v16i8>;
1966 def v8i16: SHLQBYIVecInst<v8i16>;
1967 def v4i32: SHLQBYIVecInst<v4i32>;
Scott Michel56a125e2008-11-22 23:50:42 +00001968 def v4f32: SHLQBYIVecInst<v4f32>;
Scott Michel97872d32008-02-23 18:41:37 +00001969 def v2i64: SHLQBYIVecInst<v2i64>;
Scott Michel56a125e2008-11-22 23:50:42 +00001970 def v2f64: SHLQBYIVecInst<v2f64>;
Scott Michel97872d32008-02-23 18:41:37 +00001971 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}
Scott Michel438be252007-12-17 22:32:34 +00001975
Scott Michel97872d32008-02-23 18:41:37 +00001976defm SHLQBYI : ShiftLeftQuadBytesImm;
Scott Michel438be252007-12-17 22:32:34 +00001977
Scott Michel97872d32008-02-23 18:41:37 +00001978//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1979// Rotate halfword:
1980//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
1981class ROTHInst<dag OOL, dag IOL, list<dag> pattern>:
1982 RRForm<0b00111010000, OOL, IOL, "roth\t$rT, $rA, $rB",
1983 RotateShift, pattern>;
1984
1985class 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
1990class ROTHRegInst<RegisterClass rclass>:
1991 ROTHInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
1992 [(set rclass:$rT, (rotl rclass:$rA, rclass:$rB))]>;
1993
1994multiclass RotateLeftHalfword
1995{
1996 def v8i16: ROTHVecInst<v8i16>;
1997 def r16: ROTHRegInst<R16C>;
1998}
1999
2000defm ROTH: RotateLeftHalfword;
2001
2002def 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//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2008class ROTHIInst<dag OOL, dag IOL, list<dag> pattern>:
2009 RI7Form<0b00111110000, OOL, IOL, "rothi\t$rT, $rA, $val",
2010 RotateShift, pattern>;
2011
2012class 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
2017multiclass 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
2026defm ROTHI: RotateLeftHalfwordImm;
2027
2028def : Pat<(SPUvec_rotl VECREG:$rA, (i32 uimm7:$val)),
Scott Michel8b6b4202007-12-04 22:35:58 +00002029 (ROTHIv8i16 VECREG:$rA, imm:$val)>;
2030
Scott Michel97872d32008-02-23 18:41:37 +00002031//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2032// Rotate word:
2033//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002034
Scott Michel97872d32008-02-23 18:41:37 +00002035class ROTInst<dag OOL, dag IOL, list<dag> pattern>:
2036 RRForm<0b00011010000, OOL, IOL, "rot\t$rT, $rA, $rB",
2037 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002038
Scott Michel97872d32008-02-23 18:41:37 +00002039class 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))]>;
Scott Michel438be252007-12-17 22:32:34 +00002043
Scott Michel97872d32008-02-23 18:41:37 +00002044class ROTRegInst<RegisterClass rclass>:
2045 ROTInst<(outs rclass:$rT), (ins rclass:$rA, R32C:$rB),
2046 [(set rclass:$rT,
2047 (rotl rclass:$rA, R32C:$rB))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002048
Scott Michel97872d32008-02-23 18:41:37 +00002049multiclass RotateLeftWord
2050{
2051 def v4i32: ROTVecInst<v4i32>;
2052 def r32: ROTRegInst<R32C>;
2053}
2054
2055defm ROT: RotateLeftWord;
Scott Michel8b6b4202007-12-04 22:35:58 +00002056
Scott Michel438be252007-12-17 22:32:34 +00002057// The rotate amount is in the same bits whether we've got an 8-bit, 16-bit or
2058// 32-bit register
2059def ROTr32_r16_anyext:
Scott Michel97872d32008-02-23 18:41:37 +00002060 ROTInst<(outs R32C:$rT), (ins R32C:$rA, R16C:$rB),
2061 [(set R32C:$rT, (rotl R32C:$rA, (i32 (anyext R16C:$rB))))]>;
Scott Michel438be252007-12-17 22:32:34 +00002062
2063def : Pat<(rotl R32C:$rA, (i32 (zext R16C:$rB))),
2064 (ROTr32_r16_anyext R32C:$rA, R16C:$rB)>;
2065
2066def : Pat<(rotl R32C:$rA, (i32 (sext R16C:$rB))),
2067 (ROTr32_r16_anyext R32C:$rA, R16C:$rB)>;
2068
2069def ROTr32_r8_anyext:
Scott Michel97872d32008-02-23 18:41:37 +00002070 ROTInst<(outs R32C:$rT), (ins R32C:$rA, R8C:$rB),
2071 [(set R32C:$rT, (rotl R32C:$rA, (i32 (anyext R8C:$rB))))]>;
Scott Michel438be252007-12-17 22:32:34 +00002072
2073def : Pat<(rotl R32C:$rA, (i32 (zext R8C:$rB))),
2074 (ROTr32_r8_anyext R32C:$rA, R8C:$rB)>;
2075
2076def : Pat<(rotl R32C:$rA, (i32 (sext R8C:$rB))),
2077 (ROTr32_r8_anyext R32C:$rA, R8C:$rB)>;
2078
Scott Michel97872d32008-02-23 18:41:37 +00002079//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2080// Rotate word, immediate
2081//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002082
Scott Michel97872d32008-02-23 18:41:37 +00002083class ROTIInst<dag OOL, dag IOL, list<dag> pattern>:
2084 RI7Form<0b00011110000, OOL, IOL, "roti\t$rT, $rA, $val",
2085 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002086
Scott Michel97872d32008-02-23 18:41:37 +00002087class 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)))]>;
Scott Michel438be252007-12-17 22:32:34 +00002091
Scott Michel97872d32008-02-23 18:41:37 +00002092class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002095
Scott Michel97872d32008-02-23 18:41:37 +00002096multiclass 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>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002101
Scott Michel97872d32008-02-23 18:41:37 +00002102 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}
Scott Michel438be252007-12-17 22:32:34 +00002106
Scott Michel97872d32008-02-23 18:41:37 +00002107defm ROTI : RotateLeftWordImm;
2108
2109//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2110// Rotate quad by byte (count)
2111//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2112
2113class ROTQBYInst<dag OOL, dag IOL, list<dag> pattern>:
2114 RRForm<0b00111011100, OOL, IOL, "rotqby\t$rT, $rA, $rB",
2115 RotateShift, pattern>;
2116
2117class 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
2122multiclass RotateQuadLeftByBytes
2123{
2124 def v16i8: ROTQBYVecInst<v16i8>;
2125 def v8i16: ROTQBYVecInst<v8i16>;
2126 def v4i32: ROTQBYVecInst<v4i32>;
Scott Michele2641a12008-12-04 21:01:44 +00002127 def v4f32: ROTQBYVecInst<v4f32>;
Scott Michel97872d32008-02-23 18:41:37 +00002128 def v2i64: ROTQBYVecInst<v2i64>;
Scott Michele2641a12008-12-04 21:01:44 +00002129 def v2f64: ROTQBYVecInst<v2f64>;
Scott Michel97872d32008-02-23 18:41:37 +00002130}
2131
2132defm ROTQBY: RotateQuadLeftByBytes;
Scott Michel8b6b4202007-12-04 22:35:58 +00002133
Scott Michel97872d32008-02-23 18:41:37 +00002134//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2135// Rotate quad by byte (count), immediate
2136//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2137
2138class ROTQBYIInst<dag OOL, dag IOL, list<dag> pattern>:
2139 RI7Form<0b00111111100, OOL, IOL, "rotqbyi\t$rT, $rA, $val",
2140 RotateShift, pattern>;
2141
2142class 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
2147multiclass RotateQuadByBytesImm
2148{
2149 def v16i8: ROTQBYIVecInst<v16i8>;
2150 def v8i16: ROTQBYIVecInst<v8i16>;
2151 def v4i32: ROTQBYIVecInst<v4i32>;
Scott Michele2641a12008-12-04 21:01:44 +00002152 def v4f32: ROTQBYIVecInst<v4f32>;
Scott Michel97872d32008-02-23 18:41:37 +00002153 def v2i64: ROTQBYIVecInst<v2i64>;
Scott Michele2641a12008-12-04 21:01:44 +00002154 def vfi64: ROTQBYIVecInst<v2f64>;
Scott Michel97872d32008-02-23 18:41:37 +00002155}
2156
2157defm ROTQBYI: RotateQuadByBytesImm;
Scott Michel8b6b4202007-12-04 22:35:58 +00002158
Scott Michel8b6b4202007-12-04 22:35:58 +00002159// See ROTQBY note above.
Scott Michel67224b22008-06-02 22:18:03 +00002160class ROTQBYBIInst<dag OOL, dag IOL, list<dag> pattern>:
2161 RI7Form<0b00110011100, OOL, IOL,
2162 "rotqbybi\t$rT, $rA, $shift",
2163 RotateShift, pattern>;
2164
2165class 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
2170multiclass 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
2177defm ROTQBYBI : RotateQuadByBytesByBitshift;
Scott Michel8b6b4202007-12-04 22:35:58 +00002178
Scott Michel97872d32008-02-23 18:41:37 +00002179//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002180// See ROTQBY note above.
2181//
2182// Assume that the user of this instruction knows to shift the rotate count
2183// into bit 29
Scott Michel97872d32008-02-23 18:41:37 +00002184//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002185
Scott Michel97872d32008-02-23 18:41:37 +00002186class ROTQBIInst<dag OOL, dag IOL, list<dag> pattern>:
2187 RRForm<0b00011011100, OOL, IOL, "rotqbi\t$rT, $rA, $rB",
2188 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002189
Scott Michel97872d32008-02-23 18:41:37 +00002190class ROTQBIVecInst<ValueType vectype>:
2191 ROTQBIInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2192 [/* no pattern yet */]>;
2193
2194class ROTQBIRegInst<RegisterClass rclass>:
2195 ROTQBIInst<(outs rclass:$rT), (ins rclass:$rA, rclass:$rB),
2196 [/* no pattern yet */]>;
2197
2198multiclass 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
2209defm ROTQBI: RotateQuadByBitCount;
2210
2211class ROTQBIIInst<dag OOL, dag IOL, list<dag> pattern>:
2212 RI7Form<0b00011111100, OOL, IOL, "rotqbii\t$rT, $rA, $val",
2213 RotateShift, pattern>;
2214
2215class 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
2220class 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
2225multiclass 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
2236defm ROTQBII : RotateQuadByBitCountImm;
2237
2238//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002239// 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!
Scott Michel97872d32008-02-23 18:41:37 +00002244//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002245
Scott Michel97872d32008-02-23 18:41:37 +00002246class ROTHMInst<dag OOL, dag IOL, list<dag> pattern>:
2247 RRForm<0b10111010000, OOL, IOL, "rothm\t$rT, $rA, $rB",
2248 RotateShift, pattern>;
2249
2250def ROTHMv8i16:
2251 ROTHMInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2252 [/* see patterns below - $rB must be negated */]>;
2253
2254def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), R32C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002255 (ROTHMv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2256
Scott Michel97872d32008-02-23 18:41:37 +00002257def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), R16C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002258 (ROTHMv8i16 VECREG:$rA,
2259 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2260
Scott Michel97872d32008-02-23 18:41:37 +00002261def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), R8C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002262 (ROTHMv8i16 VECREG:$rA,
Scott Michel438be252007-12-17 22:32:34 +00002263 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB) ), 0))>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002264
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!
Scott Michel97872d32008-02-23 18:41:37 +00002268
Scott Michel8b6b4202007-12-04 22:35:58 +00002269def ROTHMr16:
Scott Michel97872d32008-02-23 18:41:37 +00002270 ROTHMInst<(outs R16C:$rT), (ins R16C:$rA, R32C:$rB),
2271 [/* see patterns below - $rB must be negated! */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002272
2273def : Pat<(srl R16C:$rA, R32C:$rB),
2274 (ROTHMr16 R16C:$rA, (SFIr32 R32C:$rB, 0))>;
2275
2276def : Pat<(srl R16C:$rA, R16C:$rB),
2277 (ROTHMr16 R16C:$rA,
2278 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2279
Scott Michel438be252007-12-17 22:32:34 +00002280def : Pat<(srl R16C:$rA, R8C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002281 (ROTHMr16 R16C:$rA,
Scott Michel438be252007-12-17 22:32:34 +00002282 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB) ), 0))>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002283
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.
Scott Michel8b6b4202007-12-04 22:35:58 +00002287
Scott Michel97872d32008-02-23 18:41:37 +00002288class ROTHMIInst<dag OOL, dag IOL, list<dag> pattern>:
2289 RI7Form<0b10111110000, OOL, IOL, "rothmi\t$rT, $rA, $val",
2290 RotateShift, pattern>;
2291
2292def ROTHMIv8i16:
2293 ROTHMIInst<(outs VECREG:$rT), (ins VECREG:$rA, rothNeg7imm:$val),
2294 [/* no pattern */]>;
2295
2296def : Pat<(SPUvec_srl (v8i16 VECREG:$rA), (i32 imm:$val)),
2297 (ROTHMIv8i16 VECREG:$rA, imm:$val)>;
2298
2299def: Pat<(SPUvec_srl (v8i16 VECREG:$rA), (i16 imm:$val)),
Scott Michel8b6b4202007-12-04 22:35:58 +00002300 (ROTHMIv8i16 VECREG:$rA, imm:$val)>;
Scott Michel438be252007-12-17 22:32:34 +00002301
Scott Michel97872d32008-02-23 18:41:37 +00002302def: Pat<(SPUvec_srl (v8i16 VECREG:$rA), (i8 imm:$val)),
Scott Michel5a6f17b2008-01-30 02:55:46 +00002303 (ROTHMIv8i16 VECREG:$rA, imm:$val)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002304
2305def ROTHMIr16:
Scott Michel97872d32008-02-23 18:41:37 +00002306 ROTHMIInst<(outs R16C:$rT), (ins R16C:$rA, rothNeg7imm:$val),
2307 [/* no pattern */]>;
2308
2309def: Pat<(srl R16C:$rA, (i32 uimm7:$val)),
2310 (ROTHMIr16 R16C:$rA, uimm7:$val)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002311
2312def: Pat<(srl R16C:$rA, (i16 uimm7:$val)),
2313 (ROTHMIr16 R16C:$rA, uimm7:$val)>;
2314
Scott Michel438be252007-12-17 22:32:34 +00002315def: Pat<(srl R16C:$rA, (i8 uimm7:$val)),
2316 (ROTHMIr16 R16C:$rA, uimm7:$val)>;
2317
Scott Michel8b6b4202007-12-04 22:35:58 +00002318// ROTM v4i32 form: See the ROTHM v8i16 comments.
Scott Michel97872d32008-02-23 18:41:37 +00002319class ROTMInst<dag OOL, dag IOL, list<dag> pattern>:
2320 RRForm<0b10011010000, OOL, IOL, "rotm\t$rT, $rA, $rB",
2321 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002322
Scott Michel97872d32008-02-23 18:41:37 +00002323def ROTMv4i32:
2324 ROTMInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2325 [/* see patterns below - $rB must be negated */]>;
2326
2327def : Pat<(SPUvec_srl VECREG:$rA, R32C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002328 (ROTMv4i32 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2329
Scott Michel97872d32008-02-23 18:41:37 +00002330def : Pat<(SPUvec_srl VECREG:$rA, R16C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002331 (ROTMv4i32 VECREG:$rA,
2332 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2333
Scott Michel97872d32008-02-23 18:41:37 +00002334def : Pat<(SPUvec_srl VECREG:$rA, R8C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002335 (ROTMv4i32 VECREG:$rA,
Scott Michel97872d32008-02-23 18:41:37 +00002336 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002337
2338def ROTMr32:
Scott Michel97872d32008-02-23 18:41:37 +00002339 ROTMInst<(outs R32C:$rT), (ins R32C:$rA, R32C:$rB),
2340 [/* see patterns below - $rB must be negated */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002341
2342def : Pat<(srl R32C:$rA, R32C:$rB),
2343 (ROTMr32 R32C:$rA, (SFIr32 R32C:$rB, 0))>;
2344
2345def : Pat<(srl R32C:$rA, R16C:$rB),
2346 (ROTMr32 R32C:$rA,
2347 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2348
Scott Michel438be252007-12-17 22:32:34 +00002349def : Pat<(srl R32C:$rA, R8C:$rB),
2350 (ROTMr32 R32C:$rA,
2351 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2352
Scott Michel8b6b4202007-12-04 22:35:58 +00002353// ROTMI v4i32 form: See the comment for ROTHM v8i16.
2354def ROTMIv4i32:
2355 RI7Form<0b10011110000, (outs VECREG:$rT), (ins VECREG:$rA, rotNeg7imm:$val),
2356 "rotmi\t$rT, $rA, $val", RotateShift,
2357 [(set (v4i32 VECREG:$rT),
Scott Michel97872d32008-02-23 18:41:37 +00002358 (SPUvec_srl VECREG:$rA, (i32 uimm7:$val)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002359
Scott Michel97872d32008-02-23 18:41:37 +00002360def : Pat<(SPUvec_srl VECREG:$rA, (i16 uimm7:$val)),
Scott Michel8b6b4202007-12-04 22:35:58 +00002361 (ROTMIv4i32 VECREG:$rA, uimm7:$val)>;
Scott Michel438be252007-12-17 22:32:34 +00002362
Scott Michel97872d32008-02-23 18:41:37 +00002363def : Pat<(SPUvec_srl VECREG:$rA, (i8 uimm7:$val)),
Scott Michel438be252007-12-17 22:32:34 +00002364 (ROTMIv4i32 VECREG:$rA, uimm7:$val)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002365
2366// ROTMI r32 form: know how to complement the immediate value.
2367def 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
2372def : Pat<(srl R32C:$rA, (i16 imm:$val)),
2373 (ROTMIr32 R32C:$rA, uimm7:$val)>;
2374
Scott Michel438be252007-12-17 22:32:34 +00002375def : Pat<(srl R32C:$rA, (i8 imm:$val)),
2376 (ROTMIr32 R32C:$rA, uimm7:$val)>;
2377
Scott Michel97872d32008-02-23 18:41:37 +00002378//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002379// ROTQMBYvec: This is a vector form merely so that when used in an
2380// instruction pattern, type checking will succeed. This instruction assumes
Scott Michel97872d32008-02-23 18:41:37 +00002381// 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//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002386
Scott Michel97872d32008-02-23 18:41:37 +00002387class ROTQMBYInst<dag OOL, dag IOL, list<dag> pattern>:
2388 RRForm<0b10111011100, OOL, IOL, "rotqmby\t$rT, $rA, $rB",
2389 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002390
Scott Michel97872d32008-02-23 18:41:37 +00002391class ROTQMBYVecInst<ValueType vectype>:
2392 ROTQMBYInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2393 [/* no pattern, $rB must be negated */]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002394
Scott Michel97872d32008-02-23 18:41:37 +00002395class 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))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002399
Scott Michel97872d32008-02-23 18:41:37 +00002400multiclass RotateQuadBytes
2401{
2402 def v16i8: ROTQMBYVecInst<v16i8>;
2403 def v8i16: ROTQMBYVecInst<v8i16>;
2404 def v4i32: ROTQMBYVecInst<v4i32>;
2405 def v2i64: ROTQMBYVecInst<v2i64>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002406
Scott Michel97872d32008-02-23 18:41:37 +00002407 def r128: ROTQMBYRegInst<GPRC>;
2408 def r64: ROTQMBYRegInst<R64C>;
2409}
2410
2411defm ROTQMBY : RotateQuadBytes;
2412
2413def : Pat<(SPUrotquad_rz_bytes (v16i8 VECREG:$rA), R32C:$rB),
2414 (ROTQMBYv16i8 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2415def : Pat<(SPUrotquad_rz_bytes (v8i16 VECREG:$rA), R32C:$rB),
2416 (ROTQMBYv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2417def : Pat<(SPUrotquad_rz_bytes (v4i32 VECREG:$rA), R32C:$rB),
2418 (ROTQMBYv4i32 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2419def : Pat<(SPUrotquad_rz_bytes (v2i64 VECREG:$rA), R32C:$rB),
2420 (ROTQMBYv2i64 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2421def : Pat<(SPUrotquad_rz_bytes GPRC:$rA, R32C:$rB),
2422 (ROTQMBYr128 GPRC:$rA, (SFIr32 R32C:$rB, 0))>;
2423def : Pat<(SPUrotquad_rz_bytes R64C:$rA, R32C:$rB),
2424 (ROTQMBYr64 R64C:$rA, (SFIr32 R32C:$rB, 0))>;
2425
2426class ROTQMBYIInst<dag OOL, dag IOL, list<dag> pattern>:
2427 RI7Form<0b10111111100, OOL, IOL, "rotqmbyi\t$rT, $rA, $val",
2428 RotateShift, pattern>;
2429
2430class 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
2435class 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
2440multiclass 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
2451defm ROTQMBYI : RotateQuadBytesImm;
2452
Scott Michel97872d32008-02-23 18:41:37 +00002453//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2454// Rotate right and mask by bit count
2455//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2456
2457class ROTQMBYBIInst<dag OOL, dag IOL, list<dag> pattern>:
2458 RRForm<0b10110011100, OOL, IOL, "rotqmbybi\t$rT, $rA, $rB",
2459 RotateShift, pattern>;
2460
2461class ROTQMBYBIVecInst<ValueType vectype>:
2462 ROTQMBYBIInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
2463 [/* no pattern, intrinsic? */]>;
2464
2465multiclass RotateMaskQuadByBitCount
2466{
2467 def v16i8: ROTQMBYBIVecInst<v16i8>;
2468 def v8i16: ROTQMBYBIVecInst<v8i16>;
2469 def v4i32: ROTQMBYBIVecInst<v4i32>;
2470 def v2i64: ROTQMBYBIVecInst<v2i64>;
2471}
2472
2473defm ROTQMBYBI: RotateMaskQuadByBitCount;
2474
2475//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2476// Rotate quad and mask by bits
2477// Note that the rotate amount has to be negated
2478//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2479
2480class ROTQMBIInst<dag OOL, dag IOL, list<dag> pattern>:
2481 RRForm<0b10011011100, OOL, IOL, "rotqmbi\t$rT, $rA, $rB",
2482 RotateShift, pattern>;
2483
2484class ROTQMBIVecInst<ValueType vectype>:
2485 ROTQMBIInst<(outs VECREG:$rT), (ins VECREG:$rA, R32C:$rB),
2486 [/* no pattern */]>;
2487
2488class ROTQMBIRegInst<RegisterClass rclass>:
2489 ROTQMBIInst<(outs rclass:$rT), (ins rclass:$rA, R32C:$rB),
2490 [/* no pattern */]>;
2491
2492multiclass 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
2503defm ROTQMBI: RotateMaskQuadByBits;
2504
2505def : Pat<(SPUrotquad_rz_bits (v16i8 VECREG:$rA), R32C:$rB),
2506 (ROTQMBIv16i8 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2507def : Pat<(SPUrotquad_rz_bits (v8i16 VECREG:$rA), R32C:$rB),
2508 (ROTQMBIv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2509def : Pat<(SPUrotquad_rz_bits (v4i32 VECREG:$rA), R32C:$rB),
2510 (ROTQMBIv4i32 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2511def : Pat<(SPUrotquad_rz_bits (v2i64 VECREG:$rA), R32C:$rB),
2512 (ROTQMBIv2i64 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2513def : Pat<(SPUrotquad_rz_bits GPRC:$rA, R32C:$rB),
2514 (ROTQMBIr128 GPRC:$rA, (SFIr32 R32C:$rB, 0))>;
2515def : 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
2522class ROTQMBIIInst<dag OOL, dag IOL, list<dag> pattern>:
2523 RI7Form<0b10011111100, OOL, IOL, "rotqmbii\t$rT, $rA, $val",
2524 RotateShift, pattern>;
2525
2526class 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
2531class 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
2536multiclass 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
2547defm ROTQMBII: RotateMaskQuadByBitsImm;
2548
2549//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
2550//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00002551
2552def 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
Scott Michel97872d32008-02-23 18:41:37 +00002557def : Pat<(SPUvec_sra VECREG:$rA, R32C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002558 (ROTMAHv8i16 VECREG:$rA, (SFIr32 R32C:$rB, 0))>;
2559
Scott Michel97872d32008-02-23 18:41:37 +00002560def : Pat<(SPUvec_sra VECREG:$rA, R16C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002561 (ROTMAHv8i16 VECREG:$rA,
2562 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2563
Scott Michel97872d32008-02-23 18:41:37 +00002564def : Pat<(SPUvec_sra VECREG:$rA, R8C:$rB),
Scott Michel438be252007-12-17 22:32:34 +00002565 (ROTMAHv8i16 VECREG:$rA,
2566 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2567
Scott Michel8b6b4202007-12-04 22:35:58 +00002568def 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
2573def : Pat<(sra R16C:$rA, R32C:$rB),
2574 (ROTMAHr16 R16C:$rA, (SFIr32 R32C:$rB, 0))>;
2575
2576def : Pat<(sra R16C:$rA, R16C:$rB),
2577 (ROTMAHr16 R16C:$rA,
2578 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2579
Scott Michel438be252007-12-17 22:32:34 +00002580def : Pat<(sra R16C:$rA, R8C:$rB),
2581 (ROTMAHr16 R16C:$rA,
2582 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2583
Scott Michel8b6b4202007-12-04 22:35:58 +00002584def ROTMAHIv8i16:
2585 RRForm<0b01111110000, (outs VECREG:$rT), (ins VECREG:$rA, rothNeg7imm:$val),
2586 "rotmahi\t$rT, $rA, $val", RotateShift,
2587 [(set (v8i16 VECREG:$rT),
Scott Michel97872d32008-02-23 18:41:37 +00002588 (SPUvec_sra (v8i16 VECREG:$rA), (i32 uimm7:$val)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002589
Scott Michel97872d32008-02-23 18:41:37 +00002590def : Pat<(SPUvec_sra (v8i16 VECREG:$rA), (i16 uimm7:$val)),
Scott Michel8b6b4202007-12-04 22:35:58 +00002591 (ROTMAHIv8i16 (v8i16 VECREG:$rA), (i32 uimm7:$val))>;
2592
Scott Michel97872d32008-02-23 18:41:37 +00002593def : Pat<(SPUvec_sra (v8i16 VECREG:$rA), (i8 uimm7:$val)),
Scott Michel438be252007-12-17 22:32:34 +00002594 (ROTMAHIv8i16 (v8i16 VECREG:$rA), (i32 uimm7:$val))>;
2595
Scott Michel8b6b4202007-12-04 22:35:58 +00002596def 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
2601def : Pat<(sra R16C:$rA, (i32 imm:$val)),
2602 (ROTMAHIr16 R16C:$rA, uimm7:$val)>;
2603
Scott Michel438be252007-12-17 22:32:34 +00002604def : Pat<(sra R16C:$rA, (i8 imm:$val)),
2605 (ROTMAHIr16 R16C:$rA, uimm7:$val)>;
2606
Scott Michel8b6b4202007-12-04 22:35:58 +00002607def 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
Scott Michel97872d32008-02-23 18:41:37 +00002612def : Pat<(SPUvec_sra VECREG:$rA, R32C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002613 (ROTMAv4i32 (v4i32 VECREG:$rA), (SFIr32 R32C:$rB, 0))>;
2614
Scott Michel97872d32008-02-23 18:41:37 +00002615def : Pat<(SPUvec_sra VECREG:$rA, R16C:$rB),
Scott Michel8b6b4202007-12-04 22:35:58 +00002616 (ROTMAv4i32 (v4i32 VECREG:$rA),
2617 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2618
Scott Michel97872d32008-02-23 18:41:37 +00002619def : Pat<(SPUvec_sra VECREG:$rA, R8C:$rB),
Scott Michel438be252007-12-17 22:32:34 +00002620 (ROTMAv4i32 (v4i32 VECREG:$rA),
2621 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2622
Scott Michel8b6b4202007-12-04 22:35:58 +00002623def 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
2628def : Pat<(sra R32C:$rA, R32C:$rB),
2629 (ROTMAr32 R32C:$rA, (SFIr32 R32C:$rB, 0))>;
2630
2631def : Pat<(sra R32C:$rA, R16C:$rB),
2632 (ROTMAr32 R32C:$rA,
2633 (SFIr32 (XSHWr16 R16C:$rB), 0))>;
2634
Scott Michel438be252007-12-17 22:32:34 +00002635def : Pat<(sra R32C:$rA, R8C:$rB),
2636 (ROTMAr32 R32C:$rA,
2637 (SFIr32 (XSHWr16 (XSBHr8 R8C:$rB)), 0))>;
2638
Scott Michel67224b22008-06-02 22:18:03 +00002639class ROTMAIInst<dag OOL, dag IOL, list<dag> pattern>:
2640 RRForm<0b01011110000, OOL, IOL,
2641 "rotmai\t$rT, $rA, $val",
2642 RotateShift, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002643
Scott Michel67224b22008-06-02 22:18:03 +00002644class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002648
Scott Michel67224b22008-06-02 22:18:03 +00002649class 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002652
Scott Michel67224b22008-06-02 22:18:03 +00002653multiclass 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00002659
Scott Michel67224b22008-06-02 22:18:03 +00002660defm ROTMAI : RotateMaskAlgebraicImm;
Scott Michel438be252007-12-17 22:32:34 +00002661
Scott Michel8b6b4202007-12-04 22:35:58 +00002662//===----------------------------------------------------------------------===//
2663// Branch and conditionals:
2664//===----------------------------------------------------------------------===//
2665
2666let 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
Scott Michel97872d32008-02-23 18:41:37 +00002701//------------------------------------------------------------------------
Scott Michel8b6b4202007-12-04 22:35:58 +00002702// Comparison operators:
Scott Michel97872d32008-02-23 18:41:37 +00002703//------------------------------------------------------------------------
Scott Michel8b6b4202007-12-04 22:35:58 +00002704
Scott Michel97872d32008-02-23 18:41:37 +00002705class CEQBInst<dag OOL, dag IOL, list<dag> pattern> :
2706 RRForm<0b00001011110, OOL, IOL, "ceqb\t$rT, $rA, $rB",
2707 ByteOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002708
Scott Michel97872d32008-02-23 18:41:37 +00002709multiclass 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)))]>;
Scott Michel438be252007-12-17 22:32:34 +00002715
Scott Michel97872d32008-02-23 18:41:37 +00002716 def r8 :
2717 CEQBInst<(outs R8C:$rT), (ins R8C:$rA, R8C:$rB),
2718 [(set R8C:$rT, (seteq R8C:$rA, R8C:$rB))]>;
2719}
Scott Michel8b6b4202007-12-04 22:35:58 +00002720
Scott Michel97872d32008-02-23 18:41:37 +00002721class CEQBIInst<dag OOL, dag IOL, list<dag> pattern> :
2722 RI10Form<0b01111110, OOL, IOL, "ceqbi\t$rT, $rA, $val",
2723 ByteOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002724
Scott Michel97872d32008-02-23 18:41:37 +00002725multiclass 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00002735
Scott Michel97872d32008-02-23 18:41:37 +00002736class CEQHInst<dag OOL, dag IOL, list<dag> pattern> :
2737 RRForm<0b00010011110, OOL, IOL, "ceqh\t$rT, $rA, $rB",
2738 ByteOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002739
Scott Michel97872d32008-02-23 18:41:37 +00002740multiclass 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)))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002745
Scott Michel97872d32008-02-23 18:41:37 +00002746 def r16 : CEQHInst<(outs R16C:$rT), (ins R16C:$rA, R16C:$rB),
2747 [(set R16C:$rT, (seteq R16C:$rA, R16C:$rB))]>;
2748}
Scott Michel8b6b4202007-12-04 22:35:58 +00002749
Scott Michel97872d32008-02-23 18:41:37 +00002750class CEQHIInst<dag OOL, dag IOL, list<dag> pattern> :
2751 RI10Form<0b10111110, OOL, IOL, "ceqhi\t$rT, $rA, $val",
2752 ByteOp, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00002753
Scott Michel97872d32008-02-23 18:41:37 +00002754multiclass 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}
Scott Michel8b6b4202007-12-04 22:35:58 +00002763
Scott Michel97872d32008-02-23 18:41:37 +00002764class CEQInst<dag OOL, dag IOL, list<dag> pattern> :
2765 RRForm<0b00000011110, OOL, IOL, "ceq\t$rT, $rA, $rB",
2766 ByteOp, pattern>;
2767
2768multiclass 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
2778class CEQIInst<dag OOL, dag IOL, list<dag> pattern> :
2779 RI10Form<0b00111110, OOL, IOL, "ceqi\t$rT, $rA, $val",
2780 ByteOp, pattern>;
2781
2782multiclass 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
2793class CGTBInst<dag OOL, dag IOL, list<dag> pattern> :
2794 RRForm<0b00001010010, OOL, IOL, "cgtb\t$rT, $rA, $rB",
2795 ByteOp, pattern>;
2796
2797multiclass 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
2809class CGTBIInst<dag OOL, dag IOL, list<dag> pattern> :
2810 RI10Form<0b01110010, OOL, IOL, "cgtbi\t$rT, $rA, $val",
2811 ByteOp, pattern>;
2812
2813multiclass 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),
Scott Michel7833d472008-03-20 00:51:36 +00002821 [(set R8C:$rT, (setgt R8C:$rA, immSExt8:$val))]>;
Scott Michel97872d32008-02-23 18:41:37 +00002822}
2823
2824class CGTHInst<dag OOL, dag IOL, list<dag> pattern> :
2825 RRForm<0b00010010010, OOL, IOL, "cgth\t$rT, $rA, $rB",
2826 ByteOp, pattern>;
2827
2828multiclass 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
2838class CGTHIInst<dag OOL, dag IOL, list<dag> pattern> :
2839 RI10Form<0b10110010, OOL, IOL, "cgthi\t$rT, $rA, $val",
2840 ByteOp, pattern>;
2841
2842multiclass 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
2852class CGTInst<dag OOL, dag IOL, list<dag> pattern> :
2853 RRForm<0b00000010010, OOL, IOL, "cgt\t$rT, $rA, $rB",
2854 ByteOp, pattern>;
2855
2856multiclass 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
2866class CGTIInst<dag OOL, dag IOL, list<dag> pattern> :
2867 RI10Form<0b00110010, OOL, IOL, "cgti\t$rT, $rA, $val",
2868 ByteOp, pattern>;
2869
2870multiclass 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
2881class CLGTBInst<dag OOL, dag IOL, list<dag> pattern> :
Scott Michel6baba072008-03-05 23:02:02 +00002882 RRForm<0b00001011010, OOL, IOL, "clgtb\t$rT, $rA, $rB",
Scott Michel97872d32008-02-23 18:41:37 +00002883 ByteOp, pattern>;
2884
2885multiclass 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
2897class CLGTBIInst<dag OOL, dag IOL, list<dag> pattern> :
Scott Michel6baba072008-03-05 23:02:02 +00002898 RI10Form<0b01111010, OOL, IOL, "clgtbi\t$rT, $rA, $val",
Scott Michel97872d32008-02-23 18:41:37 +00002899 ByteOp, pattern>;
2900
2901multiclass 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
2912class CLGTHInst<dag OOL, dag IOL, list<dag> pattern> :
Scott Michel6baba072008-03-05 23:02:02 +00002913 RRForm<0b00010011010, OOL, IOL, "clgth\t$rT, $rA, $rB",
Scott Michel97872d32008-02-23 18:41:37 +00002914 ByteOp, pattern>;
2915
2916multiclass 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
2926class CLGTHIInst<dag OOL, dag IOL, list<dag> pattern> :
Scott Michel6baba072008-03-05 23:02:02 +00002927 RI10Form<0b10111010, OOL, IOL, "clgthi\t$rT, $rA, $val",
Scott Michel97872d32008-02-23 18:41:37 +00002928 ByteOp, pattern>;
2929
2930multiclass 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
2940class CLGTInst<dag OOL, dag IOL, list<dag> pattern> :
Scott Michel6baba072008-03-05 23:02:02 +00002941 RRForm<0b00000011010, OOL, IOL, "clgt\t$rT, $rA, $rB",
Scott Michel97872d32008-02-23 18:41:37 +00002942 ByteOp, pattern>;
2943
2944multiclass 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
2954class CLGTIInst<dag OOL, dag IOL, list<dag> pattern> :
Scott Michel6baba072008-03-05 23:02:02 +00002955 RI10Form<0b00111010, OOL, IOL, "clgti\t$rT, $rA, $val",
Scott Michel97872d32008-02-23 18:41:37 +00002956 ByteOp, pattern>;
2957
2958multiclass 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),
Scott Michel6baba072008-03-05 23:02:02 +00002966 [(set R32C:$rT, (setugt R32C:$rA, i32ImmSExt10:$val))]>;
Scott Michel97872d32008-02-23 18:41:37 +00002967}
2968
2969defm CEQB : CmpEqualByte;
2970defm CEQBI : CmpEqualByteImm;
2971defm CEQH : CmpEqualHalfword;
2972defm CEQHI : CmpEqualHalfwordImm;
2973defm CEQ : CmpEqualWord;
2974defm CEQI : CmpEqualWordImm;
2975defm CGTB : CmpGtrByte;
2976defm CGTBI : CmpGtrByteImm;
2977defm CGTH : CmpGtrHalfword;
2978defm CGTHI : CmpGtrHalfwordImm;
2979defm CGT : CmpGtrWord;
2980defm CGTI : CmpGtrWordImm;
2981defm CLGTB : CmpLGtrByte;
2982defm CLGTBI : CmpLGtrByteImm;
2983defm CLGTH : CmpLGtrHalfword;
2984defm CLGTHI : CmpLGtrHalfwordImm;
2985defm CLGT : CmpLGtrWord;
2986defm CLGTI : CmpLGtrWordImm;
2987
Scott Michel53ab7792008-03-10 16:58:52 +00002988//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel97872d32008-02-23 18:41:37 +00002989// 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.)
Scott Michel53ab7792008-03-10 16:58:52 +00002992//
2993// N.B.: This only matches the setcc set of conditionals. Special pattern
2994// matching is used for select conditionals.
2995//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel97872d32008-02-23 18:41:37 +00002996
Scott Michel53ab7792008-03-10 16:58:52 +00002997class 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
3002class 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
3007def : SETCCNegCondReg<setne, R8C, i8, XORBIr8, CEQBr8>;
3008def : SETCCNegCondImm<setne, R8C, i8, immSExt8, XORBIr8, CEQBIr8>;
3009
3010def : SETCCNegCondReg<setne, R16C, i16, XORHIr16, CEQHr16>;
3011def : SETCCNegCondImm<setne, R16C, i16, i16ImmSExt10, XORHIr16, CEQHIr16>;
3012
3013def : SETCCNegCondReg<setne, R32C, i32, XORIr32, CEQr32>;
3014def : SETCCNegCondImm<setne, R32C, i32, i32ImmSExt10, XORIr32, CEQIr32>;
Scott Michel97872d32008-02-23 18:41:37 +00003015
3016class 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
3022class 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
Scott Michel53ab7792008-03-10 16:58:52 +00003029def : SETCCBinOpReg<setge, R8C, ORr8, CGTBr8, CEQBr8>;
3030def : SETCCBinOpImm<setge, R8C, immSExt8, i8, ORr8, CGTBIr8, CEQBIr8>;
3031def : SETCCBinOpReg<setlt, R8C, NORr8, CGTBr8, CEQBr8>;
3032def : SETCCBinOpImm<setlt, R8C, immSExt8, i8, NORr8, CGTBIr8, CEQBIr8>;
3033def : Pat<(setle R8C:$rA, R8C:$rB),
3034 (XORBIr8 (CGTBr8 R8C:$rA, R8C:$rB), 0xff)>;
3035def : Pat<(setle R8C:$rA, immU8:$imm),
3036 (XORBIr8 (CGTBIr8 R8C:$rA, immU8:$imm), 0xff)>;
Scott Michel97872d32008-02-23 18:41:37 +00003037
Scott Michel53ab7792008-03-10 16:58:52 +00003038def : SETCCBinOpReg<setge, R16C, ORr16, CGTHr16, CEQHr16>;
3039def : SETCCBinOpImm<setge, R16C, i16ImmSExt10, i16,
3040 ORr16, CGTHIr16, CEQHIr16>;
3041def : SETCCBinOpReg<setlt, R16C, NORr16, CGTHr16, CEQHr16>;
3042def : SETCCBinOpImm<setlt, R16C, i16ImmSExt10, i16, NORr16, CGTHIr16, CEQHIr16>;
3043def : Pat<(setle R16C:$rA, R16C:$rB),
3044 (XORHIr16 (CGTHr16 R16C:$rA, R16C:$rB), 0xffff)>;
3045def : Pat<(setle R16C:$rA, i16ImmSExt10:$imm),
3046 (XORHIr16 (CGTHIr16 R16C:$rA, i16ImmSExt10:$imm), 0xffff)>;
Scott Michel97872d32008-02-23 18:41:37 +00003047
Scott Michel53ab7792008-03-10 16:58:52 +00003048def : SETCCBinOpReg<setge, R32C, ORr32, CGTr32, CEQr32>;
3049def : SETCCBinOpImm<setge, R32C, i32ImmSExt10, i32,
3050 ORr32, CGTIr32, CEQIr32>;
3051def : SETCCBinOpReg<setlt, R32C, NORr32, CGTr32, CEQr32>;
3052def : SETCCBinOpImm<setlt, R32C, i32ImmSExt10, i32, NORr32, CGTIr32, CEQIr32>;
3053def : Pat<(setle R32C:$rA, R32C:$rB),
3054 (XORIr32 (CGTr32 R32C:$rA, R32C:$rB), 0xffffffff)>;
3055def : Pat<(setle R32C:$rA, i32ImmSExt10:$imm),
3056 (XORIr32 (CGTIr32 R32C:$rA, i32ImmSExt10:$imm), 0xffffffff)>;
Scott Michel97872d32008-02-23 18:41:37 +00003057
Scott Michel53ab7792008-03-10 16:58:52 +00003058def : SETCCBinOpReg<setuge, R8C, ORr8, CLGTBr8, CEQBr8>;
3059def : SETCCBinOpImm<setuge, R8C, immSExt8, i8, ORr8, CLGTBIr8, CEQBIr8>;
3060def : SETCCBinOpReg<setult, R8C, NORr8, CLGTBr8, CEQBr8>;
3061def : SETCCBinOpImm<setult, R8C, immSExt8, i8, NORr8, CLGTBIr8, CEQBIr8>;
3062def : Pat<(setule R8C:$rA, R8C:$rB),
3063 (XORBIr8 (CLGTBr8 R8C:$rA, R8C:$rB), 0xff)>;
3064def : Pat<(setule R8C:$rA, immU8:$imm),
3065 (XORBIr8 (CLGTBIr8 R8C:$rA, immU8:$imm), 0xff)>;
Scott Michel97872d32008-02-23 18:41:37 +00003066
Scott Michel53ab7792008-03-10 16:58:52 +00003067def : SETCCBinOpReg<setuge, R16C, ORr16, CLGTHr16, CEQHr16>;
3068def : SETCCBinOpImm<setuge, R16C, i16ImmSExt10, i16,
3069 ORr16, CLGTHIr16, CEQHIr16>;
3070def : SETCCBinOpReg<setult, R16C, NORr16, CLGTHr16, CEQHr16>;
3071def : SETCCBinOpImm<setult, R16C, i16ImmSExt10, i16, NORr16,
3072 CLGTHIr16, CEQHIr16>;
3073def : Pat<(setule R16C:$rA, R16C:$rB),
3074 (XORHIr16 (CLGTHr16 R16C:$rA, R16C:$rB), 0xffff)>;
Scott Michel7833d472008-03-20 00:51:36 +00003075def : Pat<(setule R16C:$rA, i16ImmSExt10:$imm),
Scott Michel53ab7792008-03-10 16:58:52 +00003076 (XORHIr16 (CLGTHIr16 R16C:$rA, i16ImmSExt10:$imm), 0xffff)>;
Scott Michel97872d32008-02-23 18:41:37 +00003077
Scott Michel53ab7792008-03-10 16:58:52 +00003078def : SETCCBinOpReg<setuge, R32C, ORr32, CLGTr32, CEQr32>;
Scott Michel7833d472008-03-20 00:51:36 +00003079def : SETCCBinOpImm<setuge, R32C, i32ImmSExt10, i32,
Scott Michel53ab7792008-03-10 16:58:52 +00003080 ORr32, CLGTIr32, CEQIr32>;
3081def : SETCCBinOpReg<setult, R32C, NORr32, CLGTr32, CEQr32>;
Scott Michel7833d472008-03-20 00:51:36 +00003082def : SETCCBinOpImm<setult, R32C, i32ImmSExt10, i32, NORr32, CLGTIr32, CEQIr32>;
Scott Michel53ab7792008-03-10 16:58:52 +00003083def : Pat<(setule R32C:$rA, R32C:$rB),
3084 (XORIr32 (CLGTr32 R32C:$rA, R32C:$rB), 0xffffffff)>;
3085def : Pat<(setule R32C:$rA, i32ImmSExt10:$imm),
3086 (XORIr32 (CLGTIr32 R32C:$rA, i32ImmSExt10:$imm), 0xffffffff)>;
Scott Michel97872d32008-02-23 18:41:37 +00003087
Scott Michel53ab7792008-03-10 16:58:52 +00003088//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
3089// select conditional patterns:
3090//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
3091
3092class 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,
Bill Wendling8f6608b2008-07-22 08:50:44 +00003097 (cmpare rclass:$rA, rclass:$rB))>;
Scott Michel53ab7792008-03-10 16:58:52 +00003098
3099class SELECTNegCondImm<PatFrag cond, RegisterClass rclass, ValueType inttype,
3100 PatLeaf immpred, SPUInstr selinstr, SPUInstr cmpare>:
3101 Pat<(select (inttype (cond rclass:$rA, immpred:$imm)),
Bill Wendling8f6608b2008-07-22 08:50:44 +00003102 rclass:$rTrue, rclass:$rFalse),
Scott Michel53ab7792008-03-10 16:58:52 +00003103 (selinstr rclass:$rTrue, rclass:$rFalse,
3104 (cmpare rclass:$rA, immpred:$imm))>;
3105
3106def : SELECTNegCondReg<setne, R8C, i8, SELBr8, CEQBr8>;
3107def : SELECTNegCondImm<setne, R8C, i8, immSExt8, SELBr8, CEQBIr8>;
3108def : SELECTNegCondReg<setle, R8C, i8, SELBr8, CGTBr8>;
3109def : SELECTNegCondImm<setle, R8C, i8, immSExt8, SELBr8, CGTBr8>;
3110def : SELECTNegCondReg<setule, R8C, i8, SELBr8, CLGTBr8>;
3111def : SELECTNegCondImm<setule, R8C, i8, immU8, SELBr8, CLGTBIr8>;
3112
3113def : SELECTNegCondReg<setne, R16C, i16, SELBr16, CEQHr16>;
3114def : SELECTNegCondImm<setne, R16C, i16, i16ImmSExt10, SELBr16, CEQHIr16>;
3115def : SELECTNegCondReg<setle, R16C, i16, SELBr16, CGTHr16>;
3116def : SELECTNegCondImm<setle, R16C, i16, i16ImmSExt10, SELBr16, CGTHIr16>;
3117def : SELECTNegCondReg<setule, R16C, i16, SELBr16, CLGTHr16>;
3118def : SELECTNegCondImm<setule, R16C, i16, i16ImmSExt10, SELBr16, CLGTHIr16>;
3119
3120def : SELECTNegCondReg<setne, R32C, i32, SELBr32, CEQr32>;
3121def : SELECTNegCondImm<setne, R32C, i32, i32ImmSExt10, SELBr32, CEQIr32>;
3122def : SELECTNegCondReg<setle, R32C, i32, SELBr32, CGTr32>;
3123def : SELECTNegCondImm<setle, R32C, i32, i32ImmSExt10, SELBr32, CGTIr32>;
3124def : SELECTNegCondReg<setule, R32C, i32, SELBr32, CLGTr32>;
3125def : SELECTNegCondImm<setule, R32C, i32, i32ImmSExt10, SELBr32, CLGTIr32>;
3126
3127class 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
3136class 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))),
Bill Wendling8f6608b2008-07-22 08:50:44 +00003141 rclass:$rTrue, rclass:$rFalse),
Scott Michel53ab7792008-03-10 16:58:52 +00003142 (selinstr rclass:$rFalse, rclass:$rTrue,
3143 (binop (cmpOp1 rclass:$rA, (inttype immpred:$imm)),
3144 (cmpOp2 rclass:$rA, (inttype immpred:$imm))))>;
3145
3146def : SELECTBinOpReg<setge, R8C, i8, SELBr8, ORr8, CGTBr8, CEQBr8>;
3147def : SELECTBinOpImm<setge, R8C, immSExt8, i8,
3148 SELBr8, ORr8, CGTBIr8, CEQBIr8>;
3149
3150def : SELECTBinOpReg<setge, R16C, i16, SELBr16, ORr16, CGTHr16, CEQHr16>;
3151def : SELECTBinOpImm<setge, R16C, i16ImmSExt10, i16,
3152 SELBr16, ORr16, CGTHIr16, CEQHIr16>;
3153
3154def : SELECTBinOpReg<setge, R32C, i32, SELBr32, ORr32, CGTr32, CEQr32>;
3155def : SELECTBinOpImm<setge, R32C, i32ImmSExt10, i32,
3156 SELBr32, ORr32, CGTIr32, CEQIr32>;
3157
3158def : SELECTBinOpReg<setuge, R8C, i8, SELBr8, ORr8, CLGTBr8, CEQBr8>;
3159def : SELECTBinOpImm<setuge, R8C, immSExt8, i8,
3160 SELBr8, ORr8, CLGTBIr8, CEQBIr8>;
3161
3162def : SELECTBinOpReg<setuge, R16C, i16, SELBr16, ORr16, CLGTHr16, CEQHr16>;
3163def : SELECTBinOpImm<setuge, R16C, i16ImmUns10, i16,
3164 SELBr16, ORr16, CLGTHIr16, CEQHIr16>;
3165
3166def : SELECTBinOpReg<setuge, R32C, i32, SELBr32, ORr32, CLGTr32, CEQr32>;
3167def : SELECTBinOpImm<setuge, R32C, i32ImmUns10, i32,
3168 SELBr32, ORr32, CLGTIr32, CEQIr32>;
Scott Michel97872d32008-02-23 18:41:37 +00003169
3170//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Scott Michel8b6b4202007-12-04 22:35:58 +00003171
3172let 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",
Scott Micheldbac4cf2008-01-11 02:53:15 +00003196 [(SPUcall (SPUaform tglobaladdr:$func, 0))]>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003197
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:
3212let 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
Scott Michel394e26d2008-01-17 20:38:41 +00003264//===----------------------------------------------------------------------===//
Scott Michelf9f42e62008-01-29 02:16:57 +00003265// setcc and brcond patterns:
Scott Michel394e26d2008-01-17 20:38:41 +00003266//===----------------------------------------------------------------------===//
Scott Michelf9f42e62008-01-29 02:16:57 +00003267
Scott Michel8b6b4202007-12-04 22:35:58 +00003268def : Pat<(brcond (i16 (seteq R16C:$rA, 0)), bb:$dest),
3269 (BRHZ R16C:$rA, bb:$dest)>;
Scott Michelf9f42e62008-01-29 02:16:57 +00003270def : Pat<(brcond (i16 (setne R16C:$rA, 0)), bb:$dest),
3271 (BRHNZ R16C:$rA, bb:$dest)>;
Scott Michel97872d32008-02-23 18:41:37 +00003272
3273def : Pat<(brcond (i32 (seteq R32C:$rA, 0)), bb:$dest),
3274 (BRZ R32C:$rA, bb:$dest)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003275def : Pat<(brcond (i32 (setne R32C:$rA, 0)), bb:$dest),
Scott Michel394e26d2008-01-17 20:38:41 +00003276 (BRNZ R32C:$rA, bb:$dest)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003277
Scott Michel97872d32008-02-23 18:41:37 +00003278multiclass 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)>;
Scott Michelf9f42e62008-01-29 02:16:57 +00003282
Scott Michel97872d32008-02-23 18:41:37 +00003283 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
3293defm BRCONDeq : BranchCondEQ<seteq, BRHZ, BRZ>;
3294defm BRCONDne : BranchCondEQ<setne, BRHNZ, BRNZ>;
3295
3296multiclass 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
3311defm BRCONDugt : BranchCondLGT<setugt, BRHNZ, BRNZ>;
3312defm BRCONDule : BranchCondLGT<setule, BRHZ, BRZ>;
3313
3314multiclass 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
3338defm BRCONDuge : BranchCondLGTEQ<setuge, ORr16, BRHNZ, ORr32, BRNZ>;
3339defm BRCONDult : BranchCondLGTEQ<setult, ORr16, BRHZ, ORr32, BRZ>;
3340
3341multiclass 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
3356defm BRCONDgt : BranchCondGT<setgt, BRHNZ, BRNZ>;
3357defm BRCONDle : BranchCondGT<setle, BRHZ, BRZ>;
3358
3359multiclass 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
3383defm BRCONDge : BranchCondGTEQ<setge, ORr16, BRHNZ, ORr32, BRNZ>;
3384defm BRCONDlt : BranchCondGTEQ<setlt, ORr16, BRHZ, ORr32, BRZ>;
Scott Michelf9f42e62008-01-29 02:16:57 +00003385
Scott Michel8b6b4202007-12-04 22:35:58 +00003386let isTerminator = 1, isBarrier = 1 in {
3387 let isReturn = 1 in {
3388 def RET:
3389 RETForm<"bi\t$$lr", [(retflag)]>;
3390 }
3391}
3392
3393//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00003394// Single precision floating point instructions
3395//===----------------------------------------------------------------------===//
3396
Scott Michel61895fe2008-12-10 00:15:19 +00003397class FAInst<dag OOL, dag IOL, list<dag> pattern>:
3398 RRForm<0b01011000100, OOL, IOL, "fa\t$rT, $rA, $rB",
3399 SPrecFP, pattern>;
3400class FAVecInst<ValueType vectype>:
3401 FAInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3402 [(set (vectype VECREG:$rT),
3403 (fadd (vectype VECREG:$rA), (vectype VECREG:$rB)))]>;
3404multiclass SFPAdd
3405{
3406 def v4f32: FAVecInst<v4f32>;
3407 def r32: FAInst<(outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3408 [(set R32FP:$rT, (fadd R32FP:$rA, R32FP:$rB))]>;
3409}
Scott Michel8b6b4202007-12-04 22:35:58 +00003410
Scott Michel61895fe2008-12-10 00:15:19 +00003411defm FA : SFPAdd;
Scott Michel8b6b4202007-12-04 22:35:58 +00003412
Scott Michel61895fe2008-12-10 00:15:19 +00003413class FSInst<dag OOL, dag IOL, list<dag> pattern>:
3414 RRForm<0b01011000100, OOL, IOL, "fs\t$rT, $rA, $rB",
3415 SPrecFP, pattern>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003416
Scott Michel61895fe2008-12-10 00:15:19 +00003417class FSVecInst<ValueType vectype>:
3418 FSInst<(outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3419 [(set (vectype VECREG:$rT),
3420 (fsub (vectype VECREG:$rA), (vectype VECREG:$rB)))]>;
3421
3422multiclass SFPSub
3423{
3424 def v4f32: FSVecInst<v4f32>;
3425 def r32: FSInst<(outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3426 [(set R32FP:$rT, (fsub R32FP:$rA, R32FP:$rB))]>;
3427}
3428
3429defm FS : SFPSub;
Scott Michel8b6b4202007-12-04 22:35:58 +00003430
3431// Floating point reciprocal estimate
3432def FREv4f32 :
3433 RRForm_1<0b00011101100, (outs VECREG:$rT), (ins VECREG:$rA),
3434 "frest\t$rT, $rA", SPrecFP,
3435 [(set (v4f32 VECREG:$rT), (SPUreciprocalEst (v4f32 VECREG:$rA)))]>;
3436
3437def FREf32 :
3438 RRForm_1<0b00011101100, (outs R32FP:$rT), (ins R32FP:$rA),
3439 "frest\t$rT, $rA", SPrecFP,
3440 [(set R32FP:$rT, (SPUreciprocalEst R32FP:$rA))]>;
3441
3442// Floating point interpolate (used in conjunction with reciprocal estimate)
3443def FIv4f32 :
3444 RRForm<0b00101011110, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3445 "fi\t$rT, $rA, $rB", SPrecFP,
3446 [(set (v4f32 VECREG:$rT), (SPUinterpolate (v4f32 VECREG:$rA),
3447 (v4f32 VECREG:$rB)))]>;
3448
3449def FIf32 :
3450 RRForm<0b00101011110, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3451 "fi\t$rT, $rA, $rB", SPrecFP,
3452 [(set R32FP:$rT, (SPUinterpolate R32FP:$rA, R32FP:$rB))]>;
3453
Scott Michel33d73eb2008-11-21 02:56:16 +00003454//--------------------------------------------------------------------------
3455// Basic single precision floating point comparisons:
3456//
3457// Note: There is no support on SPU for single precision NaN. Consequently,
3458// ordered and unordered comparisons are the same.
3459//--------------------------------------------------------------------------
3460
Scott Michel8b6b4202007-12-04 22:35:58 +00003461def FCEQf32 :
3462 RRForm<0b01000011110, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3463 "fceq\t$rT, $rA, $rB", SPrecFP,
Scott Michel33d73eb2008-11-21 02:56:16 +00003464 [(set R32C:$rT, (setueq R32FP:$rA, R32FP:$rB))]>;
3465
3466def : Pat<(setoeq R32FP:$rA, R32FP:$rB),
3467 (FCEQf32 R32FP:$rA, R32FP:$rB)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003468
3469def FCMEQf32 :
3470 RRForm<0b01010011110, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3471 "fcmeq\t$rT, $rA, $rB", SPrecFP,
Scott Michel33d73eb2008-11-21 02:56:16 +00003472 [(set R32C:$rT, (setueq (fabs R32FP:$rA), (fabs R32FP:$rB)))]>;
3473
3474def : Pat<(setoeq (fabs R32FP:$rA), (fabs R32FP:$rB)),
3475 (FCMEQf32 R32FP:$rA, R32FP:$rB)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003476
3477def FCGTf32 :
3478 RRForm<0b01000011010, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3479 "fcgt\t$rT, $rA, $rB", SPrecFP,
Scott Michel33d73eb2008-11-21 02:56:16 +00003480 [(set R32C:$rT, (setugt R32FP:$rA, R32FP:$rB))]>;
3481
3482def : Pat<(setugt R32FP:$rA, R32FP:$rB),
3483 (FCGTf32 R32FP:$rA, R32FP:$rB)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003484
3485def FCMGTf32 :
3486 RRForm<0b01010011010, (outs R32C:$rT), (ins R32FP:$rA, R32FP:$rB),
3487 "fcmgt\t$rT, $rA, $rB", SPrecFP,
Scott Michel33d73eb2008-11-21 02:56:16 +00003488 [(set R32C:$rT, (setugt (fabs R32FP:$rA), (fabs R32FP:$rB)))]>;
3489
3490def : Pat<(setugt (fabs R32FP:$rA), (fabs R32FP:$rB)),
3491 (FCMGTf32 R32FP:$rA, R32FP:$rB)>;
3492
3493//--------------------------------------------------------------------------
3494// Single precision floating point comparisons and SETCC equivalents:
3495//--------------------------------------------------------------------------
3496
3497def : SETCCNegCondReg<setune, R32FP, i32, XORIr32, FCEQf32>;
3498def : SETCCNegCondReg<setone, R32FP, i32, XORIr32, FCEQf32>;
3499
3500def : SETCCBinOpReg<setuge, R32FP, ORr32, FCGTf32, FCEQf32>;
3501def : SETCCBinOpReg<setoge, R32FP, ORr32, FCGTf32, FCEQf32>;
3502
3503def : SETCCBinOpReg<setult, R32FP, NORr32, FCGTf32, FCEQf32>;
3504def : SETCCBinOpReg<setolt, R32FP, NORr32, FCGTf32, FCEQf32>;
3505
3506def : Pat<(setule R32FP:$rA, R32FP:$rB),
3507 (XORIr32 (FCGTf32 R32FP:$rA, R32FP:$rB), 0xffffffff)>;
3508def : Pat<(setole R32FP:$rA, R32FP:$rB),
3509 (XORIr32 (FCGTf32 R32FP:$rA, R32FP:$rB), 0xffffffff)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003510
3511// FP Status and Control Register Write
3512// Why isn't rT a don't care in the ISA?
3513// Should we create a special RRForm_3 for this guy and zero out the rT?
3514def FSCRWf32 :
3515 RRForm_1<0b01011101110, (outs R32FP:$rT), (ins R32FP:$rA),
3516 "fscrwr\t$rA", SPrecFP,
3517 [/* This instruction requires an intrinsic. Note: rT is unused. */]>;
3518
3519// FP Status and Control Register Read
3520def FSCRRf32 :
3521 RRForm_2<0b01011101110, (outs R32FP:$rT), (ins),
3522 "fscrrd\t$rT", SPrecFP,
3523 [/* This instruction requires an intrinsic */]>;
3524
3525// llvm instruction space
3526// How do these map onto cell instructions?
3527// fdiv rA rB
3528// frest rC rB # c = 1/b (both lines)
3529// fi rC rB rC
3530// fm rD rA rC # d = a * 1/b
3531// fnms rB rD rB rA # b = - (d * b - a) --should == 0 in a perfect world
3532// fma rB rB rC rD # b = b * c + d
3533// = -(d *b -a) * c + d
3534// = a * c - c ( a *b *c - a)
3535
3536// fcopysign (???)
3537
3538// Library calls:
3539// These llvm instructions will actually map to library calls.
3540// All that's needed, then, is to check that the appropriate library is
3541// imported and do a brsl to the proper function name.
3542// frem # fmod(x, y): x - (x/y) * y
3543// (Note: fmod(double, double), fmodf(float,float)
3544// fsqrt?
3545// fsin?
3546// fcos?
3547// Unimplemented SPU instruction space
3548// floating reciprocal absolute square root estimate (frsqest)
3549
3550// The following are probably just intrinsics
3551// status and control register write
3552// status and control register read
3553
3554//--------------------------------------
3555// Floating point multiply instructions
3556//--------------------------------------
3557
3558def FMv4f32:
3559 RRForm<0b00100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3560 "fm\t$rT, $rA, $rB", SPrecFP,
3561 [(set (v4f32 VECREG:$rT), (fmul (v4f32 VECREG:$rA),
3562 (v4f32 VECREG:$rB)))]>;
3563
3564def FMf32 :
3565 RRForm<0b01100011010, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB),
3566 "fm\t$rT, $rA, $rB", SPrecFP,
3567 [(set R32FP:$rT, (fmul R32FP:$rA, R32FP:$rB))]>;
3568
3569// Floating point multiply and add
3570// e.g. d = c + (a * b)
3571def FMAv4f32:
3572 RRRForm<0b0111, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3573 "fma\t$rT, $rA, $rB, $rC", SPrecFP,
3574 [(set (v4f32 VECREG:$rT),
3575 (fadd (v4f32 VECREG:$rC),
3576 (fmul (v4f32 VECREG:$rA), (v4f32 VECREG:$rB))))]>;
3577
3578def FMAf32:
3579 RRRForm<0b0111, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB, R32FP:$rC),
3580 "fma\t$rT, $rA, $rB, $rC", SPrecFP,
3581 [(set R32FP:$rT, (fadd R32FP:$rC, (fmul R32FP:$rA, R32FP:$rB)))]>;
3582
3583// FP multiply and subtract
3584// Subtracts value in rC from product
3585// res = a * b - c
3586def FMSv4f32 :
3587 RRRForm<0b0111, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3588 "fms\t$rT, $rA, $rB, $rC", SPrecFP,
3589 [(set (v4f32 VECREG:$rT),
3590 (fsub (fmul (v4f32 VECREG:$rA), (v4f32 VECREG:$rB)),
3591 (v4f32 VECREG:$rC)))]>;
3592
3593def FMSf32 :
3594 RRRForm<0b0111, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB, R32FP:$rC),
3595 "fms\t$rT, $rA, $rB, $rC", SPrecFP,
3596 [(set R32FP:$rT,
3597 (fsub (fmul R32FP:$rA, R32FP:$rB), R32FP:$rC))]>;
3598
3599// Floating Negative Mulitply and Subtract
3600// Subtracts product from value in rC
3601// res = fneg(fms a b c)
3602// = - (a * b - c)
3603// = c - a * b
3604// NOTE: subtraction order
3605// fsub a b = a - b
3606// fs a b = b - a?
3607def FNMSf32 :
3608 RRRForm<0b1101, (outs R32FP:$rT), (ins R32FP:$rA, R32FP:$rB, R32FP:$rC),
3609 "fnms\t$rT, $rA, $rB, $rC", SPrecFP,
3610 [(set R32FP:$rT, (fsub R32FP:$rC, (fmul R32FP:$rA, R32FP:$rB)))]>;
3611
3612def FNMSv4f32 :
3613 RRRForm<0b1101, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3614 "fnms\t$rT, $rA, $rB, $rC", SPrecFP,
3615 [(set (v4f32 VECREG:$rT),
3616 (fsub (v4f32 VECREG:$rC),
3617 (fmul (v4f32 VECREG:$rA),
3618 (v4f32 VECREG:$rB))))]>;
3619
3620//--------------------------------------
3621// Floating Point Conversions
3622// Signed conversions:
3623def CSiFv4f32:
3624 CVTIntFPForm<0b0101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3625 "csflt\t$rT, $rA, 0", SPrecFP,
3626 [(set (v4f32 VECREG:$rT), (sint_to_fp (v4i32 VECREG:$rA)))]>;
3627
3628// Convert signed integer to floating point
3629def CSiFf32 :
3630 CVTIntFPForm<0b0101101110, (outs R32FP:$rT), (ins R32C:$rA),
3631 "csflt\t$rT, $rA, 0", SPrecFP,
3632 [(set R32FP:$rT, (sint_to_fp R32C:$rA))]>;
3633
3634// Convert unsigned into to float
3635def CUiFv4f32 :
3636 CVTIntFPForm<0b1101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3637 "cuflt\t$rT, $rA, 0", SPrecFP,
3638 [(set (v4f32 VECREG:$rT), (uint_to_fp (v4i32 VECREG:$rA)))]>;
3639
3640def CUiFf32 :
3641 CVTIntFPForm<0b1101101110, (outs R32FP:$rT), (ins R32C:$rA),
3642 "cuflt\t$rT, $rA, 0", SPrecFP,
3643 [(set R32FP:$rT, (uint_to_fp R32C:$rA))]>;
3644
3645// Convert float to unsigned int
3646// Assume that scale = 0
3647
3648def CFUiv4f32 :
3649 CVTIntFPForm<0b1101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3650 "cfltu\t$rT, $rA, 0", SPrecFP,
3651 [(set (v4i32 VECREG:$rT), (fp_to_uint (v4f32 VECREG:$rA)))]>;
3652
3653def CFUif32 :
3654 CVTIntFPForm<0b1101101110, (outs R32C:$rT), (ins R32FP:$rA),
3655 "cfltu\t$rT, $rA, 0", SPrecFP,
3656 [(set R32C:$rT, (fp_to_uint R32FP:$rA))]>;
3657
3658// Convert float to signed int
3659// Assume that scale = 0
3660
3661def CFSiv4f32 :
3662 CVTIntFPForm<0b1101101110, (outs VECREG:$rT), (ins VECREG:$rA),
3663 "cflts\t$rT, $rA, 0", SPrecFP,
3664 [(set (v4i32 VECREG:$rT), (fp_to_sint (v4f32 VECREG:$rA)))]>;
3665
3666def CFSif32 :
3667 CVTIntFPForm<0b1101101110, (outs R32C:$rT), (ins R32FP:$rA),
3668 "cflts\t$rT, $rA, 0", SPrecFP,
3669 [(set R32C:$rT, (fp_to_sint R32FP:$rA))]>;
3670
3671//===----------------------------------------------------------------------==//
3672// Single<->Double precision conversions
3673//===----------------------------------------------------------------------==//
3674
3675// NOTE: We use "vec" name suffix here to avoid confusion (e.g. input is a
3676// v4f32, output is v2f64--which goes in the name?)
3677
3678// Floating point extend single to double
3679// NOTE: Not sure if passing in v4f32 to FESDvec is correct since it
3680// operates on two double-word slots (i.e. 1st and 3rd fp numbers
3681// are ignored).
3682def FESDvec :
3683 RRForm_1<0b00011101110, (outs VECREG:$rT), (ins VECREG:$rA),
3684 "fesd\t$rT, $rA", SPrecFP,
3685 [(set (v2f64 VECREG:$rT), (fextend (v4f32 VECREG:$rA)))]>;
3686
3687def FESDf32 :
3688 RRForm_1<0b00011101110, (outs R64FP:$rT), (ins R32FP:$rA),
3689 "fesd\t$rT, $rA", SPrecFP,
3690 [(set R64FP:$rT, (fextend R32FP:$rA))]>;
3691
3692// Floating point round double to single
3693//def FRDSvec :
3694// RRForm_1<0b10011101110, (outs VECREG:$rT), (ins VECREG:$rA),
3695// "frds\t$rT, $rA,", SPrecFP,
3696// [(set (v4f32 R32FP:$rT), (fround (v2f64 R64FP:$rA)))]>;
3697
3698def FRDSf64 :
3699 RRForm_1<0b10011101110, (outs R32FP:$rT), (ins R64FP:$rA),
3700 "frds\t$rT, $rA", SPrecFP,
3701 [(set R32FP:$rT, (fround R64FP:$rA))]>;
3702
3703//ToDo include anyextend?
3704
3705//===----------------------------------------------------------------------==//
3706// Double precision floating point instructions
3707//===----------------------------------------------------------------------==//
3708def FAf64 :
3709 RRForm<0b00110011010, (outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
3710 "dfa\t$rT, $rA, $rB", DPrecFP,
3711 [(set R64FP:$rT, (fadd R64FP:$rA, R64FP:$rB))]>;
3712
3713def FAv2f64 :
3714 RRForm<0b00110011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3715 "dfa\t$rT, $rA, $rB", DPrecFP,
3716 [(set (v2f64 VECREG:$rT), (fadd (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)))]>;
3717
3718def FSf64 :
3719 RRForm<0b10100011010, (outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
3720 "dfs\t$rT, $rA, $rB", DPrecFP,
3721 [(set R64FP:$rT, (fsub R64FP:$rA, R64FP:$rB))]>;
3722
3723def FSv2f64 :
3724 RRForm<0b10100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3725 "dfs\t$rT, $rA, $rB", DPrecFP,
3726 [(set (v2f64 VECREG:$rT),
3727 (fsub (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)))]>;
3728
3729def FMf64 :
3730 RRForm<0b01100011010, (outs R64FP:$rT), (ins R64FP:$rA, R64FP:$rB),
3731 "dfm\t$rT, $rA, $rB", DPrecFP,
3732 [(set R64FP:$rT, (fmul R64FP:$rA, R64FP:$rB))]>;
3733
3734def FMv2f64:
3735 RRForm<0b00100011010, (outs VECREG:$rT), (ins VECREG:$rA, VECREG:$rB),
3736 "dfm\t$rT, $rA, $rB", DPrecFP,
3737 [(set (v2f64 VECREG:$rT),
3738 (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)))]>;
3739
3740def FMAf64:
3741 RRForm<0b00111010110, (outs R64FP:$rT),
3742 (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3743 "dfma\t$rT, $rA, $rB", DPrecFP,
3744 [(set R64FP:$rT, (fadd R64FP:$rC, (fmul R64FP:$rA, R64FP:$rB)))]>,
3745 RegConstraint<"$rC = $rT">,
3746 NoEncode<"$rC">;
3747
3748def FMAv2f64:
3749 RRForm<0b00111010110, (outs VECREG:$rT),
3750 (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3751 "dfma\t$rT, $rA, $rB", DPrecFP,
3752 [(set (v2f64 VECREG:$rT),
3753 (fadd (v2f64 VECREG:$rC),
3754 (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB))))]>,
3755 RegConstraint<"$rC = $rT">,
3756 NoEncode<"$rC">;
3757
3758def FMSf64 :
3759 RRForm<0b10111010110, (outs R64FP:$rT),
3760 (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3761 "dfms\t$rT, $rA, $rB", DPrecFP,
3762 [(set R64FP:$rT, (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))]>,
3763 RegConstraint<"$rC = $rT">,
3764 NoEncode<"$rC">;
3765
3766def FMSv2f64 :
3767 RRForm<0b10111010110, (outs VECREG:$rT),
3768 (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3769 "dfms\t$rT, $rA, $rB", DPrecFP,
3770 [(set (v2f64 VECREG:$rT),
3771 (fsub (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)),
3772 (v2f64 VECREG:$rC)))]>;
3773
3774// FNMS: - (a * b - c)
3775// - (a * b) + c => c - (a * b)
3776def FNMSf64 :
3777 RRForm<0b01111010110, (outs R64FP:$rT),
3778 (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3779 "dfnms\t$rT, $rA, $rB", DPrecFP,
3780 [(set R64FP:$rT, (fsub R64FP:$rC, (fmul R64FP:$rA, R64FP:$rB)))]>,
3781 RegConstraint<"$rC = $rT">,
3782 NoEncode<"$rC">;
3783
3784def : Pat<(fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC)),
3785 (FNMSf64 R64FP:$rA, R64FP:$rB, R64FP:$rC)>;
3786
3787def FNMSv2f64 :
3788 RRForm<0b01111010110, (outs VECREG:$rT),
3789 (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3790 "dfnms\t$rT, $rA, $rB", DPrecFP,
3791 [(set (v2f64 VECREG:$rT),
3792 (fsub (v2f64 VECREG:$rC),
3793 (fmul (v2f64 VECREG:$rA),
3794 (v2f64 VECREG:$rB))))]>,
3795 RegConstraint<"$rC = $rT">,
3796 NoEncode<"$rC">;
3797
3798def : Pat<(fneg (fsub (fmul (v2f64 VECREG:$rA), (v2f64 VECREG:$rB)),
3799 (v2f64 VECREG:$rC))),
3800 (FNMSv2f64 VECREG:$rA, VECREG:$rB, VECREG:$rC)>;
3801
3802// - (a * b + c)
3803// - (a * b) - c
3804def FNMAf64 :
3805 RRForm<0b11111010110, (outs R64FP:$rT),
3806 (ins R64FP:$rA, R64FP:$rB, R64FP:$rC),
3807 "dfnma\t$rT, $rA, $rB", DPrecFP,
3808 [(set R64FP:$rT, (fneg (fadd R64FP:$rC, (fmul R64FP:$rA, R64FP:$rB))))]>,
3809 RegConstraint<"$rC = $rT">,
3810 NoEncode<"$rC">;
3811
3812def FNMAv2f64 :
3813 RRForm<0b11111010110, (outs VECREG:$rT),
3814 (ins VECREG:$rA, VECREG:$rB, VECREG:$rC),
3815 "dfnma\t$rT, $rA, $rB", DPrecFP,
3816 [(set (v2f64 VECREG:$rT),
3817 (fneg (fadd (v2f64 VECREG:$rC),
3818 (fmul (v2f64 VECREG:$rA),
3819 (v2f64 VECREG:$rB)))))]>,
3820 RegConstraint<"$rC = $rT">,
3821 NoEncode<"$rC">;
3822
3823//===----------------------------------------------------------------------==//
3824// Floating point negation and absolute value
3825//===----------------------------------------------------------------------==//
3826
3827def : Pat<(fneg (v4f32 VECREG:$rA)),
3828 (XORfnegvec (v4f32 VECREG:$rA),
3829 (v4f32 (ILHUv4i32 0x8000)))>;
3830
3831def : Pat<(fneg R32FP:$rA),
3832 (XORfneg32 R32FP:$rA, (ILHUr32 0x8000))>;
3833
3834def : Pat<(fneg (v2f64 VECREG:$rA)),
3835 (XORfnegvec (v2f64 VECREG:$rA),
3836 (v2f64 (ANDBIv16i8 (FSMBIv16i8 0x8080), 0x80)))>;
3837
3838def : Pat<(fneg R64FP:$rA),
3839 (XORfneg64 R64FP:$rA,
3840 (ANDBIv16i8 (FSMBIv16i8 0x8080), 0x80))>;
3841
3842// Floating point absolute value
3843
3844def : Pat<(fabs R32FP:$rA),
3845 (ANDfabs32 R32FP:$rA, (IOHLr32 (ILHUr32 0x7fff), 0xffff))>;
3846
3847def : Pat<(fabs (v4f32 VECREG:$rA)),
3848 (ANDfabsvec (v4f32 VECREG:$rA),
3849 (v4f32 (ANDBIv16i8 (FSMBIv16i8 0xffff), 0x7f)))>;
3850
3851def : Pat<(fabs R64FP:$rA),
3852 (ANDfabs64 R64FP:$rA, (ANDBIv16i8 (FSMBIv16i8 0xffff), 0x7f))>;
3853
3854def : Pat<(fabs (v2f64 VECREG:$rA)),
3855 (ANDfabsvec (v2f64 VECREG:$rA),
3856 (v2f64 (ANDBIv16i8 (FSMBIv16i8 0xffff), 0x7f)))>;
3857
3858//===----------------------------------------------------------------------===//
Scott Michel61895fe2008-12-10 00:15:19 +00003859// Hint for branch instructions:
3860//===----------------------------------------------------------------------===//
3861
3862/* def HBR : SPUInstr<(outs), (ins), "hbr\t" */
3863
3864//===----------------------------------------------------------------------===//
Scott Michel8b6b4202007-12-04 22:35:58 +00003865// Execution, Load NOP (execute NOPs belong in even pipeline, load NOPs belong
3866// in the odd pipeline)
3867//===----------------------------------------------------------------------===//
3868
Scott Michel97872d32008-02-23 18:41:37 +00003869def ENOP : SPUInstr<(outs), (ins), "enop", ExecNOP> {
Scott Michel8b6b4202007-12-04 22:35:58 +00003870 let Pattern = [];
3871
3872 let Inst{0-10} = 0b10000000010;
3873 let Inst{11-17} = 0;
3874 let Inst{18-24} = 0;
3875 let Inst{25-31} = 0;
3876}
3877
Scott Michel97872d32008-02-23 18:41:37 +00003878def LNOP : SPUInstr<(outs), (ins), "lnop", LoadNOP> {
Scott Michel8b6b4202007-12-04 22:35:58 +00003879 let Pattern = [];
3880
3881 let Inst{0-10} = 0b10000000000;
3882 let Inst{11-17} = 0;
3883 let Inst{18-24} = 0;
3884 let Inst{25-31} = 0;
3885}
3886
3887//===----------------------------------------------------------------------===//
3888// Bit conversions (type conversions between vector/packed types)
3889// NOTE: Promotions are handled using the XS* instructions. Truncation
3890// is not handled.
3891//===----------------------------------------------------------------------===//
3892def : Pat<(v16i8 (bitconvert (v8i16 VECREG:$src))), (v16i8 VECREG:$src)>;
3893def : Pat<(v16i8 (bitconvert (v4i32 VECREG:$src))), (v16i8 VECREG:$src)>;
3894def : Pat<(v16i8 (bitconvert (v2i64 VECREG:$src))), (v16i8 VECREG:$src)>;
3895def : Pat<(v16i8 (bitconvert (v4f32 VECREG:$src))), (v16i8 VECREG:$src)>;
3896def : Pat<(v16i8 (bitconvert (v2f64 VECREG:$src))), (v16i8 VECREG:$src)>;
3897
3898def : Pat<(v8i16 (bitconvert (v16i8 VECREG:$src))), (v8i16 VECREG:$src)>;
3899def : Pat<(v8i16 (bitconvert (v4i32 VECREG:$src))), (v8i16 VECREG:$src)>;
3900def : Pat<(v8i16 (bitconvert (v2i64 VECREG:$src))), (v8i16 VECREG:$src)>;
3901def : Pat<(v8i16 (bitconvert (v4f32 VECREG:$src))), (v8i16 VECREG:$src)>;
3902def : Pat<(v8i16 (bitconvert (v2f64 VECREG:$src))), (v8i16 VECREG:$src)>;
3903
3904def : Pat<(v4i32 (bitconvert (v16i8 VECREG:$src))), (v4i32 VECREG:$src)>;
3905def : Pat<(v4i32 (bitconvert (v8i16 VECREG:$src))), (v4i32 VECREG:$src)>;
3906def : Pat<(v4i32 (bitconvert (v2i64 VECREG:$src))), (v4i32 VECREG:$src)>;
3907def : Pat<(v4i32 (bitconvert (v4f32 VECREG:$src))), (v4i32 VECREG:$src)>;
3908def : Pat<(v4i32 (bitconvert (v2f64 VECREG:$src))), (v4i32 VECREG:$src)>;
3909
3910def : Pat<(v2i64 (bitconvert (v16i8 VECREG:$src))), (v2i64 VECREG:$src)>;
3911def : Pat<(v2i64 (bitconvert (v8i16 VECREG:$src))), (v2i64 VECREG:$src)>;
3912def : Pat<(v2i64 (bitconvert (v4i32 VECREG:$src))), (v2i64 VECREG:$src)>;
3913def : Pat<(v2i64 (bitconvert (v4f32 VECREG:$src))), (v2i64 VECREG:$src)>;
3914def : Pat<(v2i64 (bitconvert (v2f64 VECREG:$src))), (v2i64 VECREG:$src)>;
3915
3916def : Pat<(v4f32 (bitconvert (v16i8 VECREG:$src))), (v4f32 VECREG:$src)>;
3917def : Pat<(v4f32 (bitconvert (v8i16 VECREG:$src))), (v4f32 VECREG:$src)>;
3918def : Pat<(v4f32 (bitconvert (v2i64 VECREG:$src))), (v4f32 VECREG:$src)>;
3919def : Pat<(v4f32 (bitconvert (v4i32 VECREG:$src))), (v4f32 VECREG:$src)>;
3920def : Pat<(v4f32 (bitconvert (v2f64 VECREG:$src))), (v4f32 VECREG:$src)>;
3921
3922def : Pat<(v2f64 (bitconvert (v16i8 VECREG:$src))), (v2f64 VECREG:$src)>;
3923def : Pat<(v2f64 (bitconvert (v8i16 VECREG:$src))), (v2f64 VECREG:$src)>;
3924def : Pat<(v2f64 (bitconvert (v4i32 VECREG:$src))), (v2f64 VECREG:$src)>;
3925def : Pat<(v2f64 (bitconvert (v2i64 VECREG:$src))), (v2f64 VECREG:$src)>;
3926def : Pat<(v2f64 (bitconvert (v2f64 VECREG:$src))), (v2f64 VECREG:$src)>;
3927
3928def : Pat<(f32 (bitconvert (i32 R32C:$src))), (f32 R32FP:$src)>;
Scott Michel754d8662007-12-20 00:44:13 +00003929def : Pat<(f64 (bitconvert (i64 R64C:$src))), (f64 R64FP:$src)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003930
3931//===----------------------------------------------------------------------===//
3932// Instruction patterns:
3933//===----------------------------------------------------------------------===//
3934
3935// General 32-bit constants:
3936def : Pat<(i32 imm:$imm),
3937 (IOHLr32 (ILHUr32 (HI16 imm:$imm)), (LO16 imm:$imm))>;
3938
3939// Single precision float constants:
Nate Begeman78125042008-02-14 18:43:04 +00003940def : Pat<(f32 fpimm:$imm),
Scott Michel8b6b4202007-12-04 22:35:58 +00003941 (IOHLf32 (ILHUf32 (HI16_f32 fpimm:$imm)), (LO16_f32 fpimm:$imm))>;
3942
3943// General constant 32-bit vectors
3944def : Pat<(v4i32 v4i32Imm:$imm),
Scott Michel6baba072008-03-05 23:02:02 +00003945 (IOHLv4i32 (v4i32 (ILHUv4i32 (HI16_vec v4i32Imm:$imm))),
3946 (LO16_vec v4i32Imm:$imm))>;
Scott Michel438be252007-12-17 22:32:34 +00003947
3948// 8-bit constants
3949def : Pat<(i8 imm:$imm),
3950 (ILHr8 imm:$imm)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003951
3952//===----------------------------------------------------------------------===//
3953// Call instruction patterns:
3954//===----------------------------------------------------------------------===//
3955// Return void
3956def : Pat<(ret),
3957 (RET)>;
3958
3959//===----------------------------------------------------------------------===//
3960// Zero/Any/Sign extensions
3961//===----------------------------------------------------------------------===//
3962
Scott Michel8b6b4202007-12-04 22:35:58 +00003963// sext 8->32: Sign extend bytes to words
3964def : Pat<(sext_inreg R32C:$rSrc, i8),
3965 (XSHWr32 (XSBHr32 R32C:$rSrc))>;
3966
Scott Michel438be252007-12-17 22:32:34 +00003967def : Pat<(i32 (sext R8C:$rSrc)),
3968 (XSHWr16 (XSBHr8 R8C:$rSrc))>;
3969
Scott Michel438be252007-12-17 22:32:34 +00003970// zext 8->16: Zero extend bytes to halfwords
3971def : Pat<(i16 (zext R8C:$rSrc)),
Scott Michel97872d32008-02-23 18:41:37 +00003972 (ANDHIi8i16 R8C:$rSrc, 0xff)>;
Scott Michel438be252007-12-17 22:32:34 +00003973
Scott Michel438be252007-12-17 22:32:34 +00003974// zext 8->32: Zero extend bytes to words
3975def : Pat<(i32 (zext R8C:$rSrc)),
Scott Michel97872d32008-02-23 18:41:37 +00003976 (ANDIi8i32 R8C:$rSrc, 0xff)>;
Scott Michel438be252007-12-17 22:32:34 +00003977
3978// anyext 8->16: Extend 8->16 bits, irrespective of sign
3979def : Pat<(i16 (anyext R8C:$rSrc)),
Scott Michel97872d32008-02-23 18:41:37 +00003980 (ORHIi8i16 R8C:$rSrc, 0)>;
Scott Michel438be252007-12-17 22:32:34 +00003981
3982// anyext 8->32: Extend 8->32 bits, irrespective of sign
3983def : Pat<(i32 (anyext R8C:$rSrc)),
Scott Michel97872d32008-02-23 18:41:37 +00003984 (ORIi8i32 R8C:$rSrc, 0)>;
Scott Michel438be252007-12-17 22:32:34 +00003985
Scott Michel97872d32008-02-23 18:41:37 +00003986// zext 16->32: Zero extend halfwords to words
Scott Michel8b6b4202007-12-04 22:35:58 +00003987def : Pat<(i32 (zext R16C:$rSrc)),
Scott Michel97872d32008-02-23 18:41:37 +00003988 (ANDi16i32 R16C:$rSrc, (ILAr32 0xffff))>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003989
3990def : Pat<(i32 (zext (and R16C:$rSrc, 0xf))),
Scott Michel97872d32008-02-23 18:41:37 +00003991 (ANDIi16i32 R16C:$rSrc, 0xf)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003992
3993def : Pat<(i32 (zext (and R16C:$rSrc, 0xff))),
Scott Michel97872d32008-02-23 18:41:37 +00003994 (ANDIi16i32 R16C:$rSrc, 0xff)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003995
3996def : Pat<(i32 (zext (and R16C:$rSrc, 0xfff))),
Scott Michel97872d32008-02-23 18:41:37 +00003997 (ANDIi16i32 R16C:$rSrc, 0xfff)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00003998
3999// anyext 16->32: Extend 16->32 bits, irrespective of sign
4000def : Pat<(i32 (anyext R16C:$rSrc)),
Scott Michel97872d32008-02-23 18:41:37 +00004001 (ORIi16i32 R16C:$rSrc, 0)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00004002
4003//===----------------------------------------------------------------------===//
Scott Michelf9f42e62008-01-29 02:16:57 +00004004// Address generation: SPU, like PPC, has to split addresses into high and
Scott Michel8b6b4202007-12-04 22:35:58 +00004005// low parts in order to load them into a register.
4006//===----------------------------------------------------------------------===//
4007
Scott Michelf9f42e62008-01-29 02:16:57 +00004008def : Pat<(SPUaform tglobaladdr:$in, 0), (ILAlsa tglobaladdr:$in)>;
4009def : Pat<(SPUaform texternalsym:$in, 0), (ILAlsa texternalsym:$in)>;
4010def : Pat<(SPUaform tjumptable:$in, 0), (ILAlsa tjumptable:$in)>;
4011def : Pat<(SPUaform tconstpool:$in, 0), (ILAlsa tconstpool:$in)>;
4012
4013def : Pat<(SPUindirect (SPUhi tglobaladdr:$in, 0),
4014 (SPUlo tglobaladdr:$in, 0)),
Scott Micheldbac4cf2008-01-11 02:53:15 +00004015 (IOHLlo (ILHUhi tglobaladdr:$in), tglobaladdr:$in)>;
Scott Michel394e26d2008-01-17 20:38:41 +00004016
Scott Michelf9f42e62008-01-29 02:16:57 +00004017def : Pat<(SPUindirect (SPUhi texternalsym:$in, 0),
4018 (SPUlo texternalsym:$in, 0)),
4019 (IOHLlo (ILHUhi texternalsym:$in), texternalsym:$in)>;
4020
4021def : Pat<(SPUindirect (SPUhi tjumptable:$in, 0),
4022 (SPUlo tjumptable:$in, 0)),
Scott Micheldbac4cf2008-01-11 02:53:15 +00004023 (IOHLlo (ILHUhi tjumptable:$in), tjumptable:$in)>;
Scott Michel394e26d2008-01-17 20:38:41 +00004024
Scott Michelf9f42e62008-01-29 02:16:57 +00004025def : Pat<(SPUindirect (SPUhi tconstpool:$in, 0),
4026 (SPUlo tconstpool:$in, 0)),
4027 (IOHLlo (ILHUhi tconstpool:$in), tconstpool:$in)>;
4028
Scott Michelbc5fbc12008-04-30 00:30:08 +00004029def : Pat<(SPUindirect R32C:$sp, i32ImmSExt10:$imm),
4030 (AIr32 R32C:$sp, i32ImmSExt10:$imm)>;
4031
4032def : Pat<(SPUindirect R32C:$sp, imm:$imm),
4033 (Ar32 R32C:$sp,
4034 (IOHLr32 (ILHUr32 (HI16 imm:$imm)), (LO16 imm:$imm)))>;
4035
Scott Michelf9f42e62008-01-29 02:16:57 +00004036def : Pat<(add (SPUhi tglobaladdr:$in, 0), (SPUlo tglobaladdr:$in, 0)),
4037 (IOHLlo (ILHUhi tglobaladdr:$in), tglobaladdr:$in)>;
4038
4039def : Pat<(add (SPUhi texternalsym:$in, 0), (SPUlo texternalsym:$in, 0)),
4040 (IOHLlo (ILHUhi texternalsym:$in), texternalsym:$in)>;
4041
4042def : Pat<(add (SPUhi tjumptable:$in, 0), (SPUlo tjumptable:$in, 0)),
4043 (IOHLlo (ILHUhi tjumptable:$in), tjumptable:$in)>;
4044
4045def : Pat<(add (SPUhi tconstpool:$in, 0), (SPUlo tconstpool:$in, 0)),
4046 (IOHLlo (ILHUhi tconstpool:$in), tconstpool:$in)>;
Scott Michel8b6b4202007-12-04 22:35:58 +00004047
Scott Michel8b6b4202007-12-04 22:35:58 +00004048// Instrinsics:
4049include "CellSDKIntrinsics.td"