blob: f53833210ec38d6a0ca9c2c3541a1cfba17ad93a [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//==- SystemZInstrFormats.td - SystemZ Instruction Formats --*- tablegen -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10//===----------------------------------------------------------------------===//
11// Basic SystemZ instruction definition
12//===----------------------------------------------------------------------===//
13
14class InstSystemZ<int size, dag outs, dag ins, string asmstr,
15 list<dag> pattern> : Instruction {
16 let Namespace = "SystemZ";
17
18 dag OutOperandList = outs;
19 dag InOperandList = ins;
20 let Size = size;
21 let Pattern = pattern;
22 let AsmString = asmstr;
23
Richard Sandiforddf313ff2013-07-03 09:19:58 +000024 // Some instructions come in pairs, one having a 12-bit displacement
25 // and the other having a 20-bit displacement. Both instructions in
26 // the pair have the same DispKey and their DispSizes are "12" and "20"
27 // respectively.
28 string DispKey = "";
29 string DispSize = "none";
Ulrich Weigand5f613df2013-05-06 16:15:19 +000030
Richard Sandiforded1fab62013-07-03 10:10:02 +000031 // Many register-based <INSN>R instructions have a memory-based <INSN>
32 // counterpart. OpKey uniquely identifies <INSN>, while OpType is
33 // "reg" for <INSN>R and "mem" for <INSN>.
34 string OpKey = "";
35 string OpType = "none";
36
Richard Sandifordff6c5a52013-07-19 16:12:08 +000037 // Many distinct-operands instructions have older 2-operand equivalents.
38 // NumOpsKey uniquely identifies one of these 2-operand and 3-operand pairs,
39 // with NumOpsValue being "2" or "3" as appropriate.
40 string NumOpsKey = "";
41 string NumOpsValue = "none";
42
Ulrich Weigand5f613df2013-05-06 16:15:19 +000043 // True if this instruction is a simple D(X,B) load of a register
44 // (with no sign or zero extension).
45 bit SimpleBDXLoad = 0;
46
47 // True if this instruction is a simple D(X,B) store of a register
48 // (with no truncation).
49 bit SimpleBDXStore = 0;
50
51 // True if this instruction has a 20-bit displacement field.
52 bit Has20BitOffset = 0;
53
54 // True if addresses in this instruction have an index register.
55 bit HasIndex = 0;
56
57 // True if this is a 128-bit pseudo instruction that combines two 64-bit
58 // operations.
59 bit Is128Bit = 0;
60
Richard Sandiforded1fab62013-07-03 10:10:02 +000061 // The access size of all memory operands in bytes, or 0 if not known.
62 bits<5> AccessBytes = 0;
63
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +000064 // If the instruction sets CC to a useful value, this gives the mask
65 // of all possible CC results. The mask has the same form as
66 // SystemZ::CCMASK_*.
67 bits<4> CCValues = 0;
68
Richard Sandiford0897fce2013-08-07 11:10:06 +000069 // The subset of CCValues that have the same meaning as they would after
70 // a comparison of the first operand against zero.
71 bits<4> CompareZeroCCMask = 0;
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +000072
73 // True if the instruction is conditional and if the CC mask operand
74 // comes first (as for BRC, etc.).
75 bit CCMaskFirst = 0;
76
77 // Similar, but true if the CC mask operand comes last (as for LOC, etc.).
78 bit CCMaskLast = 0;
79
80 // True if the instruction is the "logical" rather than "arithmetic" form,
81 // in cases where a distinction exists.
82 bit IsLogical = 0;
83
84 let TSFlags{0} = SimpleBDXLoad;
85 let TSFlags{1} = SimpleBDXStore;
86 let TSFlags{2} = Has20BitOffset;
87 let TSFlags{3} = HasIndex;
88 let TSFlags{4} = Is128Bit;
89 let TSFlags{9-5} = AccessBytes;
90 let TSFlags{13-10} = CCValues;
Richard Sandiford0897fce2013-08-07 11:10:06 +000091 let TSFlags{17-14} = CompareZeroCCMask;
92 let TSFlags{18} = CCMaskFirst;
93 let TSFlags{19} = CCMaskLast;
94 let TSFlags{20} = IsLogical;
Ulrich Weigand5f613df2013-05-06 16:15:19 +000095}
96
97//===----------------------------------------------------------------------===//
98// Mappings between instructions
99//===----------------------------------------------------------------------===//
100
101// Return the version of an instruction that has an unsigned 12-bit
102// displacement.
103def getDisp12Opcode : InstrMapping {
104 let FilterClass = "InstSystemZ";
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000105 let RowFields = ["DispKey"];
106 let ColFields = ["DispSize"];
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000107 let KeyCol = ["20"];
108 let ValueCols = [["12"]];
109}
110
111// Return the version of an instruction that has a signed 20-bit displacement.
112def getDisp20Opcode : InstrMapping {
113 let FilterClass = "InstSystemZ";
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000114 let RowFields = ["DispKey"];
115 let ColFields = ["DispSize"];
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000116 let KeyCol = ["12"];
117 let ValueCols = [["20"]];
118}
119
Richard Sandifordff6c5a52013-07-19 16:12:08 +0000120// Return the memory form of a register instruction.
Richard Sandiforded1fab62013-07-03 10:10:02 +0000121def getMemOpcode : InstrMapping {
122 let FilterClass = "InstSystemZ";
123 let RowFields = ["OpKey"];
124 let ColFields = ["OpType"];
125 let KeyCol = ["reg"];
126 let ValueCols = [["mem"]];
127}
128
Richard Sandifordff6c5a52013-07-19 16:12:08 +0000129// Return the 3-operand form of a 2-operand instruction.
130def getThreeOperandOpcode : InstrMapping {
131 let FilterClass = "InstSystemZ";
132 let RowFields = ["NumOpsKey"];
133 let ColFields = ["NumOpsValue"];
134 let KeyCol = ["2"];
135 let ValueCols = [["3"]];
136}
137
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000138//===----------------------------------------------------------------------===//
139// Instruction formats
140//===----------------------------------------------------------------------===//
141//
142// Formats are specified using operand field declarations of the form:
143//
Richard Sandifordd454ec02013-05-14 09:28:21 +0000144// bits<4> Rn : register input or output for operand n
145// bits<m> In : immediate value of width m for operand n
146// bits<4> BDn : address operand n, which has a base and a displacement
147// bits<m> XBDn : address operand n, which has an index, a base and a
148// displacement
149// bits<4> Xn : index register for address operand n
150// bits<4> Mn : mode value for operand n
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000151//
Richard Sandifordd454ec02013-05-14 09:28:21 +0000152// The operand numbers ("n" in the list above) follow the architecture manual.
153// Assembly operands sometimes have a different order; in particular, R3 often
154// is often written between operands 1 and 2.
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000155//
156//===----------------------------------------------------------------------===//
157
158class InstRI<bits<12> op, dag outs, dag ins, string asmstr, list<dag> pattern>
159 : InstSystemZ<4, outs, ins, asmstr, pattern> {
160 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000161 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000162
163 bits<4> R1;
164 bits<16> I2;
165
166 let Inst{31-24} = op{11-4};
167 let Inst{23-20} = R1;
168 let Inst{19-16} = op{3-0};
169 let Inst{15-0} = I2;
170}
171
Richard Sandiford0fb90ab2013-05-28 10:41:11 +0000172class InstRIEb<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
173 : InstSystemZ<6, outs, ins, asmstr, pattern> {
174 field bits<48> Inst;
175 field bits<48> SoftFail = 0;
176
177 bits<4> R1;
178 bits<4> R2;
179 bits<4> M3;
180 bits<16> RI4;
181
182 let Inst{47-40} = op{15-8};
183 let Inst{39-36} = R1;
184 let Inst{35-32} = R2;
185 let Inst{31-16} = RI4;
186 let Inst{15-12} = M3;
187 let Inst{11-8} = 0;
188 let Inst{7-0} = op{7-0};
189}
190
Richard Sandiforde1d9f002013-05-29 11:58:52 +0000191class InstRIEc<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
192 : InstSystemZ<6, outs, ins, asmstr, pattern> {
193 field bits<48> Inst;
194 field bits<48> SoftFail = 0;
195
196 bits<4> R1;
197 bits<8> I2;
198 bits<4> M3;
199 bits<16> RI4;
200
201 let Inst{47-40} = op{15-8};
202 let Inst{39-36} = R1;
203 let Inst{35-32} = M3;
204 let Inst{31-16} = RI4;
205 let Inst{15-8} = I2;
206 let Inst{7-0} = op{7-0};
207}
208
Richard Sandiford7d6a4532013-07-19 16:32:12 +0000209class InstRIEd<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
210 : InstSystemZ<6, outs, ins, asmstr, pattern> {
211 field bits<48> Inst;
212 field bits<48> SoftFail = 0;
213
214 bits<4> R1;
215 bits<4> R3;
216 bits<16> I2;
217
218 let Inst{47-40} = op{15-8};
219 let Inst{39-36} = R1;
220 let Inst{35-32} = R3;
221 let Inst{31-16} = I2;
222 let Inst{15-8} = 0;
223 let Inst{7-0} = op{7-0};
224}
225
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000226class InstRIEf<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
227 : InstSystemZ<6, outs, ins, asmstr, pattern> {
228 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000229 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000230
231 bits<4> R1;
232 bits<4> R2;
233 bits<8> I3;
234 bits<8> I4;
235 bits<8> I5;
236
237 let Inst{47-40} = op{15-8};
238 let Inst{39-36} = R1;
239 let Inst{35-32} = R2;
240 let Inst{31-24} = I3;
241 let Inst{23-16} = I4;
242 let Inst{15-8} = I5;
243 let Inst{7-0} = op{7-0};
244}
245
246class InstRIL<bits<12> op, dag outs, dag ins, string asmstr, list<dag> pattern>
247 : InstSystemZ<6, outs, ins, asmstr, pattern> {
248 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000249 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000250
251 bits<4> R1;
252 bits<32> I2;
253
254 let Inst{47-40} = op{11-4};
255 let Inst{39-36} = R1;
256 let Inst{35-32} = op{3-0};
257 let Inst{31-0} = I2;
258}
259
260class InstRR<bits<8> op, dag outs, dag ins, string asmstr, list<dag> pattern>
261 : InstSystemZ<2, outs, ins, asmstr, pattern> {
262 field bits<16> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000263 field bits<16> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000264
265 bits<4> R1;
266 bits<4> R2;
267
268 let Inst{15-8} = op;
269 let Inst{7-4} = R1;
270 let Inst{3-0} = R2;
271}
272
273class InstRRD<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
274 : InstSystemZ<4, outs, ins, asmstr, pattern> {
275 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000276 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000277
278 bits<4> R1;
279 bits<4> R3;
280 bits<4> R2;
281
282 let Inst{31-16} = op;
283 let Inst{15-12} = R1;
284 let Inst{11-8} = 0;
285 let Inst{7-4} = R3;
286 let Inst{3-0} = R2;
287}
288
289class InstRRE<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
290 : InstSystemZ<4, outs, ins, asmstr, pattern> {
291 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000292 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000293
294 bits<4> R1;
295 bits<4> R2;
296
297 let Inst{31-16} = op;
298 let Inst{15-8} = 0;
299 let Inst{7-4} = R1;
300 let Inst{3-0} = R2;
301}
302
303class InstRRF<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
304 : InstSystemZ<4, outs, ins, asmstr, pattern> {
305 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000306 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000307
308 bits<4> R1;
309 bits<4> R2;
310 bits<4> R3;
Richard Sandiford8e92c382013-08-21 08:58:08 +0000311 bits<4> R4;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000312
313 let Inst{31-16} = op;
314 let Inst{15-12} = R3;
Richard Sandiford8e92c382013-08-21 08:58:08 +0000315 let Inst{11-8} = R4;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000316 let Inst{7-4} = R1;
317 let Inst{3-0} = R2;
318}
319
320class InstRX<bits<8> op, dag outs, dag ins, string asmstr, list<dag> pattern>
321 : InstSystemZ<4, outs, ins, asmstr, pattern> {
322 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000323 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000324
325 bits<4> R1;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000326 bits<20> XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000327
328 let Inst{31-24} = op;
329 let Inst{23-20} = R1;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000330 let Inst{19-0} = XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000331
332 let HasIndex = 1;
333}
334
335class InstRXE<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
336 : InstSystemZ<6, outs, ins, asmstr, pattern> {
337 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000338 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000339
340 bits<4> R1;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000341 bits<20> XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000342
343 let Inst{47-40} = op{15-8};
344 let Inst{39-36} = R1;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000345 let Inst{35-16} = XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000346 let Inst{15-8} = 0;
347 let Inst{7-0} = op{7-0};
348
349 let HasIndex = 1;
350}
351
352class InstRXF<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
353 : InstSystemZ<6, outs, ins, asmstr, pattern> {
354 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000355 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000356
357 bits<4> R1;
358 bits<4> R3;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000359 bits<20> XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000360
361 let Inst{47-40} = op{15-8};
362 let Inst{39-36} = R3;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000363 let Inst{35-16} = XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000364 let Inst{15-12} = R1;
365 let Inst{11-8} = 0;
366 let Inst{7-0} = op{7-0};
367
368 let HasIndex = 1;
369}
370
371class InstRXY<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
372 : InstSystemZ<6, outs, ins, asmstr, pattern> {
373 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000374 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000375
376 bits<4> R1;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000377 bits<28> XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000378
379 let Inst{47-40} = op{15-8};
380 let Inst{39-36} = R1;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000381 let Inst{35-8} = XBD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000382 let Inst{7-0} = op{7-0};
383
384 let Has20BitOffset = 1;
385 let HasIndex = 1;
386}
387
388class InstRS<bits<8> op, dag outs, dag ins, string asmstr, list<dag> pattern>
389 : InstSystemZ<4, outs, ins, asmstr, pattern> {
390 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000391 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000392
393 bits<4> R1;
394 bits<4> R3;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000395 bits<16> BD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000396
397 let Inst{31-24} = op;
398 let Inst{23-20} = R1;
399 let Inst{19-16} = R3;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000400 let Inst{15-0} = BD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000401}
402
403class InstRSY<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
404 : InstSystemZ<6, outs, ins, asmstr, pattern> {
405 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000406 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000407
408 bits<4> R1;
409 bits<4> R3;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000410 bits<24> BD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000411
412 let Inst{47-40} = op{15-8};
413 let Inst{39-36} = R1;
414 let Inst{35-32} = R3;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000415 let Inst{31-8} = BD2;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000416 let Inst{7-0} = op{7-0};
417
418 let Has20BitOffset = 1;
419}
420
421class InstSI<bits<8> op, dag outs, dag ins, string asmstr, list<dag> pattern>
422 : InstSystemZ<4, outs, ins, asmstr, pattern> {
423 field bits<32> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000424 field bits<32> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000425
Richard Sandifordd454ec02013-05-14 09:28:21 +0000426 bits<16> BD1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000427 bits<8> I2;
428
429 let Inst{31-24} = op;
430 let Inst{23-16} = I2;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000431 let Inst{15-0} = BD1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000432}
433
434class InstSIL<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
435 : InstSystemZ<6, outs, ins, asmstr, pattern> {
436 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000437 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000438
Richard Sandifordd454ec02013-05-14 09:28:21 +0000439 bits<16> BD1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000440 bits<16> I2;
441
442 let Inst{47-32} = op;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000443 let Inst{31-16} = BD1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000444 let Inst{15-0} = I2;
445}
446
447class InstSIY<bits<16> op, dag outs, dag ins, string asmstr, list<dag> pattern>
448 : InstSystemZ<6, outs, ins, asmstr, pattern> {
449 field bits<48> Inst;
Richard Sandifordeb9af292013-05-14 10:17:52 +0000450 field bits<48> SoftFail = 0;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000451
Richard Sandifordd454ec02013-05-14 09:28:21 +0000452 bits<24> BD1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000453 bits<8> I2;
454
455 let Inst{47-40} = op{15-8};
456 let Inst{39-32} = I2;
Richard Sandifordd454ec02013-05-14 09:28:21 +0000457 let Inst{31-8} = BD1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000458 let Inst{7-0} = op{7-0};
459
460 let Has20BitOffset = 1;
461}
462
Richard Sandiford1d959002013-07-02 14:56:45 +0000463class InstSS<bits<8> op, dag outs, dag ins, string asmstr, list<dag> pattern>
464 : InstSystemZ<6, outs, ins, asmstr, pattern> {
465 field bits<48> Inst;
466 field bits<48> SoftFail = 0;
467
468 bits<24> BDL1;
469 bits<16> BD2;
470
471 let Inst{47-40} = op;
472 let Inst{39-16} = BDL1;
473 let Inst{15-0} = BD2;
474}
475
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000476//===----------------------------------------------------------------------===//
477// Instruction definitions with semantics
478//===----------------------------------------------------------------------===//
479//
Richard Sandiforda68e6f52013-07-25 08:57:02 +0000480// These classes have the form [Cond]<Category><Format>, where <Format> is one
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000481// of the formats defined above and where <Category> describes the inputs
Richard Sandiforda68e6f52013-07-25 08:57:02 +0000482// and outputs. "Cond" is used if the instruction is conditional,
483// in which case the 4-bit condition-code mask is added as a final operand.
484// <Category> can be one of:
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000485//
486// Inherent:
487// One register output operand and no input operands.
488//
Richard Sandiford9795d8e2013-08-05 11:07:38 +0000489// BranchUnary:
490// One register output operand, one register input operand and
491// one branch displacement. The instructions stores a modified
492// form of the source register in the destination register and
493// branches on the result.
494//
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000495// Store:
496// One register or immediate input operand and one address input operand.
497// The instruction stores the first operand to the address.
498//
499// This category is used for both pure and truncating stores.
500//
501// LoadMultiple:
502// One address input operand and two explicit output operands.
503// The instruction loads a range of registers from the address,
504// with the explicit operands giving the first and last register
505// to load. Other loaded registers are added as implicit definitions.
506//
507// StoreMultiple:
508// Two explicit input register operands and an address operand.
509// The instruction stores a range of registers to the address,
510// with the explicit operands giving the first and last register
511// to store. Other stored registers are added as implicit uses.
512//
513// Unary:
514// One register output operand and one input operand. The input
515// operand may be a register, immediate or memory.
516//
517// Binary:
518// One register output operand and two input operands. The first
519// input operand is always a register and he second may be a register,
520// immediate or memory.
521//
522// Shift:
523// One register output operand and two input operands. The first
524// input operand is a register and the second has the same form as
525// an address (although it isn't actually used to address memory).
526//
527// Compare:
528// Two input operands. The first operand is always a register,
529// the second may be a register, immediate or memory.
530//
531// Ternary:
532// One register output operand and three register input operands.
533//
534// CmpSwap:
535// One output operand and three input operands. The first two
536// operands are registers and the third is an address. The instruction
537// both reads from and writes to the address.
538//
539// RotateSelect:
540// One output operand and five input operands. The first two operands
541// are registers and the other three are immediates.
542//
543// The format determines which input operands are tied to output operands,
544// and also determines the shape of any address operand.
545//
546// Multiclasses of the form <Category><Format>Pair define two instructions,
547// one with <Category><Format> and one with <Category><Format>Y. The name
548// of the first instruction has no suffix, the name of the second has
549// an extra "y".
550//
551//===----------------------------------------------------------------------===//
552
553class InherentRRE<string mnemonic, bits<16> opcode, RegisterOperand cls,
554 dag src>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000555 : InstRRE<opcode, (outs cls:$R1), (ins),
Richard Sandiford87326c72013-08-12 10:05:58 +0000556 mnemonic#"\t$R1",
Richard Sandifordd454ec02013-05-14 09:28:21 +0000557 [(set cls:$R1, src)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000558 let R2 = 0;
559}
560
Richard Sandiford9795d8e2013-08-05 11:07:38 +0000561class BranchUnaryRI<string mnemonic, bits<12> opcode, RegisterOperand cls>
562 : InstRI<opcode, (outs cls:$R1), (ins cls:$R1src, brtarget16:$I2),
563 mnemonic##"\t$R1, $I2", []> {
564 let isBranch = 1;
565 let isTerminator = 1;
566 let Constraints = "$R1 = $R1src";
567 let DisableEncoding = "$R1src";
568}
569
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000570class LoadMultipleRSY<string mnemonic, bits<16> opcode, RegisterOperand cls>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000571 : InstRSY<opcode, (outs cls:$R1, cls:$R3), (ins bdaddr20only:$BD2),
572 mnemonic#"\t$R1, $R3, $BD2", []> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000573 let mayLoad = 1;
574}
575
576class StoreRILPC<string mnemonic, bits<12> opcode, SDPatternOperator operator,
577 RegisterOperand cls>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000578 : InstRIL<opcode, (outs), (ins cls:$R1, pcrel32:$I2),
579 mnemonic#"\t$R1, $I2",
580 [(operator cls:$R1, pcrel32:$I2)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000581 let mayStore = 1;
582 // We want PC-relative addresses to be tried ahead of BD and BDX addresses.
583 // However, BDXs have two extra operands and are therefore 6 units more
584 // complex.
585 let AddedComplexity = 7;
586}
587
588class StoreRX<string mnemonic, bits<8> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000589 RegisterOperand cls, bits<5> bytes,
590 AddressingMode mode = bdxaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000591 : InstRX<opcode, (outs), (ins cls:$R1, mode:$XBD2),
592 mnemonic#"\t$R1, $XBD2",
593 [(operator cls:$R1, mode:$XBD2)]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000594 let OpKey = mnemonic ## cls;
595 let OpType = "mem";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000596 let mayStore = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000597 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000598}
599
600class StoreRXY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000601 RegisterOperand cls, bits<5> bytes,
602 AddressingMode mode = bdxaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000603 : InstRXY<opcode, (outs), (ins cls:$R1, mode:$XBD2),
604 mnemonic#"\t$R1, $XBD2",
605 [(operator cls:$R1, mode:$XBD2)]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000606 let OpKey = mnemonic ## cls;
607 let OpType = "mem";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000608 let mayStore = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000609 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000610}
611
612multiclass StoreRXPair<string mnemonic, bits<8> rxOpcode, bits<16> rxyOpcode,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000613 SDPatternOperator operator, RegisterOperand cls,
614 bits<5> bytes> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000615 let DispKey = mnemonic ## #cls in {
616 let DispSize = "12" in
Richard Sandiforded1fab62013-07-03 10:10:02 +0000617 def "" : StoreRX<mnemonic, rxOpcode, operator, cls, bytes, bdxaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000618 let DispSize = "20" in
Richard Sandiforded1fab62013-07-03 10:10:02 +0000619 def Y : StoreRXY<mnemonic#"y", rxyOpcode, operator, cls, bytes,
620 bdxaddr20pair>;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000621 }
622}
623
624class StoreMultipleRSY<string mnemonic, bits<16> opcode, RegisterOperand cls>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000625 : InstRSY<opcode, (outs), (ins cls:$R1, cls:$R3, bdaddr20only:$BD2),
626 mnemonic#"\t$R1, $R3, $BD2", []> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000627 let mayStore = 1;
628}
629
Richard Sandiforda481f582013-08-23 11:18:53 +0000630// StoreSI* instructions are used to store an integer to memory, but the
631// addresses are more restricted than for normal stores. If we are in the
632// situation of having to force either the address into a register or the
633// constant into a register, it's usually better to do the latter.
634// We therefore match the address in the same way as a normal store and
635// only use the StoreSI* instruction if the matched address is suitable.
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000636class StoreSI<string mnemonic, bits<8> opcode, SDPatternOperator operator,
Richard Sandiforda481f582013-08-23 11:18:53 +0000637 Immediate imm>
638 : InstSI<opcode, (outs), (ins mviaddr12pair:$BD1, imm:$I2),
Richard Sandifordd454ec02013-05-14 09:28:21 +0000639 mnemonic#"\t$BD1, $I2",
Richard Sandiforda481f582013-08-23 11:18:53 +0000640 [(operator imm:$I2, mviaddr12pair:$BD1)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000641 let mayStore = 1;
642}
643
644class StoreSIY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforda481f582013-08-23 11:18:53 +0000645 Immediate imm>
646 : InstSIY<opcode, (outs), (ins mviaddr20pair:$BD1, imm:$I2),
Richard Sandifordd454ec02013-05-14 09:28:21 +0000647 mnemonic#"\t$BD1, $I2",
Richard Sandiforda481f582013-08-23 11:18:53 +0000648 [(operator imm:$I2, mviaddr20pair:$BD1)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000649 let mayStore = 1;
650}
651
652class StoreSIL<string mnemonic, bits<16> opcode, SDPatternOperator operator,
653 Immediate imm>
Richard Sandiforda481f582013-08-23 11:18:53 +0000654 : InstSIL<opcode, (outs), (ins mviaddr12pair:$BD1, imm:$I2),
Richard Sandifordd454ec02013-05-14 09:28:21 +0000655 mnemonic#"\t$BD1, $I2",
Richard Sandiforda481f582013-08-23 11:18:53 +0000656 [(operator imm:$I2, mviaddr12pair:$BD1)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000657 let mayStore = 1;
658}
659
660multiclass StoreSIPair<string mnemonic, bits<8> siOpcode, bits<16> siyOpcode,
661 SDPatternOperator operator, Immediate imm> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000662 let DispKey = mnemonic in {
663 let DispSize = "12" in
Richard Sandiforda481f582013-08-23 11:18:53 +0000664 def "" : StoreSI<mnemonic, siOpcode, operator, imm>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000665 let DispSize = "20" in
Richard Sandiforda481f582013-08-23 11:18:53 +0000666 def Y : StoreSIY<mnemonic#"y", siyOpcode, operator, imm>;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000667 }
668}
669
Richard Sandiforda68e6f52013-07-25 08:57:02 +0000670class CondStoreRSY<string mnemonic, bits<16> opcode,
671 RegisterOperand cls, bits<5> bytes,
672 AddressingMode mode = bdaddr20only>
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +0000673 : InstRSY<opcode, (outs), (ins cls:$R1, mode:$BD2, cond4:$valid, cond4:$R3),
Richard Sandiforda68e6f52013-07-25 08:57:02 +0000674 mnemonic#"$R3\t$R1, $BD2", []>,
675 Requires<[FeatureLoadStoreOnCond]> {
676 let mayStore = 1;
677 let AccessBytes = bytes;
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +0000678 let CCMaskLast = 1;
Richard Sandiforda68e6f52013-07-25 08:57:02 +0000679}
680
681// Like CondStoreRSY, but used for the raw assembly form. The condition-code
682// mask is the third operand rather than being part of the mnemonic.
683class AsmCondStoreRSY<string mnemonic, bits<16> opcode,
684 RegisterOperand cls, bits<5> bytes,
685 AddressingMode mode = bdaddr20only>
686 : InstRSY<opcode, (outs), (ins cls:$R1, mode:$BD2, uimm8zx4:$R3),
687 mnemonic#"\t$R1, $BD2, $R3", []>,
688 Requires<[FeatureLoadStoreOnCond]> {
689 let mayStore = 1;
690 let AccessBytes = bytes;
691}
692
693// Like CondStoreRSY, but with a fixed CC mask.
694class FixedCondStoreRSY<string mnemonic, bits<16> opcode,
695 RegisterOperand cls, bits<4> ccmask, bits<5> bytes,
696 AddressingMode mode = bdaddr20only>
697 : InstRSY<opcode, (outs), (ins cls:$R1, mode:$BD2),
698 mnemonic#"\t$R1, $BD2", []>,
699 Requires<[FeatureLoadStoreOnCond]> {
700 let mayStore = 1;
701 let AccessBytes = bytes;
702 let R3 = ccmask;
703}
704
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000705class UnaryRR<string mnemonic, bits<8> opcode, SDPatternOperator operator,
706 RegisterOperand cls1, RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000707 : InstRR<opcode, (outs cls1:$R1), (ins cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +0000708 mnemonic#"r\t$R1, $R2",
709 [(set cls1:$R1, (operator cls2:$R2))]> {
710 let OpKey = mnemonic ## cls1;
711 let OpType = "reg";
712}
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000713
714class UnaryRRE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
715 RegisterOperand cls1, RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000716 : InstRRE<opcode, (outs cls1:$R1), (ins cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +0000717 mnemonic#"r\t$R1, $R2",
718 [(set cls1:$R1, (operator cls2:$R2))]> {
719 let OpKey = mnemonic ## cls1;
720 let OpType = "reg";
721}
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000722
723class UnaryRRF<string mnemonic, bits<16> opcode, RegisterOperand cls1,
724 RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000725 : InstRRF<opcode, (outs cls1:$R1), (ins uimm8zx4:$R3, cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +0000726 mnemonic#"r\t$R1, $R3, $R2", []> {
727 let OpKey = mnemonic ## cls1;
728 let OpType = "reg";
Richard Sandiford8e92c382013-08-21 08:58:08 +0000729 let R4 = 0;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000730}
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000731
Richard Sandiford8e92c382013-08-21 08:58:08 +0000732class UnaryRRF4<string mnemonic, bits<16> opcode, RegisterOperand cls1,
733 RegisterOperand cls2>
734 : InstRRF<opcode, (outs cls1:$R1), (ins uimm8zx4:$R3, cls2:$R2, uimm8zx4:$R4),
735 mnemonic#"\t$R1, $R3, $R2, $R4", []>;
736
Richard Sandifordf2404162013-07-25 09:11:15 +0000737// These instructions are generated by if conversion. The old value of R1
738// is added as an implicit use.
739class CondUnaryRRF<string mnemonic, bits<16> opcode, RegisterOperand cls1,
740 RegisterOperand cls2>
Richard Sandiford3d768e32013-07-31 12:30:20 +0000741 : InstRRF<opcode, (outs cls1:$R1), (ins cls2:$R2, cond4:$valid, cond4:$R3),
Richard Sandifordf2404162013-07-25 09:11:15 +0000742 mnemonic#"r$R3\t$R1, $R2", []>,
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +0000743 Requires<[FeatureLoadStoreOnCond]> {
744 let CCMaskLast = 1;
Richard Sandiford8e92c382013-08-21 08:58:08 +0000745 let R4 = 0;
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +0000746}
Richard Sandifordf2404162013-07-25 09:11:15 +0000747
748// Like CondUnaryRRF, but used for the raw assembly form. The condition-code
749// mask is the third operand rather than being part of the mnemonic.
750class AsmCondUnaryRRF<string mnemonic, bits<16> opcode, RegisterOperand cls1,
751 RegisterOperand cls2>
752 : InstRRF<opcode, (outs cls1:$R1), (ins cls1:$R1src, cls2:$R2, uimm8zx4:$R3),
753 mnemonic#"r\t$R1, $R2, $R3", []>,
754 Requires<[FeatureLoadStoreOnCond]> {
755 let Constraints = "$R1 = $R1src";
756 let DisableEncoding = "$R1src";
Richard Sandiford8e92c382013-08-21 08:58:08 +0000757 let R4 = 0;
Richard Sandifordf2404162013-07-25 09:11:15 +0000758}
759
760// Like CondUnaryRRF, but with a fixed CC mask.
761class FixedCondUnaryRRF<string mnemonic, bits<16> opcode, RegisterOperand cls1,
762 RegisterOperand cls2, bits<4> ccmask>
763 : InstRRF<opcode, (outs cls1:$R1), (ins cls1:$R1src, cls2:$R2),
764 mnemonic#"\t$R1, $R2", []>,
765 Requires<[FeatureLoadStoreOnCond]> {
766 let Constraints = "$R1 = $R1src";
767 let DisableEncoding = "$R1src";
768 let R3 = ccmask;
Richard Sandiford8e92c382013-08-21 08:58:08 +0000769 let R4 = 0;
Richard Sandifordf2404162013-07-25 09:11:15 +0000770}
771
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000772class UnaryRI<string mnemonic, bits<12> opcode, SDPatternOperator operator,
773 RegisterOperand cls, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000774 : InstRI<opcode, (outs cls:$R1), (ins imm:$I2),
775 mnemonic#"\t$R1, $I2",
776 [(set cls:$R1, (operator imm:$I2))]>;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000777
778class UnaryRIL<string mnemonic, bits<12> opcode, SDPatternOperator operator,
779 RegisterOperand cls, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000780 : InstRIL<opcode, (outs cls:$R1), (ins imm:$I2),
781 mnemonic#"\t$R1, $I2",
782 [(set cls:$R1, (operator imm:$I2))]>;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000783
784class UnaryRILPC<string mnemonic, bits<12> opcode, SDPatternOperator operator,
785 RegisterOperand cls>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000786 : InstRIL<opcode, (outs cls:$R1), (ins pcrel32:$I2),
787 mnemonic#"\t$R1, $I2",
788 [(set cls:$R1, (operator pcrel32:$I2))]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000789 let mayLoad = 1;
790 // We want PC-relative addresses to be tried ahead of BD and BDX addresses.
791 // However, BDXs have two extra operands and are therefore 6 units more
792 // complex.
793 let AddedComplexity = 7;
794}
795
Richard Sandiford09a8cf32013-07-25 09:04:52 +0000796class CondUnaryRSY<string mnemonic, bits<16> opcode,
Richard Sandifordee834382013-07-31 12:38:08 +0000797 SDPatternOperator operator, RegisterOperand cls,
798 bits<5> bytes, AddressingMode mode = bdaddr20only>
799 : InstRSY<opcode, (outs cls:$R1),
800 (ins cls:$R1src, mode:$BD2, cond4:$valid, cond4:$R3),
801 mnemonic#"$R3\t$R1, $BD2",
802 [(set cls:$R1,
803 (z_select_ccmask (load bdaddr20only:$BD2), cls:$R1src,
804 cond4:$valid, cond4:$R3))]>,
Richard Sandiford09a8cf32013-07-25 09:04:52 +0000805 Requires<[FeatureLoadStoreOnCond]> {
806 let Constraints = "$R1 = $R1src";
807 let DisableEncoding = "$R1src";
808 let mayLoad = 1;
809 let AccessBytes = bytes;
Richard Sandifordfd7f4ae2013-08-01 10:39:40 +0000810 let CCMaskLast = 1;
Richard Sandiford09a8cf32013-07-25 09:04:52 +0000811}
812
813// Like CondUnaryRSY, but used for the raw assembly form. The condition-code
814// mask is the third operand rather than being part of the mnemonic.
815class AsmCondUnaryRSY<string mnemonic, bits<16> opcode,
816 RegisterOperand cls, bits<5> bytes,
817 AddressingMode mode = bdaddr20only>
818 : InstRSY<opcode, (outs cls:$R1), (ins cls:$R1src, mode:$BD2, uimm8zx4:$R3),
819 mnemonic#"\t$R1, $BD2, $R3", []>,
820 Requires<[FeatureLoadStoreOnCond]> {
821 let mayLoad = 1;
822 let AccessBytes = bytes;
823 let Constraints = "$R1 = $R1src";
824 let DisableEncoding = "$R1src";
825}
826
827// Like CondUnaryRSY, but with a fixed CC mask.
828class FixedCondUnaryRSY<string mnemonic, bits<16> opcode,
829 RegisterOperand cls, bits<4> ccmask, bits<5> bytes,
830 AddressingMode mode = bdaddr20only>
831 : InstRSY<opcode, (outs cls:$R1), (ins cls:$R1src, mode:$BD2),
832 mnemonic#"\t$R1, $BD2", []>,
833 Requires<[FeatureLoadStoreOnCond]> {
834 let Constraints = "$R1 = $R1src";
835 let DisableEncoding = "$R1src";
836 let R3 = ccmask;
837 let mayLoad = 1;
838 let AccessBytes = bytes;
839}
840
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000841class UnaryRX<string mnemonic, bits<8> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000842 RegisterOperand cls, bits<5> bytes,
843 AddressingMode mode = bdxaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000844 : InstRX<opcode, (outs cls:$R1), (ins mode:$XBD2),
845 mnemonic#"\t$R1, $XBD2",
846 [(set cls:$R1, (operator mode:$XBD2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000847 let OpKey = mnemonic ## cls;
848 let OpType = "mem";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000849 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000850 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000851}
852
853class UnaryRXE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000854 RegisterOperand cls, bits<5> bytes>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000855 : InstRXE<opcode, (outs cls:$R1), (ins bdxaddr12only:$XBD2),
856 mnemonic#"\t$R1, $XBD2",
857 [(set cls:$R1, (operator bdxaddr12only:$XBD2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000858 let OpKey = mnemonic ## cls;
859 let OpType = "mem";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000860 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000861 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000862}
863
864class UnaryRXY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000865 RegisterOperand cls, bits<5> bytes,
866 AddressingMode mode = bdxaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000867 : InstRXY<opcode, (outs cls:$R1), (ins mode:$XBD2),
868 mnemonic#"\t$R1, $XBD2",
869 [(set cls:$R1, (operator mode:$XBD2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000870 let OpKey = mnemonic ## cls;
871 let OpType = "mem";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000872 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000873 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000874}
875
876multiclass UnaryRXPair<string mnemonic, bits<8> rxOpcode, bits<16> rxyOpcode,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000877 SDPatternOperator operator, RegisterOperand cls,
878 bits<5> bytes> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000879 let DispKey = mnemonic ## #cls in {
880 let DispSize = "12" in
Richard Sandiforded1fab62013-07-03 10:10:02 +0000881 def "" : UnaryRX<mnemonic, rxOpcode, operator, cls, bytes, bdxaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +0000882 let DispSize = "20" in
Richard Sandiforded1fab62013-07-03 10:10:02 +0000883 def Y : UnaryRXY<mnemonic#"y", rxyOpcode, operator, cls, bytes,
884 bdxaddr20pair>;
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000885 }
886}
887
888class BinaryRR<string mnemonic, bits<8> opcode, SDPatternOperator operator,
889 RegisterOperand cls1, RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000890 : InstRR<opcode, (outs cls1:$R1), (ins cls1:$R1src, cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +0000891 mnemonic#"r\t$R1, $R2",
Richard Sandifordd454ec02013-05-14 09:28:21 +0000892 [(set cls1:$R1, (operator cls1:$R1src, cls2:$R2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000893 let OpKey = mnemonic ## cls1;
894 let OpType = "reg";
Richard Sandifordd454ec02013-05-14 09:28:21 +0000895 let Constraints = "$R1 = $R1src";
896 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000897}
898
899class BinaryRRE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
900 RegisterOperand cls1, RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000901 : InstRRE<opcode, (outs cls1:$R1), (ins cls1:$R1src, cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +0000902 mnemonic#"r\t$R1, $R2",
Richard Sandifordd454ec02013-05-14 09:28:21 +0000903 [(set cls1:$R1, (operator cls1:$R1src, cls2:$R2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000904 let OpKey = mnemonic ## cls1;
905 let OpType = "reg";
Richard Sandifordd454ec02013-05-14 09:28:21 +0000906 let Constraints = "$R1 = $R1src";
907 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000908}
909
Richard Sandifordd454ec02013-05-14 09:28:21 +0000910class BinaryRRF<string mnemonic, bits<16> opcode, SDPatternOperator operator,
911 RegisterOperand cls1, RegisterOperand cls2>
912 : InstRRF<opcode, (outs cls1:$R1), (ins cls1:$R3, cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +0000913 mnemonic#"r\t$R1, $R3, $R2",
914 [(set cls1:$R1, (operator cls1:$R3, cls2:$R2))]> {
915 let OpKey = mnemonic ## cls1;
916 let OpType = "reg";
Richard Sandiford8e92c382013-08-21 08:58:08 +0000917 let R4 = 0;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000918}
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000919
Richard Sandiford0175b4a2013-07-19 16:21:55 +0000920class BinaryRRFK<string mnemonic, bits<16> opcode, SDPatternOperator operator,
921 RegisterOperand cls1, RegisterOperand cls2>
922 : InstRRF<opcode, (outs cls1:$R1), (ins cls1:$R2, cls2:$R3),
923 mnemonic#"rk\t$R1, $R2, $R3",
Richard Sandiford8e92c382013-08-21 08:58:08 +0000924 [(set cls1:$R1, (operator cls1:$R2, cls2:$R3))]> {
925 let R4 = 0;
926}
Richard Sandiford0175b4a2013-07-19 16:21:55 +0000927
928multiclass BinaryRRAndK<string mnemonic, bits<8> opcode1, bits<16> opcode2,
929 SDPatternOperator operator, RegisterOperand cls1,
930 RegisterOperand cls2> {
931 let NumOpsKey = mnemonic in {
932 let NumOpsValue = "3" in
933 def K : BinaryRRFK<mnemonic, opcode2, null_frag, cls1, cls2>,
934 Requires<[FeatureDistinctOps]>;
935 let NumOpsValue = "2", isConvertibleToThreeAddress = 1 in
936 def "" : BinaryRR<mnemonic, opcode1, operator, cls1, cls2>;
937 }
938}
939
Richard Sandifordc57e5862013-07-19 16:24:22 +0000940multiclass BinaryRREAndK<string mnemonic, bits<16> opcode1, bits<16> opcode2,
941 SDPatternOperator operator, RegisterOperand cls1,
942 RegisterOperand cls2> {
943 let NumOpsKey = mnemonic in {
944 let NumOpsValue = "3" in
945 def K : BinaryRRFK<mnemonic, opcode2, null_frag, cls1, cls2>,
946 Requires<[FeatureDistinctOps]>;
947 let NumOpsValue = "2", isConvertibleToThreeAddress = 1 in
948 def "" : BinaryRRE<mnemonic, opcode1, operator, cls1, cls2>;
949 }
950}
951
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000952class BinaryRI<string mnemonic, bits<12> opcode, SDPatternOperator operator,
953 RegisterOperand cls, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000954 : InstRI<opcode, (outs cls:$R1), (ins cls:$R1src, imm:$I2),
955 mnemonic#"\t$R1, $I2",
956 [(set cls:$R1, (operator cls:$R1src, imm:$I2))]> {
957 let Constraints = "$R1 = $R1src";
958 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000959}
960
Richard Sandiford7d6a4532013-07-19 16:32:12 +0000961class BinaryRIE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
962 RegisterOperand cls, Immediate imm>
963 : InstRIEd<opcode, (outs cls:$R1), (ins cls:$R3, imm:$I2),
964 mnemonic#"\t$R1, $R3, $I2",
965 [(set cls:$R1, (operator cls:$R3, imm:$I2))]>;
966
967multiclass BinaryRIAndK<string mnemonic, bits<12> opcode1, bits<16> opcode2,
968 SDPatternOperator operator, RegisterOperand cls,
969 Immediate imm> {
970 let NumOpsKey = mnemonic in {
971 let NumOpsValue = "3" in
972 def K : BinaryRIE<mnemonic##"k", opcode2, null_frag, cls, imm>,
973 Requires<[FeatureDistinctOps]>;
974 let NumOpsValue = "2", isConvertibleToThreeAddress = 1 in
975 def "" : BinaryRI<mnemonic, opcode1, operator, cls, imm>;
976 }
977}
978
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000979class BinaryRIL<string mnemonic, bits<12> opcode, SDPatternOperator operator,
980 RegisterOperand cls, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000981 : InstRIL<opcode, (outs cls:$R1), (ins cls:$R1src, imm:$I2),
982 mnemonic#"\t$R1, $I2",
983 [(set cls:$R1, (operator cls:$R1src, imm:$I2))]> {
984 let Constraints = "$R1 = $R1src";
985 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000986}
987
988class BinaryRX<string mnemonic, bits<8> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +0000989 RegisterOperand cls, SDPatternOperator load, bits<5> bytes,
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000990 AddressingMode mode = bdxaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +0000991 : InstRX<opcode, (outs cls:$R1), (ins cls:$R1src, mode:$XBD2),
992 mnemonic#"\t$R1, $XBD2",
993 [(set cls:$R1, (operator cls:$R1src, (load mode:$XBD2)))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +0000994 let OpKey = mnemonic ## cls;
995 let OpType = "mem";
Richard Sandifordd454ec02013-05-14 09:28:21 +0000996 let Constraints = "$R1 = $R1src";
997 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000998 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +0000999 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001000}
1001
1002class BinaryRXE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001003 RegisterOperand cls, SDPatternOperator load, bits<5> bytes>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001004 : InstRXE<opcode, (outs cls:$R1), (ins cls:$R1src, bdxaddr12only:$XBD2),
1005 mnemonic#"\t$R1, $XBD2",
1006 [(set cls:$R1, (operator cls:$R1src,
1007 (load bdxaddr12only:$XBD2)))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001008 let OpKey = mnemonic ## cls;
1009 let OpType = "mem";
Richard Sandifordd454ec02013-05-14 09:28:21 +00001010 let Constraints = "$R1 = $R1src";
1011 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001012 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001013 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001014}
1015
1016class BinaryRXY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001017 RegisterOperand cls, SDPatternOperator load, bits<5> bytes,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001018 AddressingMode mode = bdxaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001019 : InstRXY<opcode, (outs cls:$R1), (ins cls:$R1src, mode:$XBD2),
1020 mnemonic#"\t$R1, $XBD2",
1021 [(set cls:$R1, (operator cls:$R1src, (load mode:$XBD2)))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001022 let OpKey = mnemonic ## cls;
1023 let OpType = "mem";
Richard Sandifordd454ec02013-05-14 09:28:21 +00001024 let Constraints = "$R1 = $R1src";
1025 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001026 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001027 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001028}
1029
1030multiclass BinaryRXPair<string mnemonic, bits<8> rxOpcode, bits<16> rxyOpcode,
1031 SDPatternOperator operator, RegisterOperand cls,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001032 SDPatternOperator load, bits<5> bytes> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001033 let DispKey = mnemonic ## #cls in {
1034 let DispSize = "12" in
Richard Sandiforded1fab62013-07-03 10:10:02 +00001035 def "" : BinaryRX<mnemonic, rxOpcode, operator, cls, load, bytes,
1036 bdxaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001037 let DispSize = "20" in
Richard Sandiforded1fab62013-07-03 10:10:02 +00001038 def Y : BinaryRXY<mnemonic#"y", rxyOpcode, operator, cls, load, bytes,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001039 bdxaddr20pair>;
1040 }
1041}
1042
1043class BinarySI<string mnemonic, bits<8> opcode, SDPatternOperator operator,
1044 Operand imm, AddressingMode mode = bdaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001045 : InstSI<opcode, (outs), (ins mode:$BD1, imm:$I2),
1046 mnemonic#"\t$BD1, $I2",
1047 [(store (operator (load mode:$BD1), imm:$I2), mode:$BD1)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001048 let mayLoad = 1;
1049 let mayStore = 1;
1050}
1051
1052class BinarySIY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
1053 Operand imm, AddressingMode mode = bdaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001054 : InstSIY<opcode, (outs), (ins mode:$BD1, imm:$I2),
1055 mnemonic#"\t$BD1, $I2",
1056 [(store (operator (load mode:$BD1), imm:$I2), mode:$BD1)]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001057 let mayLoad = 1;
1058 let mayStore = 1;
1059}
1060
1061multiclass BinarySIPair<string mnemonic, bits<8> siOpcode,
1062 bits<16> siyOpcode, SDPatternOperator operator,
1063 Operand imm> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001064 let DispKey = mnemonic ## #cls in {
1065 let DispSize = "12" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001066 def "" : BinarySI<mnemonic, siOpcode, operator, imm, bdaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001067 let DispSize = "20" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001068 def Y : BinarySIY<mnemonic#"y", siyOpcode, operator, imm, bdaddr20pair>;
1069 }
1070}
1071
1072class ShiftRS<string mnemonic, bits<8> opcode, SDPatternOperator operator,
Richard Sandiford27d1cfe2013-07-19 16:09:03 +00001073 RegisterOperand cls>
1074 : InstRS<opcode, (outs cls:$R1), (ins cls:$R1src, shift12only:$BD2),
Richard Sandifordd454ec02013-05-14 09:28:21 +00001075 mnemonic#"\t$R1, $BD2",
Richard Sandiford27d1cfe2013-07-19 16:09:03 +00001076 [(set cls:$R1, (operator cls:$R1src, shift12only:$BD2))]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001077 let R3 = 0;
Richard Sandifordd454ec02013-05-14 09:28:21 +00001078 let Constraints = "$R1 = $R1src";
1079 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001080}
1081
1082class ShiftRSY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiford27d1cfe2013-07-19 16:09:03 +00001083 RegisterOperand cls>
1084 : InstRSY<opcode, (outs cls:$R1), (ins cls:$R3, shift20only:$BD2),
Richard Sandifordd454ec02013-05-14 09:28:21 +00001085 mnemonic#"\t$R1, $R3, $BD2",
Richard Sandiford27d1cfe2013-07-19 16:09:03 +00001086 [(set cls:$R1, (operator cls:$R3, shift20only:$BD2))]>;
1087
1088multiclass ShiftRSAndK<string mnemonic, bits<8> opcode1, bits<16> opcode2,
1089 SDPatternOperator operator, RegisterOperand cls> {
Richard Sandifordff6c5a52013-07-19 16:12:08 +00001090 let NumOpsKey = mnemonic in {
1091 let NumOpsValue = "3" in
1092 def K : ShiftRSY<mnemonic##"k", opcode2, null_frag, cls>,
1093 Requires<[FeatureDistinctOps]>;
1094 let NumOpsValue = "2", isConvertibleToThreeAddress = 1 in
1095 def "" : ShiftRS<mnemonic, opcode1, operator, cls>;
1096 }
Richard Sandiford27d1cfe2013-07-19 16:09:03 +00001097}
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001098
1099class CompareRR<string mnemonic, bits<8> opcode, SDPatternOperator operator,
1100 RegisterOperand cls1, RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001101 : InstRR<opcode, (outs), (ins cls1:$R1, cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +00001102 mnemonic#"r\t$R1, $R2",
1103 [(operator cls1:$R1, cls2:$R2)]> {
1104 let OpKey = mnemonic ## cls1;
1105 let OpType = "reg";
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001106 let isCompare = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001107}
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001108
1109class CompareRRE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
1110 RegisterOperand cls1, RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001111 : InstRRE<opcode, (outs), (ins cls1:$R1, cls2:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +00001112 mnemonic#"r\t$R1, $R2",
1113 [(operator cls1:$R1, cls2:$R2)]> {
1114 let OpKey = mnemonic ## cls1;
1115 let OpType = "reg";
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001116 let isCompare = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001117}
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001118
1119class CompareRI<string mnemonic, bits<12> opcode, SDPatternOperator operator,
1120 RegisterOperand cls, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001121 : InstRI<opcode, (outs), (ins cls:$R1, imm:$I2),
1122 mnemonic#"\t$R1, $I2",
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001123 [(operator cls:$R1, imm:$I2)]> {
1124 let isCompare = 1;
1125}
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001126
1127class CompareRIL<string mnemonic, bits<12> opcode, SDPatternOperator operator,
1128 RegisterOperand cls, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001129 : InstRIL<opcode, (outs), (ins cls:$R1, imm:$I2),
1130 mnemonic#"\t$R1, $I2",
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001131 [(operator cls:$R1, imm:$I2)]> {
1132 let isCompare = 1;
1133}
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001134
1135class CompareRILPC<string mnemonic, bits<12> opcode, SDPatternOperator operator,
1136 RegisterOperand cls, SDPatternOperator load>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001137 : InstRIL<opcode, (outs), (ins cls:$R1, pcrel32:$I2),
1138 mnemonic#"\t$R1, $I2",
1139 [(operator cls:$R1, (load pcrel32:$I2))]> {
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001140 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001141 let mayLoad = 1;
1142 // We want PC-relative addresses to be tried ahead of BD and BDX addresses.
1143 // However, BDXs have two extra operands and are therefore 6 units more
1144 // complex.
1145 let AddedComplexity = 7;
1146}
1147
1148class CompareRX<string mnemonic, bits<8> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001149 RegisterOperand cls, SDPatternOperator load, bits<5> bytes,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001150 AddressingMode mode = bdxaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001151 : InstRX<opcode, (outs), (ins cls:$R1, mode:$XBD2),
1152 mnemonic#"\t$R1, $XBD2",
1153 [(operator cls:$R1, (load mode:$XBD2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001154 let OpKey = mnemonic ## cls;
1155 let OpType = "mem";
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001156 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001157 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001158 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001159}
1160
1161class CompareRXE<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001162 RegisterOperand cls, SDPatternOperator load, bits<5> bytes>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001163 : InstRXE<opcode, (outs), (ins cls:$R1, bdxaddr12only:$XBD2),
1164 mnemonic#"\t$R1, $XBD2",
1165 [(operator cls:$R1, (load bdxaddr12only:$XBD2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001166 let OpKey = mnemonic ## cls;
1167 let OpType = "mem";
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001168 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001169 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001170 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001171}
1172
1173class CompareRXY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001174 RegisterOperand cls, SDPatternOperator load, bits<5> bytes,
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001175 AddressingMode mode = bdxaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001176 : InstRXY<opcode, (outs), (ins cls:$R1, mode:$XBD2),
1177 mnemonic#"\t$R1, $XBD2",
1178 [(operator cls:$R1, (load mode:$XBD2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001179 let OpKey = mnemonic ## cls;
1180 let OpType = "mem";
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001181 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001182 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001183 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001184}
1185
1186multiclass CompareRXPair<string mnemonic, bits<8> rxOpcode, bits<16> rxyOpcode,
1187 SDPatternOperator operator, RegisterOperand cls,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001188 SDPatternOperator load, bits<5> bytes> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001189 let DispKey = mnemonic ## #cls in {
1190 let DispSize = "12" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001191 def "" : CompareRX<mnemonic, rxOpcode, operator, cls,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001192 load, bytes, bdxaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001193 let DispSize = "20" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001194 def Y : CompareRXY<mnemonic#"y", rxyOpcode, operator, cls,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001195 load, bytes, bdxaddr20pair>;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001196 }
1197}
1198
1199class CompareSI<string mnemonic, bits<8> opcode, SDPatternOperator operator,
1200 SDPatternOperator load, Immediate imm,
1201 AddressingMode mode = bdaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001202 : InstSI<opcode, (outs), (ins mode:$BD1, imm:$I2),
1203 mnemonic#"\t$BD1, $I2",
1204 [(operator (load mode:$BD1), imm:$I2)]> {
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001205 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001206 let mayLoad = 1;
1207}
1208
1209class CompareSIL<string mnemonic, bits<16> opcode, SDPatternOperator operator,
1210 SDPatternOperator load, Immediate imm>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001211 : InstSIL<opcode, (outs), (ins bdaddr12only:$BD1, imm:$I2),
1212 mnemonic#"\t$BD1, $I2",
1213 [(operator (load bdaddr12only:$BD1), imm:$I2)]> {
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001214 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001215 let mayLoad = 1;
1216}
1217
1218class CompareSIY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
1219 SDPatternOperator load, Immediate imm,
1220 AddressingMode mode = bdaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001221 : InstSIY<opcode, (outs), (ins mode:$BD1, imm:$I2),
1222 mnemonic#"\t$BD1, $I2",
1223 [(operator (load mode:$BD1), imm:$I2)]> {
Richard Sandifordc3f85d72013-07-25 09:34:38 +00001224 let isCompare = 1;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001225 let mayLoad = 1;
1226}
1227
1228multiclass CompareSIPair<string mnemonic, bits<8> siOpcode, bits<16> siyOpcode,
1229 SDPatternOperator operator, SDPatternOperator load,
1230 Immediate imm> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001231 let DispKey = mnemonic in {
1232 let DispSize = "12" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001233 def "" : CompareSI<mnemonic, siOpcode, operator, load, imm, bdaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001234 let DispSize = "20" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001235 def Y : CompareSIY<mnemonic#"y", siyOpcode, operator, load, imm,
1236 bdaddr20pair>;
1237 }
1238}
1239
1240class TernaryRRD<string mnemonic, bits<16> opcode,
1241 SDPatternOperator operator, RegisterOperand cls>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001242 : InstRRD<opcode, (outs cls:$R1), (ins cls:$R1src, cls:$R3, cls:$R2),
Richard Sandiforded1fab62013-07-03 10:10:02 +00001243 mnemonic#"r\t$R1, $R3, $R2",
Richard Sandifordd454ec02013-05-14 09:28:21 +00001244 [(set cls:$R1, (operator cls:$R1src, cls:$R3, cls:$R2))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001245 let OpKey = mnemonic ## cls;
1246 let OpType = "reg";
Richard Sandifordd454ec02013-05-14 09:28:21 +00001247 let Constraints = "$R1 = $R1src";
1248 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001249}
1250
1251class TernaryRXF<string mnemonic, bits<16> opcode, SDPatternOperator operator,
Richard Sandiforded1fab62013-07-03 10:10:02 +00001252 RegisterOperand cls, SDPatternOperator load, bits<5> bytes>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001253 : InstRXF<opcode, (outs cls:$R1),
1254 (ins cls:$R1src, cls:$R3, bdxaddr12only:$XBD2),
1255 mnemonic#"\t$R1, $R3, $XBD2",
1256 [(set cls:$R1, (operator cls:$R1src, cls:$R3,
1257 (load bdxaddr12only:$XBD2)))]> {
Richard Sandiforded1fab62013-07-03 10:10:02 +00001258 let OpKey = mnemonic ## cls;
1259 let OpType = "mem";
Richard Sandifordd454ec02013-05-14 09:28:21 +00001260 let Constraints = "$R1 = $R1src";
1261 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001262 let mayLoad = 1;
Richard Sandiforded1fab62013-07-03 10:10:02 +00001263 let AccessBytes = bytes;
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001264}
1265
1266class CmpSwapRS<string mnemonic, bits<8> opcode, SDPatternOperator operator,
1267 RegisterOperand cls, AddressingMode mode = bdaddr12only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001268 : InstRS<opcode, (outs cls:$R1), (ins cls:$R1src, cls:$R3, mode:$BD2),
1269 mnemonic#"\t$R1, $R3, $BD2",
1270 [(set cls:$R1, (operator mode:$BD2, cls:$R1src, cls:$R3))]> {
1271 let Constraints = "$R1 = $R1src";
1272 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001273 let mayLoad = 1;
1274 let mayStore = 1;
1275}
1276
1277class CmpSwapRSY<string mnemonic, bits<16> opcode, SDPatternOperator operator,
1278 RegisterOperand cls, AddressingMode mode = bdaddr20only>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001279 : InstRSY<opcode, (outs cls:$R1), (ins cls:$R1src, cls:$R3, mode:$BD2),
1280 mnemonic#"\t$R1, $R3, $BD2",
1281 [(set cls:$R1, (operator mode:$BD2, cls:$R1src, cls:$R3))]> {
1282 let Constraints = "$R1 = $R1src";
1283 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001284 let mayLoad = 1;
1285 let mayStore = 1;
1286}
1287
1288multiclass CmpSwapRSPair<string mnemonic, bits<8> rsOpcode, bits<16> rsyOpcode,
1289 SDPatternOperator operator, RegisterOperand cls> {
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001290 let DispKey = mnemonic ## #cls in {
1291 let DispSize = "12" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001292 def "" : CmpSwapRS<mnemonic, rsOpcode, operator, cls, bdaddr12pair>;
Richard Sandiforddf313ff2013-07-03 09:19:58 +00001293 let DispSize = "20" in
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001294 def Y : CmpSwapRSY<mnemonic#"y", rsyOpcode, operator, cls, bdaddr20pair>;
1295 }
1296}
1297
1298class RotateSelectRIEf<string mnemonic, bits<16> opcode, RegisterOperand cls1,
1299 RegisterOperand cls2>
Richard Sandifordd454ec02013-05-14 09:28:21 +00001300 : InstRIEf<opcode, (outs cls1:$R1),
Richard Sandiford67ddcd62013-07-11 08:37:13 +00001301 (ins cls1:$R1src, cls2:$R2, uimm8:$I3, uimm8:$I4, uimm8zx6:$I5),
Richard Sandifordd454ec02013-05-14 09:28:21 +00001302 mnemonic#"\t$R1, $R2, $I3, $I4, $I5", []> {
1303 let Constraints = "$R1 = $R1src";
1304 let DisableEncoding = "$R1src";
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001305}
1306
Richard Sandiford9f11bc12013-08-07 11:03:34 +00001307// A floating-point load-and test operation. Create both a normal unary
1308// operation and one that acts as a comparison against zero.
1309multiclass LoadAndTestRRE<string mnemonic, bits<16> opcode,
1310 RegisterOperand cls> {
1311 def "" : UnaryRRE<mnemonic, opcode, null_frag, cls, cls>;
1312 let isCodeGenOnly = 1 in
1313 def Compare : CompareRRE<mnemonic, opcode, null_frag, cls, cls>;
1314}
1315
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001316//===----------------------------------------------------------------------===//
1317// Pseudo instructions
1318//===----------------------------------------------------------------------===//
1319//
1320// Convenience instructions that get lowered to real instructions
1321// by either SystemZTargetLowering::EmitInstrWithCustomInserter()
1322// or SystemZInstrInfo::expandPostRAPseudo().
1323//
1324//===----------------------------------------------------------------------===//
1325
1326class Pseudo<dag outs, dag ins, list<dag> pattern>
1327 : InstSystemZ<0, outs, ins, "", pattern> {
1328 let isPseudo = 1;
1329 let isCodeGenOnly = 1;
1330}
1331
1332// Implements "$dst = $cc & (8 >> CC) ? $src1 : $src2", where CC is
1333// the value of the PSW's 2-bit condition code field.
1334class SelectWrapper<RegisterOperand cls>
Richard Sandiford3d768e32013-07-31 12:30:20 +00001335 : Pseudo<(outs cls:$dst),
1336 (ins cls:$src1, cls:$src2, uimm8zx4:$valid, uimm8zx4:$cc),
1337 [(set cls:$dst, (z_select_ccmask cls:$src1, cls:$src2,
1338 uimm8zx4:$valid, uimm8zx4:$cc))]> {
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001339 let usesCustomInserter = 1;
1340 // Although the instructions used by these nodes do not in themselves
Richard Sandiford14a44492013-05-22 13:38:45 +00001341 // change CC, the insertion requires new blocks, and CC cannot be live
1342 // across them.
1343 let Defs = [CC];
1344 let Uses = [CC];
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001345}
1346
Richard Sandifordb86a8342013-06-27 09:27:40 +00001347// Stores $new to $addr if $cc is true ("" case) or false (Inv case).
1348multiclass CondStores<RegisterOperand cls, SDPatternOperator store,
1349 SDPatternOperator load, AddressingMode mode> {
1350 let Defs = [CC], Uses = [CC], usesCustomInserter = 1 in {
Richard Sandiford3d768e32013-07-31 12:30:20 +00001351 def "" : Pseudo<(outs),
1352 (ins cls:$new, mode:$addr, uimm8zx4:$valid, uimm8zx4:$cc),
Richard Sandifordb86a8342013-06-27 09:27:40 +00001353 [(store (z_select_ccmask cls:$new, (load mode:$addr),
Richard Sandiford3d768e32013-07-31 12:30:20 +00001354 uimm8zx4:$valid, uimm8zx4:$cc),
1355 mode:$addr)]>;
1356 def Inv : Pseudo<(outs),
1357 (ins cls:$new, mode:$addr, uimm8zx4:$valid, uimm8zx4:$cc),
Richard Sandifordb86a8342013-06-27 09:27:40 +00001358 [(store (z_select_ccmask (load mode:$addr), cls:$new,
Richard Sandiford3d768e32013-07-31 12:30:20 +00001359 uimm8zx4:$valid, uimm8zx4:$cc),
1360 mode:$addr)]>;
Richard Sandifordb86a8342013-06-27 09:27:40 +00001361 }
1362}
1363
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001364// OPERATOR is ATOMIC_SWAP or an ATOMIC_LOAD_* operation. PAT and OPERAND
1365// describe the second (non-memory) operand.
1366class AtomicLoadBinary<SDPatternOperator operator, RegisterOperand cls,
1367 dag pat, DAGOperand operand>
1368 : Pseudo<(outs cls:$dst), (ins bdaddr20only:$ptr, operand:$src2),
1369 [(set cls:$dst, (operator bdaddr20only:$ptr, pat))]> {
Richard Sandiford14a44492013-05-22 13:38:45 +00001370 let Defs = [CC];
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001371 let Has20BitOffset = 1;
1372 let mayLoad = 1;
1373 let mayStore = 1;
1374 let usesCustomInserter = 1;
1375}
1376
1377// Specializations of AtomicLoadWBinary.
1378class AtomicLoadBinaryReg32<SDPatternOperator operator>
1379 : AtomicLoadBinary<operator, GR32, (i32 GR32:$src2), GR32>;
1380class AtomicLoadBinaryImm32<SDPatternOperator operator, Immediate imm>
1381 : AtomicLoadBinary<operator, GR32, (i32 imm:$src2), imm>;
1382class AtomicLoadBinaryReg64<SDPatternOperator operator>
1383 : AtomicLoadBinary<operator, GR64, (i64 GR64:$src2), GR64>;
1384class AtomicLoadBinaryImm64<SDPatternOperator operator, Immediate imm>
1385 : AtomicLoadBinary<operator, GR64, (i64 imm:$src2), imm>;
1386
1387// OPERATOR is ATOMIC_SWAPW or an ATOMIC_LOADW_* operation. PAT and OPERAND
1388// describe the second (non-memory) operand.
1389class AtomicLoadWBinary<SDPatternOperator operator, dag pat,
1390 DAGOperand operand>
1391 : Pseudo<(outs GR32:$dst),
1392 (ins bdaddr20only:$ptr, operand:$src2, ADDR32:$bitshift,
1393 ADDR32:$negbitshift, uimm32:$bitsize),
1394 [(set GR32:$dst, (operator bdaddr20only:$ptr, pat, ADDR32:$bitshift,
1395 ADDR32:$negbitshift, uimm32:$bitsize))]> {
Richard Sandiford14a44492013-05-22 13:38:45 +00001396 let Defs = [CC];
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001397 let Has20BitOffset = 1;
1398 let mayLoad = 1;
1399 let mayStore = 1;
1400 let usesCustomInserter = 1;
1401}
1402
1403// Specializations of AtomicLoadWBinary.
1404class AtomicLoadWBinaryReg<SDPatternOperator operator>
1405 : AtomicLoadWBinary<operator, (i32 GR32:$src2), GR32>;
1406class AtomicLoadWBinaryImm<SDPatternOperator operator, Immediate imm>
1407 : AtomicLoadWBinary<operator, (i32 imm:$src2), imm>;
Richard Sandiford761703a2013-08-12 10:17:33 +00001408
1409// Define an instruction that operates on two fixed-length blocks of memory.
1410// The real instruction uses a bdladdr12onlylen8 for the first operand and a
1411// bdaddr12only for the second, with the length of the second operand being
1412// implicitly the same as the first. This arrangement matches the underlying
1413// assembly syntax. However, for instruction selection it's easier to have
1414// two normal bdaddr12onlys and a separate length operand, so define a pseudo
1415// instruction for that too.
1416multiclass MemorySS<string mnemonic, bits<8> opcode,
1417 SDPatternOperator operator> {
1418 def "" : InstSS<opcode, (outs), (ins bdladdr12onlylen8:$BDL1,
1419 bdaddr12only:$BD2),
1420 mnemonic##"\t$BDL1, $BD2", []>;
1421 let usesCustomInserter = 1 in
1422 def Wrapper : Pseudo<(outs), (ins bdaddr12only:$dest, bdaddr12only:$src,
1423 imm32len8:$length),
1424 [(operator bdaddr12only:$dest, bdaddr12only:$src,
1425 imm32len8:$length)]>;
1426}
Richard Sandifordca232712013-08-16 11:21:54 +00001427
1428// Define an instruction that operates on two strings, both terminated
1429// by the character in R0. The instruction processes a CPU-determinated
1430// number of bytes at a time and sets CC to 3 if the instruction needs
1431// to be repeated. Also define a pseudo instruction that represents
1432// the full loop (the main instruction plus the branch on CC==3).
1433multiclass StringRRE<string mnemonic, bits<16> opcode,
1434 SDPatternOperator operator> {
1435 def "" : InstRRE<opcode, (outs GR64:$R1, GR64:$R2),
1436 (ins GR64:$R1src, GR64:$R2src),
1437 mnemonic#"\t$R1, $R2", []> {
1438 let Constraints = "$R1 = $R1src, $R2 = $R2src";
1439 let DisableEncoding = "$R1src, $R2src";
1440 }
1441 let usesCustomInserter = 1 in
1442 def Loop : Pseudo<(outs GR64:$end),
1443 (ins GR64:$start1, GR64:$start2, GR32:$char),
1444 [(set GR64:$end, (operator GR64:$start1, GR64:$start2,
1445 GR32:$char))]>;
1446}