blob: 3c8b3c3442fe1591992a145b7225aa30907f5355 [file] [log] [blame]
Scott Michel564427e2007-12-05 01:24:05 +00001//===- SPUOperands.td - Cell SPU Instruction Operands ------*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Michel564427e2007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9// Cell SPU Instruction Operands:
10//===----------------------------------------------------------------------===//
11
Chris Lattner420c69d2010-03-15 05:53:47 +000012// TO_IMM32 - Convert an i8/i16 to i32.
13def TO_IMM32 : SDNodeXForm<imm, [{
14 return getI32Imm(N->getZExtValue());
15}]>;
16
17// TO_IMM16 - Convert an i8/i32 to i16.
18def TO_IMM16 : SDNodeXForm<imm, [{
19 return CurDAG->getTargetConstant(N->getZExtValue(), MVT::i16);
20}]>;
21
22
Scott Michel564427e2007-12-05 01:24:05 +000023def LO16 : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000024 unsigned val = N->getZExtValue();
Scott Michel564427e2007-12-05 01:24:05 +000025 // Transformation function: get the low 16 bits.
26 return getI32Imm(val & 0xffff);
27}]>;
28
29def LO16_vec : SDNodeXForm<scalar_to_vector, [{
Dan Gohman475871a2008-07-27 21:46:04 +000030 SDValue OpVal(0, 0);
Scott Michel564427e2007-12-05 01:24:05 +000031
32 // Transformation function: get the low 16 bit immediate from a build_vector
33 // node.
34 assert(N->getOpcode() == ISD::BUILD_VECTOR
35 && "LO16_vec got something other than a BUILD_VECTOR");
36
37 // Get first constant operand...
Gabor Greif93c53e52008-08-31 15:37:04 +000038 for (unsigned i = 0, e = N->getNumOperands();
39 OpVal.getNode() == 0 && i != e; ++i) {
Scott Michel564427e2007-12-05 01:24:05 +000040 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greifba36cb52008-08-28 21:40:38 +000041 if (OpVal.getNode() == 0)
Scott Michel564427e2007-12-05 01:24:05 +000042 OpVal = N->getOperand(i);
43 }
44
Gabor Greifba36cb52008-08-28 21:40:38 +000045 assert(OpVal.getNode() != 0 && "LO16_vec did not locate a <defined> node");
Dan Gohmand8ed2a72008-08-20 14:50:24 +000046 ConstantSDNode *CN = cast<ConstantSDNode>(OpVal);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000047 return getI32Imm((unsigned)CN->getZExtValue() & 0xffff);
Scott Michel564427e2007-12-05 01:24:05 +000048}]>;
49
50// Transform an immediate, returning the high 16 bits shifted down:
51def HI16 : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000052 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Scott Michel564427e2007-12-05 01:24:05 +000053}]>;
54
55// Transformation function: shift the high 16 bit immediate from a build_vector
56// node into the low 16 bits, and return a 16-bit constant.
57def HI16_vec : SDNodeXForm<scalar_to_vector, [{
Dan Gohman475871a2008-07-27 21:46:04 +000058 SDValue OpVal(0, 0);
Scott Michel564427e2007-12-05 01:24:05 +000059
60 assert(N->getOpcode() == ISD::BUILD_VECTOR
61 && "HI16_vec got something other than a BUILD_VECTOR");
62
63 // Get first constant operand...
Gabor Greif93c53e52008-08-31 15:37:04 +000064 for (unsigned i = 0, e = N->getNumOperands();
65 OpVal.getNode() == 0 && i != e; ++i) {
Scott Michel564427e2007-12-05 01:24:05 +000066 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greifba36cb52008-08-28 21:40:38 +000067 if (OpVal.getNode() == 0)
Scott Michel564427e2007-12-05 01:24:05 +000068 OpVal = N->getOperand(i);
69 }
70
Gabor Greifba36cb52008-08-28 21:40:38 +000071 assert(OpVal.getNode() != 0 && "HI16_vec did not locate a <defined> node");
Dan Gohmand8ed2a72008-08-20 14:50:24 +000072 ConstantSDNode *CN = cast<ConstantSDNode>(OpVal);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000073 return getI32Imm((unsigned)CN->getZExtValue() >> 16);
Scott Michel564427e2007-12-05 01:24:05 +000074}]>;
75
76// simm7 predicate - True if the immediate fits in an 7-bit signed
77// field.
78def simm7: PatLeaf<(imm), [{
Dan Gohman7810bfe2008-09-26 21:54:37 +000079 int sextVal = int(N->getSExtValue());
Scott Michel564427e2007-12-05 01:24:05 +000080 return (sextVal >= -64 && sextVal <= 63);
81}]>;
82
83// uimm7 predicate - True if the immediate fits in an 7-bit unsigned
84// field.
85def uimm7: PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000086 return (N->getZExtValue() <= 0x7f);
Scott Michel564427e2007-12-05 01:24:05 +000087}]>;
88
89// immSExt8 predicate - True if the immediate fits in an 8-bit sign extended
90// field.
91def immSExt8 : PatLeaf<(imm), [{
Dan Gohman7810bfe2008-09-26 21:54:37 +000092 int Value = int(N->getSExtValue());
Scott Michel79698f62008-03-20 00:51:36 +000093 return (Value >= -(1 << 8) && Value <= (1 << 8) - 1);
Scott Michel564427e2007-12-05 01:24:05 +000094}]>;
95
96// immU8: immediate, unsigned 8-bit quantity
97def immU8 : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000098 return (N->getZExtValue() <= 0xff);
Scott Michel564427e2007-12-05 01:24:05 +000099}]>;
100
Scott Michel564427e2007-12-05 01:24:05 +0000101// i32ImmSExt10 predicate - True if the i32 immediate fits in a 10-bit sign
102// extended field. Used by RI10Form instructions like 'ldq'.
103def i32ImmSExt10 : PatLeaf<(imm), [{
104 return isI32IntS10Immediate(N);
105}]>;
106
Scott Michel504c3692007-12-17 22:32:34 +0000107// i32ImmUns10 predicate - True if the i32 immediate fits in a 10-bit unsigned
108// field. Used by RI10Form instructions like 'ldq'.
109def i32ImmUns10 : PatLeaf<(imm), [{
110 return isI32IntU10Immediate(N);
111}]>;
112
Scott Michelec2a08f2007-12-15 00:38:50 +0000113// i16ImmSExt10 predicate - True if the i16 immediate fits in a 10-bit sign
Scott Michel564427e2007-12-05 01:24:05 +0000114// extended field. Used by RI10Form instructions like 'ldq'.
115def i16ImmSExt10 : PatLeaf<(imm), [{
116 return isI16IntS10Immediate(N);
117}]>;
118
Scott Michel504c3692007-12-17 22:32:34 +0000119// i16ImmUns10 predicate - True if the i16 immediate fits into a 10-bit unsigned
Scott Michelec2a08f2007-12-15 00:38:50 +0000120// value. Used by RI10Form instructions.
Scott Michel504c3692007-12-17 22:32:34 +0000121def i16ImmUns10 : PatLeaf<(imm), [{
Scott Michelec2a08f2007-12-15 00:38:50 +0000122 return isI16IntU10Immediate(N);
123}]>;
124
Scott Michel564427e2007-12-05 01:24:05 +0000125def immSExt16 : PatLeaf<(imm), [{
126 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
127 // field.
128 short Ignored;
129 return isIntS16Immediate(N, Ignored);
130}]>;
131
132def immZExt16 : PatLeaf<(imm), [{
133 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
134 // field.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000135 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Scott Michel564427e2007-12-05 01:24:05 +0000136}], LO16>;
137
138def immU16 : PatLeaf<(imm), [{
139 // immU16 predicate- True if the immediate fits into a 16-bit unsigned field.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000140 return (uint64_t)N->getZExtValue() == (N->getZExtValue() & 0xffff);
Scott Michel564427e2007-12-05 01:24:05 +0000141}]>;
142
143def imm18 : PatLeaf<(imm), [{
144 // imm18 predicate: True if the immediate fits into an 18-bit unsigned field.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000145 int Value = (int) N->getZExtValue();
Scott Michel564427e2007-12-05 01:24:05 +0000146 return ((Value & ((1 << 19) - 1)) == Value);
147}]>;
148
Scott Michel9de5d0d2008-01-11 02:53:15 +0000149def lo16 : PatLeaf<(imm), [{
Scott Michelad2715e2008-03-05 23:02:02 +0000150 // lo16 predicate - returns true if the immediate has all zeros in the
Scott Michel9de5d0d2008-01-11 02:53:15 +0000151 // low order bits and is a 32-bit constant:
Owen Anderson825b72b2009-08-11 20:47:22 +0000152 if (N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000153 uint32_t val = N->getZExtValue();
Scott Michel9de5d0d2008-01-11 02:53:15 +0000154 return ((val & 0x0000ffff) == val);
155 }
156
157 return false;
158}], LO16>;
159
Scott Michel564427e2007-12-05 01:24:05 +0000160def hi16 : PatLeaf<(imm), [{
161 // hi16 predicate - returns true if the immediate has all zeros in the
162 // low order bits and is a 32-bit constant:
Owen Anderson825b72b2009-08-11 20:47:22 +0000163 if (N->getValueType(0) == MVT::i32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000164 uint32_t val = uint32_t(N->getZExtValue());
Scott Michel564427e2007-12-05 01:24:05 +0000165 return ((val & 0xffff0000) == val);
Owen Anderson825b72b2009-08-11 20:47:22 +0000166 } else if (N->getValueType(0) == MVT::i64) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000167 uint64_t val = N->getZExtValue();
Scott Michelad2715e2008-03-05 23:02:02 +0000168 return ((val & 0xffff0000ULL) == val);
Scott Michel564427e2007-12-05 01:24:05 +0000169 }
170
171 return false;
172}], HI16>;
173
Scott Michela59d4692008-02-23 18:41:37 +0000174def bitshift : PatLeaf<(imm), [{
175 // bitshift predicate - returns true if 0 < imm <= 7 for SHLQBII
176 // (shift left quadword by bits immediate)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000177 int64_t Val = N->getZExtValue();
Scott Michela59d4692008-02-23 18:41:37 +0000178 return (Val > 0 && Val <= 7);
179}]>;
180
Scott Michel564427e2007-12-05 01:24:05 +0000181//===----------------------------------------------------------------------===//
182// Floating point operands:
183//===----------------------------------------------------------------------===//
184
185// Transform a float, returning the high 16 bits shifted down, as if
186// the float was really an unsigned integer:
187def HI16_f32 : SDNodeXForm<fpimm, [{
Chris Lattner10d724a2007-12-16 20:41:33 +0000188 float fval = N->getValueAPF().convertToFloat();
189 return getI32Imm(FloatToBits(fval) >> 16);
Scott Michel564427e2007-12-05 01:24:05 +0000190}]>;
191
192// Transformation function on floats: get the low 16 bits as if the float was
193// an unsigned integer.
194def LO16_f32 : SDNodeXForm<fpimm, [{
Chris Lattner10d724a2007-12-16 20:41:33 +0000195 float fval = N->getValueAPF().convertToFloat();
196 return getI32Imm(FloatToBits(fval) & 0xffff);
Scott Michel564427e2007-12-05 01:24:05 +0000197}]>;
198
199def FPimm_sext16 : SDNodeXForm<fpimm, [{
Chris Lattner10d724a2007-12-16 20:41:33 +0000200 float fval = N->getValueAPF().convertToFloat();
201 return getI32Imm((int) ((FloatToBits(fval) << 16) >> 16));
Scott Michel564427e2007-12-05 01:24:05 +0000202}]>;
203
204def FPimm_u18 : SDNodeXForm<fpimm, [{
Chris Lattner10d724a2007-12-16 20:41:33 +0000205 float fval = N->getValueAPF().convertToFloat();
206 return getI32Imm(FloatToBits(fval) & ((1 << 19) - 1));
Scott Michel564427e2007-12-05 01:24:05 +0000207}]>;
208
209def fpimmSExt16 : PatLeaf<(fpimm), [{
210 short Ignored;
211 return isFPS16Immediate(N, Ignored);
212}], FPimm_sext16>;
213
214// Does the SFP constant only have upp 16 bits set?
215def hi16_f32 : PatLeaf<(fpimm), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000216 if (N->getValueType(0) == MVT::f32) {
Chris Lattner10d724a2007-12-16 20:41:33 +0000217 uint32_t val = FloatToBits(N->getValueAPF().convertToFloat());
Scott Michel564427e2007-12-05 01:24:05 +0000218 return ((val & 0xffff0000) == val);
219 }
220
221 return false;
222}], HI16_f32>;
223
224// Does the SFP constant fit into 18 bits?
225def fpimm18 : PatLeaf<(fpimm), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 if (N->getValueType(0) == MVT::f32) {
Chris Lattner10d724a2007-12-16 20:41:33 +0000227 uint32_t Value = FloatToBits(N->getValueAPF().convertToFloat());
Scott Michel564427e2007-12-05 01:24:05 +0000228 return ((Value & ((1 << 19) - 1)) == Value);
229 }
230
231 return false;
232}], FPimm_u18>;
233
234//===----------------------------------------------------------------------===//
Scott Michelec2a08f2007-12-15 00:38:50 +0000235// 64-bit operands (TODO):
Scott Michel564427e2007-12-05 01:24:05 +0000236//===----------------------------------------------------------------------===//
237
238//===----------------------------------------------------------------------===//
239// build_vector operands:
240//===----------------------------------------------------------------------===//
241
242// v16i8SExt8Imm_xform function: convert build_vector to 8-bit sign extended
243// immediate constant load for v16i8 vectors. N.B.: The incoming constant has
244// to be a 16-bit quantity with the upper and lower bytes equal (e.g., 0x2a2a).
245def v16i8SExt8Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 return SPU::get_vec_i8imm(N, *CurDAG, MVT::i8);
Scott Michel564427e2007-12-05 01:24:05 +0000247}]>;
248
249// v16i8SExt8Imm: Predicate test for 8-bit sign extended immediate constant
250// load, works in conjunction with its transform function. N.B.: This relies the
251// incoming constant being a 16-bit quantity, where the upper and lower bytes
252// are EXACTLY the same (e.g., 0x2a2a)
253def v16i8SExt8Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 return SPU::get_vec_i8imm(N, *CurDAG, MVT::i8).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000255}], v16i8SExt8Imm_xform>;
256
257// v16i8U8Imm_xform function: convert build_vector to unsigned 8-bit
258// immediate constant load for v16i8 vectors. N.B.: The incoming constant has
259// to be a 16-bit quantity with the upper and lower bytes equal (e.g., 0x2a2a).
260def v16i8U8Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 return SPU::get_vec_i8imm(N, *CurDAG, MVT::i8);
Scott Michel564427e2007-12-05 01:24:05 +0000262}]>;
263
264// v16i8U8Imm: Predicate test for unsigned 8-bit immediate constant
265// load, works in conjunction with its transform function. N.B.: This relies the
266// incoming constant being a 16-bit quantity, where the upper and lower bytes
267// are EXACTLY the same (e.g., 0x2a2a)
268def v16i8U8Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000269 return SPU::get_vec_i8imm(N, *CurDAG, MVT::i8).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000270}], v16i8U8Imm_xform>;
271
272// v8i16SExt8Imm_xform function: convert build_vector to 8-bit sign extended
273// immediate constant load for v8i16 vectors.
274def v8i16SExt8Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000275 return SPU::get_vec_i8imm(N, *CurDAG, MVT::i16);
Scott Michel564427e2007-12-05 01:24:05 +0000276}]>;
277
278// v8i16SExt8Imm: Predicate test for 8-bit sign extended immediate constant
279// load, works in conjunction with its transform function.
280def v8i16SExt8Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000281 return SPU::get_vec_i8imm(N, *CurDAG, MVT::i16).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000282}], v8i16SExt8Imm_xform>;
283
284// v8i16SExt10Imm_xform function: convert build_vector to 16-bit sign extended
285// immediate constant load for v8i16 vectors.
286def v8i16SExt10Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000287 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i16);
Scott Michel564427e2007-12-05 01:24:05 +0000288}]>;
289
290// v8i16SExt10Imm: Predicate test for 16-bit sign extended immediate constant
291// load, works in conjunction with its transform function.
292def v8i16SExt10Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i16).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000294}], v8i16SExt10Imm_xform>;
295
Scott Michel504c3692007-12-17 22:32:34 +0000296// v8i16Uns10Imm_xform function: convert build_vector to 16-bit unsigned
297// immediate constant load for v8i16 vectors.
298def v8i16Uns10Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i16);
Scott Michel504c3692007-12-17 22:32:34 +0000300}]>;
301
302// v8i16Uns10Imm: Predicate test for 16-bit unsigned immediate constant
303// load, works in conjunction with its transform function.
304def v8i16Uns10Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000305 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i16).getNode() != 0;
Scott Michel504c3692007-12-17 22:32:34 +0000306}], v8i16Uns10Imm_xform>;
307
Scott Michel564427e2007-12-05 01:24:05 +0000308// v8i16SExt16Imm_xform function: convert build_vector to 16-bit sign extended
309// immediate constant load for v8i16 vectors.
Scott Michel504c3692007-12-17 22:32:34 +0000310def v8i16Uns16Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000311 return SPU::get_vec_i16imm(N, *CurDAG, MVT::i16);
Scott Michel564427e2007-12-05 01:24:05 +0000312}]>;
313
314// v8i16SExt16Imm: Predicate test for 16-bit sign extended immediate constant
315// load, works in conjunction with its transform function.
316def v8i16SExt16Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 return SPU::get_vec_i16imm(N, *CurDAG, MVT::i16).getNode() != 0;
Scott Michel504c3692007-12-17 22:32:34 +0000318}], v8i16Uns16Imm_xform>;
Scott Michel564427e2007-12-05 01:24:05 +0000319
320// v4i32SExt10Imm_xform function: convert build_vector to 10-bit sign extended
321// immediate constant load for v4i32 vectors.
322def v4i32SExt10Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i32);
Scott Michel564427e2007-12-05 01:24:05 +0000324}]>;
325
326// v4i32SExt10Imm: Predicate test for 10-bit sign extended immediate constant
327// load, works in conjunction with its transform function.
328def v4i32SExt10Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000329 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i32).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000330}], v4i32SExt10Imm_xform>;
331
Scott Michel504c3692007-12-17 22:32:34 +0000332// v4i32Uns10Imm_xform function: convert build_vector to 10-bit unsigned
333// immediate constant load for v4i32 vectors.
334def v4i32Uns10Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i32);
Scott Michel504c3692007-12-17 22:32:34 +0000336}]>;
337
338// v4i32Uns10Imm: Predicate test for 10-bit unsigned immediate constant
339// load, works in conjunction with its transform function.
340def v4i32Uns10Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000341 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i32).getNode() != 0;
Scott Michel504c3692007-12-17 22:32:34 +0000342}], v4i32Uns10Imm_xform>;
343
Scott Michel564427e2007-12-05 01:24:05 +0000344// v4i32SExt16Imm_xform function: convert build_vector to 16-bit sign extended
345// immediate constant load for v4i32 vectors.
346def v4i32SExt16Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000347 return SPU::get_vec_i16imm(N, *CurDAG, MVT::i32);
Scott Michel564427e2007-12-05 01:24:05 +0000348}]>;
349
350// v4i32SExt16Imm: Predicate test for 16-bit sign extended immediate constant
351// load, works in conjunction with its transform function.
352def v4i32SExt16Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000353 return SPU::get_vec_i16imm(N, *CurDAG, MVT::i32).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000354}], v4i32SExt16Imm_xform>;
355
356// v4i32Uns18Imm_xform function: convert build_vector to 18-bit unsigned
357// immediate constant load for v4i32 vectors.
358def v4i32Uns18Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000359 return SPU::get_vec_u18imm(N, *CurDAG, MVT::i32);
Scott Michel564427e2007-12-05 01:24:05 +0000360}]>;
361
362// v4i32Uns18Imm: Predicate test for 18-bit unsigned immediate constant load,
363// works in conjunction with its transform function.
364def v4i32Uns18Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000365 return SPU::get_vec_u18imm(N, *CurDAG, MVT::i32).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000366}], v4i32Uns18Imm_xform>;
367
368// ILHUvec_get_imm xform function: convert build_vector to ILHUvec imm constant
369// load.
370def ILHUvec_get_imm: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000371 return SPU::get_ILHUvec_imm(N, *CurDAG, MVT::i32);
Scott Michel564427e2007-12-05 01:24:05 +0000372}]>;
373
374/// immILHUvec: Predicate test for a ILHU constant vector.
375def immILHUvec: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000376 return SPU::get_ILHUvec_imm(N, *CurDAG, MVT::i32).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000377}], ILHUvec_get_imm>;
378
379// Catch-all for any other i32 vector constants
380def v4i32_get_imm: SDNodeXForm<build_vector, [{
381 return SPU::get_v4i32_imm(N, *CurDAG);
382}]>;
383
384def v4i32Imm: PatLeaf<(build_vector), [{
Gabor Greifba36cb52008-08-28 21:40:38 +0000385 return SPU::get_v4i32_imm(N, *CurDAG).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000386}], v4i32_get_imm>;
387
388// v2i64SExt10Imm_xform function: convert build_vector to 10-bit sign extended
389// immediate constant load for v2i64 vectors.
390def v2i64SExt10Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000391 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i64);
Scott Michel564427e2007-12-05 01:24:05 +0000392}]>;
393
394// v2i64SExt10Imm: Predicate test for 10-bit sign extended immediate constant
395// load, works in conjunction with its transform function.
396def v2i64SExt10Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000397 return SPU::get_vec_i10imm(N, *CurDAG, MVT::i64).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000398}], v2i64SExt10Imm_xform>;
399
400// v2i64SExt16Imm_xform function: convert build_vector to 16-bit sign extended
401// immediate constant load for v2i64 vectors.
402def v2i64SExt16Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000403 return SPU::get_vec_i16imm(N, *CurDAG, MVT::i64);
Scott Michel564427e2007-12-05 01:24:05 +0000404}]>;
405
406// v2i64SExt16Imm: Predicate test for 16-bit sign extended immediate constant
407// load, works in conjunction with its transform function.
408def v2i64SExt16Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000409 return SPU::get_vec_i16imm(N, *CurDAG, MVT::i64).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000410}], v2i64SExt16Imm_xform>;
411
412// v2i64Uns18Imm_xform function: convert build_vector to 18-bit unsigned
413// immediate constant load for v2i64 vectors.
414def v2i64Uns18Imm_xform: SDNodeXForm<build_vector, [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000415 return SPU::get_vec_u18imm(N, *CurDAG, MVT::i64);
Scott Michel564427e2007-12-05 01:24:05 +0000416}]>;
417
418// v2i64Uns18Imm: Predicate test for 18-bit unsigned immediate constant load,
419// works in conjunction with its transform function.
420def v2i64Uns18Imm: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 return SPU::get_vec_u18imm(N, *CurDAG, MVT::i64).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000422}], v2i64Uns18Imm_xform>;
423
424/// immILHUvec: Predicate test for a ILHU constant vector.
425def immILHUvec_i64: PatLeaf<(build_vector), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000426 return SPU::get_ILHUvec_imm(N, *CurDAG, MVT::i64).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000427}], ILHUvec_get_imm>;
428
429// Catch-all for any other i32 vector constants
430def v2i64_get_imm: SDNodeXForm<build_vector, [{
431 return SPU::get_v2i64_imm(N, *CurDAG);
432}]>;
433
434def v2i64Imm: PatLeaf<(build_vector), [{
Gabor Greifba36cb52008-08-28 21:40:38 +0000435 return SPU::get_v2i64_imm(N, *CurDAG).getNode() != 0;
Scott Michel564427e2007-12-05 01:24:05 +0000436}], v2i64_get_imm>;
437
438//===----------------------------------------------------------------------===//
439// Operand Definitions.
440
Scott Michel9de5d0d2008-01-11 02:53:15 +0000441def s7imm: Operand<i8> {
442 let PrintMethod = "printS7ImmOperand";
443}
444
445def s7imm_i8: Operand<i8> {
Scott Michel564427e2007-12-05 01:24:05 +0000446 let PrintMethod = "printS7ImmOperand";
447}
448
449def u7imm: Operand<i16> {
450 let PrintMethod = "printU7ImmOperand";
451}
452
Scott Michel504c3692007-12-17 22:32:34 +0000453def u7imm_i8: Operand<i8> {
454 let PrintMethod = "printU7ImmOperand";
455}
456
Scott Michel564427e2007-12-05 01:24:05 +0000457def u7imm_i32: Operand<i32> {
458 let PrintMethod = "printU7ImmOperand";
459}
460
461// Halfword, signed 10-bit constant
462def s10imm : Operand<i16> {
463 let PrintMethod = "printS10ImmOperand";
464}
465
Scott Michela59d4692008-02-23 18:41:37 +0000466def s10imm_i8: Operand<i8> {
467 let PrintMethod = "printS10ImmOperand";
468}
469
Scott Michel564427e2007-12-05 01:24:05 +0000470def s10imm_i32: Operand<i32> {
471 let PrintMethod = "printS10ImmOperand";
472}
473
474def s10imm_i64: Operand<i64> {
475 let PrintMethod = "printS10ImmOperand";
476}
477
478// Unsigned 10-bit integers:
479def u10imm: Operand<i16> {
480 let PrintMethod = "printU10ImmOperand";
481}
482
Scott Michel504c3692007-12-17 22:32:34 +0000483def u10imm_i8: Operand<i8> {
484 let PrintMethod = "printU10ImmOperand";
485}
486
Scott Michel564427e2007-12-05 01:24:05 +0000487def u10imm_i32: Operand<i32> {
488 let PrintMethod = "printU10ImmOperand";
489}
490
491def s16imm : Operand<i16> {
492 let PrintMethod = "printS16ImmOperand";
493}
494
Scott Michel504c3692007-12-17 22:32:34 +0000495def s16imm_i8: Operand<i8> {
496 let PrintMethod = "printS16ImmOperand";
497}
498
Scott Michel564427e2007-12-05 01:24:05 +0000499def s16imm_i32: Operand<i32> {
500 let PrintMethod = "printS16ImmOperand";
501}
502
503def s16imm_i64: Operand<i64> {
504 let PrintMethod = "printS16ImmOperand";
505}
506
507def s16imm_f32: Operand<f32> {
508 let PrintMethod = "printS16ImmOperand";
509}
510
511def s16imm_f64: Operand<f64> {
512 let PrintMethod = "printS16ImmOperand";
513}
514
Scott Michelad2715e2008-03-05 23:02:02 +0000515def u16imm_i64 : Operand<i64> {
516 let PrintMethod = "printU16ImmOperand";
517}
518
Scott Michel203b2d62008-04-30 00:30:08 +0000519def u16imm_i32 : Operand<i32> {
520 let PrintMethod = "printU16ImmOperand";
521}
522
523def u16imm : Operand<i16> {
Scott Michel564427e2007-12-05 01:24:05 +0000524 let PrintMethod = "printU16ImmOperand";
525}
526
527def f16imm : Operand<f32> {
528 let PrintMethod = "printU16ImmOperand";
529}
530
531def s18imm : Operand<i32> {
532 let PrintMethod = "printS18ImmOperand";
533}
534
535def u18imm : Operand<i32> {
536 let PrintMethod = "printU18ImmOperand";
537}
538
539def u18imm_i64 : Operand<i64> {
540 let PrintMethod = "printU18ImmOperand";
541}
542
543def f18imm : Operand<f32> {
544 let PrintMethod = "printU18ImmOperand";
545}
546
547def f18imm_f64 : Operand<f64> {
548 let PrintMethod = "printU18ImmOperand";
549}
550
551// Negated 7-bit halfword rotate immediate operands
552def rothNeg7imm : Operand<i32> {
553 let PrintMethod = "printROTHNeg7Imm";
554}
555
556def rothNeg7imm_i16 : Operand<i16> {
557 let PrintMethod = "printROTHNeg7Imm";
558}
559
560// Negated 7-bit word rotate immediate operands
561def rotNeg7imm : Operand<i32> {
562 let PrintMethod = "printROTNeg7Imm";
563}
564
565def rotNeg7imm_i16 : Operand<i16> {
566 let PrintMethod = "printROTNeg7Imm";
567}
568
Scott Michel8bf61e82008-06-02 22:18:03 +0000569def rotNeg7imm_i8 : Operand<i8> {
570 let PrintMethod = "printROTNeg7Imm";
571}
572
Scott Michel564427e2007-12-05 01:24:05 +0000573def target : Operand<OtherVT> {
574 let PrintMethod = "printBranchOperand";
575}
576
577// Absolute address call target
578def calltarget : Operand<iPTR> {
579 let PrintMethod = "printCallOperand";
580 let MIOperandInfo = (ops u18imm:$calldest);
581}
582
Scott Michelaedc6372008-12-10 00:15:19 +0000583// PC relative call target
Scott Michel564427e2007-12-05 01:24:05 +0000584def relcalltarget : Operand<iPTR> {
585 let PrintMethod = "printPCRelativeOperand";
586 let MIOperandInfo = (ops s16imm:$calldest);
587}
588
589// Branch targets:
590def brtarget : Operand<OtherVT> {
591 let PrintMethod = "printPCRelativeOperand";
592}
593
Scott Michelaedc6372008-12-10 00:15:19 +0000594// Hint for branch target
595def hbrtarget : Operand<OtherVT> {
596 let PrintMethod = "printHBROperand";
597}
598
Scott Michel564427e2007-12-05 01:24:05 +0000599// Indirect call target
600def indcalltarget : Operand<iPTR> {
601 let PrintMethod = "printCallOperand";
602 let MIOperandInfo = (ops ptr_rc:$calldest);
603}
604
605def symbolHi: Operand<i32> {
606 let PrintMethod = "printSymbolHi";
607}
608
609def symbolLo: Operand<i32> {
610 let PrintMethod = "printSymbolLo";
611}
612
613def symbolLSA: Operand<i32> {
614 let PrintMethod = "printSymbolLSA";
615}
616
Scott Michelf0569be2008-12-27 04:51:36 +0000617// Shuffle address memory operaand [s7imm(reg) d-format]
618def shufaddr : Operand<iPTR> {
619 let PrintMethod = "printShufAddr";
Scott Michel564427e2007-12-05 01:24:05 +0000620 let MIOperandInfo = (ops s7imm:$imm, ptr_rc:$reg);
621}
622
623// memory s10imm(reg) operand
Scott Michelf0569be2008-12-27 04:51:36 +0000624def dformaddr : Operand<iPTR> {
625 let PrintMethod = "printDFormAddr";
Scott Michel564427e2007-12-05 01:24:05 +0000626 let MIOperandInfo = (ops s10imm:$imm, ptr_rc:$reg);
627}
628
629// 256K local store address
630// N.B.: The tblgen code generator expects to have two operands, an offset
631// and a pointer. Of these, only the immediate is actually used.
632def addr256k : Operand<iPTR> {
633 let PrintMethod = "printAddr256K";
634 let MIOperandInfo = (ops s16imm:$imm, ptr_rc:$reg);
635}
636
637// memory s18imm(reg) operand
638def memri18 : Operand<iPTR> {
639 let PrintMethod = "printMemRegImmS18";
640 let MIOperandInfo = (ops s18imm:$imm, ptr_rc:$reg);
641}
642
643// memory register + register operand
644def memrr : Operand<iPTR> {
645 let PrintMethod = "printMemRegReg";
646 let MIOperandInfo = (ops ptr_rc:$reg_a, ptr_rc:$reg_b);
647}
648
649// Define SPU-specific addressing modes: These come in three basic
650// flavors:
651//
652// D-form : [r+I10] (10-bit signed offset + reg)
653// X-form : [r+r] (reg+reg)
654// A-form : abs (256K LSA offset)
655// D-form(2): [r+I7] (7-bit signed offset + reg)
656
Chris Lattner52a261b2010-09-21 20:31:19 +0000657def dform_addr : ComplexPattern<iPTR, 2, "SelectDFormAddr",
658 [], [SDNPWantRoot]>;
659def xform_addr : ComplexPattern<iPTR, 2, "SelectXFormAddr",
660 [], [SDNPWantRoot]>;
661def aform_addr : ComplexPattern<iPTR, 2, "SelectAFormAddr",
662 [], [SDNPWantRoot]>;
663def dform2_addr : ComplexPattern<iPTR, 2, "SelectDForm2Addr",
664 [], [SDNPWantRoot]>;