blob: 66d9c5fceba52606cec731a460b01407f10d1064 [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//===-- SystemZOperands.td - SystemZ instruction operands ----*- tblgen-*--===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10//===----------------------------------------------------------------------===//
11// Class definitions
12//===----------------------------------------------------------------------===//
13
14class ImmediateAsmOperand<string name>
15 : AsmOperandClass {
16 let Name = name;
17 let RenderMethod = "addImmOperands";
18}
19
20// Constructs both a DAG pattern and instruction operand for an immediate
21// of type VT. PRED returns true if a node is acceptable and XFORM returns
22// the operand value associated with the node. ASMOP is the name of the
23// associated asm operand, and also forms the basis of the asm print method.
24class Immediate<ValueType vt, code pred, SDNodeXForm xform, string asmop>
25 : PatLeaf<(vt imm), pred, xform>, Operand<vt> {
26 let PrintMethod = "print"##asmop##"Operand";
Richard Sandifordeb9af292013-05-14 10:17:52 +000027 let DecoderMethod = "decode"##asmop##"Operand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +000028 let ParserMatchClass = !cast<AsmOperandClass>(asmop);
29}
30
Richard Sandiford1fb58832013-05-14 09:47:26 +000031// Constructs an asm operand for a PC-relative address. SIZE says how
32// many bits there are.
33class PCRelAsmOperand<string size> : ImmediateAsmOperand<"PCRel"##size> {
34 let PredicateMethod = "isImm";
35 let ParserMethod = "parsePCRel"##size;
36}
37
38// Constructs an operand for a PC-relative address with address type VT.
39// ASMOP is the associated asm operand.
40class PCRelOperand<ValueType vt, AsmOperandClass asmop> : Operand<vt> {
Richard Sandifordeb9af292013-05-14 10:17:52 +000041 let PrintMethod = "printPCRelOperand";
Richard Sandiford1fb58832013-05-14 09:47:26 +000042 let ParserMatchClass = asmop;
43}
44
Ulrich Weigand5f613df2013-05-06 16:15:19 +000045// Constructs both a DAG pattern and instruction operand for a PC-relative
Richard Sandiford1fb58832013-05-14 09:47:26 +000046// address with address size VT. SELF is the name of the operand and
47// ASMOP is the associated asm operand.
48class PCRelAddress<ValueType vt, string self, AsmOperandClass asmop>
Ulrich Weigand5f613df2013-05-06 16:15:19 +000049 : ComplexPattern<vt, 1, "selectPCRelAddress", [z_pcrel_wrapper]>,
Richard Sandiford1fb58832013-05-14 09:47:26 +000050 PCRelOperand<vt, asmop> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000051 let MIOperandInfo = (ops !cast<Operand>(self));
52}
53
54// Constructs an AsmOperandClass for addressing mode FORMAT, treating the
55// registers as having BITSIZE bits and displacements as having DISPSIZE bits.
56class AddressAsmOperand<string format, string bitsize, string dispsize>
57 : AsmOperandClass {
58 let Name = format##bitsize##"Disp"##dispsize;
59 let ParserMethod = "parse"##format##bitsize;
60 let RenderMethod = "add"##format##"Operands";
61}
62
63// Constructs both a DAG pattern and instruction operand for an addressing mode.
Richard Sandifordeb9af292013-05-14 10:17:52 +000064// The mode is selected by custom code in select<TYPE><DISPSIZE><SUFFIX>(),
65// encoded by custom code in get<FORMAT><DISPSIZE>Encoding() and decoded
66// by custom code in decode<TYPE><BITSIZE>Disp<DISPSIZE>Operand().
Richard Sandifordd454ec02013-05-14 09:28:21 +000067// The address registers have BITSIZE bits and displacements have
68// DISPSIZE bits. NUMOPS is the number of operands that make up an
69// address and OPERANDS lists the types of those operands using (ops ...).
70// FORMAT is the type of addressing mode, which needs to match the names
71// used in AddressAsmOperand.
Ulrich Weigand5f613df2013-05-06 16:15:19 +000072class AddressingMode<string type, string bitsize, string dispsize,
73 string suffix, int numops, string format, dag operands>
74 : ComplexPattern<!cast<ValueType>("i"##bitsize), numops,
75 "select"##type##dispsize##suffix,
76 [add, sub, or, frameindex, z_adjdynalloc]>,
77 Operand<!cast<ValueType>("i"##bitsize)> {
78 let PrintMethod = "print"##format##"Operand";
Richard Sandifordd454ec02013-05-14 09:28:21 +000079 let EncoderMethod = "get"##format##dispsize##"Encoding";
Richard Sandifordeb9af292013-05-14 10:17:52 +000080 let DecoderMethod = "decode"##format##bitsize##"Disp"##dispsize##"Operand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +000081 let MIOperandInfo = operands;
82 let ParserMatchClass =
83 !cast<AddressAsmOperand>(format##bitsize##"Disp"##dispsize);
84}
85
86// An addressing mode with a base and displacement but no index.
87class BDMode<string type, string bitsize, string dispsize, string suffix>
88 : AddressingMode<type, bitsize, dispsize, suffix, 2, "BDAddr",
89 (ops !cast<RegisterOperand>("ADDR"##bitsize),
90 !cast<Immediate>("disp"##dispsize##"imm"##bitsize))>;
91
92// An addressing mode with a base, displacement and index.
93class BDXMode<string type, string bitsize, string dispsize, string suffix>
94 : AddressingMode<type, bitsize, dispsize, suffix, 3, "BDXAddr",
95 (ops !cast<RegisterOperand>("ADDR"##bitsize),
96 !cast<Immediate>("disp"##dispsize##"imm"##bitsize),
97 !cast<RegisterOperand>("ADDR"##bitsize))>;
98
99//===----------------------------------------------------------------------===//
100// Extracting immediate operands from nodes
101// These all create MVT::i64 nodes to ensure the value is not sign-extended
102// when converted from an SDNode to a MachineOperand later on.
103//===----------------------------------------------------------------------===//
104
105// Bits 0-15 (counting from the lsb).
106def LL16 : SDNodeXForm<imm, [{
107 uint64_t Value = N->getZExtValue() & 0x000000000000FFFFULL;
108 return CurDAG->getTargetConstant(Value, MVT::i64);
109}]>;
110
111// Bits 16-31 (counting from the lsb).
112def LH16 : SDNodeXForm<imm, [{
113 uint64_t Value = (N->getZExtValue() & 0x00000000FFFF0000ULL) >> 16;
114 return CurDAG->getTargetConstant(Value, MVT::i64);
115}]>;
116
117// Bits 32-47 (counting from the lsb).
118def HL16 : SDNodeXForm<imm, [{
119 uint64_t Value = (N->getZExtValue() & 0x0000FFFF00000000ULL) >> 32;
120 return CurDAG->getTargetConstant(Value, MVT::i64);
121}]>;
122
123// Bits 48-63 (counting from the lsb).
124def HH16 : SDNodeXForm<imm, [{
125 uint64_t Value = (N->getZExtValue() & 0xFFFF000000000000ULL) >> 48;
126 return CurDAG->getTargetConstant(Value, MVT::i64);
127}]>;
128
129// Low 32 bits.
130def LF32 : SDNodeXForm<imm, [{
131 uint64_t Value = N->getZExtValue() & 0x00000000FFFFFFFFULL;
132 return CurDAG->getTargetConstant(Value, MVT::i64);
133}]>;
134
135// High 32 bits.
136def HF32 : SDNodeXForm<imm, [{
137 uint64_t Value = N->getZExtValue() >> 32;
138 return CurDAG->getTargetConstant(Value, MVT::i64);
139}]>;
140
141// Truncate an immediate to a 8-bit signed quantity.
142def SIMM8 : SDNodeXForm<imm, [{
143 return CurDAG->getTargetConstant(int8_t(N->getZExtValue()), MVT::i64);
144}]>;
145
146// Truncate an immediate to a 8-bit unsigned quantity.
147def UIMM8 : SDNodeXForm<imm, [{
148 return CurDAG->getTargetConstant(uint8_t(N->getZExtValue()), MVT::i64);
149}]>;
150
151// Truncate an immediate to a 16-bit signed quantity.
152def SIMM16 : SDNodeXForm<imm, [{
153 return CurDAG->getTargetConstant(int16_t(N->getZExtValue()), MVT::i64);
154}]>;
155
156// Truncate an immediate to a 16-bit unsigned quantity.
157def UIMM16 : SDNodeXForm<imm, [{
158 return CurDAG->getTargetConstant(uint16_t(N->getZExtValue()), MVT::i64);
159}]>;
160
161// Truncate an immediate to a 32-bit signed quantity.
162def SIMM32 : SDNodeXForm<imm, [{
163 return CurDAG->getTargetConstant(int32_t(N->getZExtValue()), MVT::i64);
164}]>;
165
166// Truncate an immediate to a 32-bit unsigned quantity.
167def UIMM32 : SDNodeXForm<imm, [{
168 return CurDAG->getTargetConstant(uint32_t(N->getZExtValue()), MVT::i64);
169}]>;
170
171// Negate and then truncate an immediate to a 32-bit unsigned quantity.
172def NEGIMM32 : SDNodeXForm<imm, [{
173 return CurDAG->getTargetConstant(uint32_t(-N->getZExtValue()), MVT::i64);
174}]>;
175
176//===----------------------------------------------------------------------===//
177// Immediate asm operands.
178//===----------------------------------------------------------------------===//
179
180def U4Imm : ImmediateAsmOperand<"U4Imm">;
181def U6Imm : ImmediateAsmOperand<"U6Imm">;
182def S8Imm : ImmediateAsmOperand<"S8Imm">;
183def U8Imm : ImmediateAsmOperand<"U8Imm">;
184def S16Imm : ImmediateAsmOperand<"S16Imm">;
185def U16Imm : ImmediateAsmOperand<"U16Imm">;
186def S32Imm : ImmediateAsmOperand<"S32Imm">;
187def U32Imm : ImmediateAsmOperand<"U32Imm">;
188
189//===----------------------------------------------------------------------===//
190// 8-bit immediates
191//===----------------------------------------------------------------------===//
192
193def uimm8zx4 : Immediate<i8, [{
194 return isUInt<4>(N->getZExtValue());
195}], NOOP_SDNodeXForm, "U4Imm">;
196
197def uimm8zx6 : Immediate<i8, [{
198 return isUInt<6>(N->getZExtValue());
199}], NOOP_SDNodeXForm, "U6Imm">;
200
201def simm8 : Immediate<i8, [{}], SIMM8, "S8Imm">;
202def uimm8 : Immediate<i8, [{}], UIMM8, "U8Imm">;
203
204//===----------------------------------------------------------------------===//
205// i32 immediates
206//===----------------------------------------------------------------------===//
207
208// Immediates for the lower and upper 16 bits of an i32, with the other
209// bits of the i32 being zero.
210def imm32ll16 : Immediate<i32, [{
211 return SystemZ::isImmLL(N->getZExtValue());
212}], LL16, "U16Imm">;
213
214def imm32lh16 : Immediate<i32, [{
215 return SystemZ::isImmLH(N->getZExtValue());
216}], LH16, "U16Imm">;
217
218// Immediates for the lower and upper 16 bits of an i32, with the other
219// bits of the i32 being one.
220def imm32ll16c : Immediate<i32, [{
221 return SystemZ::isImmLL(uint32_t(~N->getZExtValue()));
222}], LL16, "U16Imm">;
223
224def imm32lh16c : Immediate<i32, [{
225 return SystemZ::isImmLH(uint32_t(~N->getZExtValue()));
226}], LH16, "U16Imm">;
227
228// Short immediates
229def imm32sx8 : Immediate<i32, [{
230 return isInt<8>(N->getSExtValue());
231}], SIMM8, "S8Imm">;
232
233def imm32zx8 : Immediate<i32, [{
234 return isUInt<8>(N->getZExtValue());
235}], UIMM8, "U8Imm">;
236
237def imm32zx8trunc : Immediate<i32, [{}], UIMM8, "U8Imm">;
238
239def imm32sx16 : Immediate<i32, [{
240 return isInt<16>(N->getSExtValue());
241}], SIMM16, "S16Imm">;
242
243def imm32zx16 : Immediate<i32, [{
244 return isUInt<16>(N->getZExtValue());
245}], UIMM16, "U16Imm">;
246
247def imm32sx16trunc : Immediate<i32, [{}], SIMM16, "S16Imm">;
248
249// Full 32-bit immediates. we need both signed and unsigned versions
250// because the assembler is picky. E.g. AFI requires signed operands
251// while NILF requires unsigned ones.
252def simm32 : Immediate<i32, [{}], SIMM32, "S32Imm">;
253def uimm32 : Immediate<i32, [{}], UIMM32, "U32Imm">;
254
255def imm32 : ImmLeaf<i32, [{}]>;
256
257//===----------------------------------------------------------------------===//
258// 64-bit immediates
259//===----------------------------------------------------------------------===//
260
261// Immediates for 16-bit chunks of an i64, with the other bits of the
262// i32 being zero.
263def imm64ll16 : Immediate<i64, [{
264 return SystemZ::isImmLL(N->getZExtValue());
265}], LL16, "U16Imm">;
266
267def imm64lh16 : Immediate<i64, [{
268 return SystemZ::isImmLH(N->getZExtValue());
269}], LH16, "U16Imm">;
270
271def imm64hl16 : Immediate<i64, [{
272 return SystemZ::isImmHL(N->getZExtValue());
273}], HL16, "U16Imm">;
274
275def imm64hh16 : Immediate<i64, [{
276 return SystemZ::isImmHH(N->getZExtValue());
277}], HH16, "U16Imm">;
278
279// Immediates for 16-bit chunks of an i64, with the other bits of the
280// i32 being one.
281def imm64ll16c : Immediate<i64, [{
282 return SystemZ::isImmLL(uint64_t(~N->getZExtValue()));
283}], LL16, "U16Imm">;
284
285def imm64lh16c : Immediate<i64, [{
286 return SystemZ::isImmLH(uint64_t(~N->getZExtValue()));
287}], LH16, "U16Imm">;
288
289def imm64hl16c : Immediate<i64, [{
290 return SystemZ::isImmHL(uint64_t(~N->getZExtValue()));
291}], HL16, "U16Imm">;
292
293def imm64hh16c : Immediate<i64, [{
294 return SystemZ::isImmHH(uint64_t(~N->getZExtValue()));
295}], HH16, "U16Imm">;
296
297// Immediates for the lower and upper 32 bits of an i64, with the other
298// bits of the i32 being zero.
299def imm64lf32 : Immediate<i64, [{
300 return SystemZ::isImmLF(N->getZExtValue());
301}], LF32, "U32Imm">;
302
303def imm64hf32 : Immediate<i64, [{
304 return SystemZ::isImmHF(N->getZExtValue());
305}], HF32, "U32Imm">;
306
307// Immediates for the lower and upper 32 bits of an i64, with the other
308// bits of the i32 being one.
309def imm64lf32c : Immediate<i64, [{
310 return SystemZ::isImmLF(uint64_t(~N->getZExtValue()));
311}], LF32, "U32Imm">;
312
313def imm64hf32c : Immediate<i64, [{
314 return SystemZ::isImmHF(uint64_t(~N->getZExtValue()));
315}], HF32, "U32Imm">;
316
317// Short immediates.
318def imm64sx8 : Immediate<i64, [{
319 return isInt<8>(N->getSExtValue());
320}], SIMM8, "S8Imm">;
321
322def imm64sx16 : Immediate<i64, [{
323 return isInt<16>(N->getSExtValue());
324}], SIMM16, "S16Imm">;
325
326def imm64zx16 : Immediate<i64, [{
327 return isUInt<16>(N->getZExtValue());
328}], UIMM16, "U16Imm">;
329
330def imm64sx32 : Immediate<i64, [{
331 return isInt<32>(N->getSExtValue());
332}], SIMM32, "S32Imm">;
333
334def imm64zx32 : Immediate<i64, [{
335 return isUInt<32>(N->getZExtValue());
336}], UIMM32, "U32Imm">;
337
338def imm64zx32n : Immediate<i64, [{
339 return isUInt<32>(-N->getSExtValue());
340}], NEGIMM32, "U32Imm">;
341
342def imm64 : ImmLeaf<i64, [{}]>;
343
344//===----------------------------------------------------------------------===//
345// Floating-point immediates
346//===----------------------------------------------------------------------===//
347
348// Floating-point zero.
349def fpimm0 : PatLeaf<(fpimm), [{ return N->isExactlyValue(+0.0); }]>;
350
351// Floating point negative zero.
352def fpimmneg0 : PatLeaf<(fpimm), [{ return N->isExactlyValue(-0.0); }]>;
353
354//===----------------------------------------------------------------------===//
355// Symbolic address operands
356//===----------------------------------------------------------------------===//
357
Richard Sandiford1fb58832013-05-14 09:47:26 +0000358// PC-relative asm operands.
359def PCRel16 : PCRelAsmOperand<"16">;
360def PCRel32 : PCRelAsmOperand<"32">;
361
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000362// PC-relative offsets of a basic block. The offset is sign-extended
363// and multiplied by 2.
Richard Sandiford1fb58832013-05-14 09:47:26 +0000364def brtarget16 : PCRelOperand<OtherVT, PCRel16> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000365 let EncoderMethod = "getPC16DBLEncoding";
Richard Sandifordeb9af292013-05-14 10:17:52 +0000366 let DecoderMethod = "decodePC16DBLOperand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000367}
Richard Sandiford1fb58832013-05-14 09:47:26 +0000368def brtarget32 : PCRelOperand<OtherVT, PCRel32> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000369 let EncoderMethod = "getPC32DBLEncoding";
Richard Sandifordeb9af292013-05-14 10:17:52 +0000370 let DecoderMethod = "decodePC32DBLOperand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000371}
372
373// A PC-relative offset of a global value. The offset is sign-extended
374// and multiplied by 2.
Richard Sandiford1fb58832013-05-14 09:47:26 +0000375def pcrel32 : PCRelAddress<i64, "pcrel32", PCRel32> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000376 let EncoderMethod = "getPC32DBLEncoding";
Richard Sandifordeb9af292013-05-14 10:17:52 +0000377 let DecoderMethod = "decodePC32DBLOperand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000378}
379
380// A PC-relative offset of a global value when the value is used as a
381// call target. The offset is sign-extended and multiplied by 2.
Richard Sandiford1fb58832013-05-14 09:47:26 +0000382def pcrel16call : PCRelAddress<i64, "pcrel16call", PCRel16> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000383 let PrintMethod = "printCallOperand";
384 let EncoderMethod = "getPLT16DBLEncoding";
Richard Sandifordeb9af292013-05-14 10:17:52 +0000385 let DecoderMethod = "decodePC16DBLOperand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000386}
Richard Sandiford1fb58832013-05-14 09:47:26 +0000387def pcrel32call : PCRelAddress<i64, "pcrel32call", PCRel32> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000388 let PrintMethod = "printCallOperand";
389 let EncoderMethod = "getPLT32DBLEncoding";
Richard Sandifordeb9af292013-05-14 10:17:52 +0000390 let DecoderMethod = "decodePC32DBLOperand";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000391}
392
393//===----------------------------------------------------------------------===//
394// Addressing modes
395//===----------------------------------------------------------------------===//
396
397// 12-bit displacement operands.
398def disp12imm32 : Operand<i32>;
399def disp12imm64 : Operand<i64>;
400
401// 20-bit displacement operands.
402def disp20imm32 : Operand<i32>;
403def disp20imm64 : Operand<i64>;
404
405def BDAddr32Disp12 : AddressAsmOperand<"BDAddr", "32", "12">;
406def BDAddr32Disp20 : AddressAsmOperand<"BDAddr", "32", "20">;
407def BDAddr64Disp12 : AddressAsmOperand<"BDAddr", "64", "12">;
408def BDAddr64Disp20 : AddressAsmOperand<"BDAddr", "64", "20">;
409def BDXAddr64Disp12 : AddressAsmOperand<"BDXAddr", "64", "12">;
410def BDXAddr64Disp20 : AddressAsmOperand<"BDXAddr", "64", "20">;
411
412// DAG patterns and operands for addressing modes. Each mode has
413// the form <type><range><group> where:
414//
415// <type> is one of:
416// shift : base + displacement (32-bit)
417// bdaddr : base + displacement
418// bdxaddr : base + displacement + index
419// laaddr : like bdxaddr, but used for Load Address operations
420// dynalloc : base + displacement + index + ADJDYNALLOC
421//
422// <range> is one of:
423// 12 : the displacement is an unsigned 12-bit value
424// 20 : the displacement is a signed 20-bit value
425//
426// <group> is one of:
427// pair : used when there is an equivalent instruction with the opposite
428// range value (12 or 20)
429// only : used when there is no equivalent instruction with the opposite
430// range value
431def shift12only : BDMode <"BDAddr", "32", "12", "Only">;
432def shift20only : BDMode <"BDAddr", "32", "20", "Only">;
433def bdaddr12only : BDMode <"BDAddr", "64", "12", "Only">;
434def bdaddr12pair : BDMode <"BDAddr", "64", "12", "Pair">;
435def bdaddr20only : BDMode <"BDAddr", "64", "20", "Only">;
436def bdaddr20pair : BDMode <"BDAddr", "64", "20", "Pair">;
437def bdxaddr12only : BDXMode<"BDXAddr", "64", "12", "Only">;
438def bdxaddr12pair : BDXMode<"BDXAddr", "64", "12", "Pair">;
439def bdxaddr20only : BDXMode<"BDXAddr", "64", "20", "Only">;
440def bdxaddr20only128 : BDXMode<"BDXAddr", "64", "20", "Only128">;
441def bdxaddr20pair : BDXMode<"BDXAddr", "64", "20", "Pair">;
442def dynalloc12only : BDXMode<"DynAlloc", "64", "12", "Only">;
443def laaddr12pair : BDXMode<"LAAddr", "64", "12", "Pair">;
444def laaddr20pair : BDXMode<"LAAddr", "64", "20", "Pair">;
445
446//===----------------------------------------------------------------------===//
447// Miscellaneous
448//===----------------------------------------------------------------------===//
449
450// Access registers. At present we just use them for accessing the thread
451// pointer, so we don't expose them as register to LLVM.
452def AccessReg : AsmOperandClass {
453 let Name = "AccessReg";
454 let ParserMethod = "parseAccessReg";
455}
456def access_reg : Immediate<i8, [{ return N->getZExtValue() < 16; }],
457 NOOP_SDNodeXForm, "AccessReg"> {
458 let ParserMatchClass = AccessReg;
459}
460
461// A 4-bit condition-code mask.
462def cond4 : PatLeaf<(i8 imm), [{ return (N->getZExtValue() < 16); }]>,
463 Operand<i8> {
464 let PrintMethod = "printCond4Operand";
465}