ARMInstrFormats.td revision 195098
1//===- ARMInstrFormats.td - ARM 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//
12// ARM Instruction Format Definitions.
13//
14
15// Format specifies the encoding used by the instruction.  This is part of the
16// ad-hoc solution used to emit machine instruction encodings by our machine
17// code emitter.
18class Format<bits<5> val> {
19  bits<5> Value = val;
20}
21
22def Pseudo        : Format<0>;
23def MulFrm        : Format<1>;
24def BrFrm         : Format<2>;
25def BrMiscFrm     : Format<3>;
26
27def DPFrm         : Format<4>;
28def DPSoRegFrm    : Format<5>;
29
30def LdFrm         : Format<6>;
31def StFrm         : Format<7>;
32def LdMiscFrm     : Format<8>;
33def StMiscFrm     : Format<9>;
34def LdStMulFrm    : Format<10>;
35
36def ArithMiscFrm  : Format<11>;
37def ExtFrm        : Format<12>;
38
39def VFPUnaryFrm   : Format<13>;
40def VFPBinaryFrm  : Format<14>;
41def VFPConv1Frm   : Format<15>;
42def VFPConv2Frm   : Format<16>;
43def VFPConv3Frm   : Format<17>;
44def VFPConv4Frm   : Format<18>;
45def VFPConv5Frm   : Format<19>;
46def VFPLdStFrm    : Format<20>;
47def VFPLdStMulFrm : Format<21>;
48def VFPMiscFrm    : Format<22>;
49
50def ThumbFrm      : Format<23>;
51
52def NEONFrm       : Format<24>;
53def NEONGetLnFrm  : Format<25>;
54def NEONSetLnFrm  : Format<26>;
55def NEONDupFrm    : Format<27>;
56
57// Misc flag for data processing instructions that indicates whether
58// the instruction has a Rn register operand.
59class UnaryDP  { bit isUnaryDataProc = 1; }
60
61//===----------------------------------------------------------------------===//
62
63// ARM Instruction templates.
64//
65
66class InstARM<AddrMode am, SizeFlagVal sz, IndexMode im,
67              Format f, string cstr>
68  : Instruction {
69  field bits<32> Inst;
70
71  let Namespace = "ARM";
72
73  // TSFlagsFields
74  AddrMode AM = am;
75  bits<4> AddrModeBits = AM.Value;
76  
77  SizeFlagVal SZ = sz;
78  bits<3> SizeFlag = SZ.Value;
79
80  IndexMode IM = im;
81  bits<2> IndexModeBits = IM.Value;
82  
83  Format F = f;
84  bits<5> Form = F.Value;
85
86  //
87  // Attributes specific to ARM instructions...
88  //
89  bit isUnaryDataProc = 0;
90  
91  let Constraints = cstr;
92}
93
94class PseudoInst<dag oops, dag iops, string asm, list<dag> pattern>
95  : InstARM<AddrModeNone, SizeSpecial, IndexModeNone, Pseudo, ""> {
96  let OutOperandList = oops;
97  let InOperandList = iops;
98  let AsmString   = asm;
99  let Pattern = pattern;
100}
101
102// Almost all ARM instructions are predicable.
103class I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
104        IndexMode im, Format f, string opc, string asm, string cstr,
105        list<dag> pattern>
106  : InstARM<am, sz, im, f, cstr> {
107  let OutOperandList = oops;
108  let InOperandList = !con(iops, (ops pred:$p));
109  let AsmString   = !strconcat(opc, !strconcat("${p}", asm));
110  let Pattern = pattern;
111  list<Predicate> Predicates = [IsARM];
112}
113
114// Same as I except it can optionally modify CPSR. Note it's modeled as
115// an input operand since by default it's a zero register. It will
116// become an implicit def once it's "flipped".
117class sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
118         IndexMode im, Format f, string opc, string asm, string cstr,
119         list<dag> pattern>
120  : InstARM<am, sz, im, f, cstr> {
121  let OutOperandList = oops;
122  let InOperandList = !con(iops, (ops pred:$p, cc_out:$s));
123  let AsmString   = !strconcat(opc, !strconcat("${p}${s}", asm));
124  let Pattern = pattern;
125  list<Predicate> Predicates = [IsARM];
126}
127
128// Special cases
129class XI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
130         IndexMode im, Format f, string asm, string cstr, list<dag> pattern>
131  : InstARM<am, sz, im, f, cstr> {
132  let OutOperandList = oops;
133  let InOperandList = iops;
134  let AsmString   = asm;
135  let Pattern = pattern;
136  list<Predicate> Predicates = [IsARM];
137}
138
139class AI<dag oops, dag iops, Format f, string opc,
140         string asm, list<dag> pattern>
141  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, opc,
142      asm, "", pattern>;
143class AsI<dag oops, dag iops, Format f, string opc,
144          string asm, list<dag> pattern>
145  : sI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, opc,
146       asm, "", pattern>;
147class AXI<dag oops, dag iops, Format f, string asm,
148          list<dag> pattern>
149  : XI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, asm,
150       "", pattern>;
151
152// Ctrl flow instructions
153class ABI<bits<4> opcod, dag oops, dag iops, string opc,
154         string asm, list<dag> pattern>
155  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, BrFrm, opc,
156      asm, "", pattern> {
157  let Inst{27-24} = opcod;
158}
159class ABXI<bits<4> opcod, dag oops, dag iops, string asm, list<dag> pattern>
160  : XI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, BrFrm, asm,
161       "", pattern> {
162  let Inst{27-24} = opcod;
163}
164class ABXIx2<dag oops, dag iops, string asm, list<dag> pattern>
165  : XI<oops, iops, AddrModeNone, Size8Bytes, IndexModeNone, BrMiscFrm, asm,
166       "", pattern>;
167
168// BR_JT instructions
169class JTI<dag oops, dag iops, string asm, list<dag> pattern>
170  : XI<oops, iops, AddrModeNone, SizeSpecial, IndexModeNone, BrMiscFrm,
171       asm, "", pattern>;
172
173// addrmode1 instructions
174class AI1<bits<4> opcod, dag oops, dag iops, Format f, string opc,
175          string asm, list<dag> pattern>
176  : I<oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, opc,
177      asm, "", pattern> {
178  let Inst{24-21} = opcod;
179  let Inst{27-26} = {0,0};
180}
181class AsI1<bits<4> opcod, dag oops, dag iops, Format f, string opc,
182           string asm, list<dag> pattern>
183  : sI<oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, opc,
184       asm, "", pattern> {
185  let Inst{24-21} = opcod;
186  let Inst{27-26} = {0,0};
187}
188class AXI1<bits<4> opcod, dag oops, dag iops, Format f, string asm,
189           list<dag> pattern>
190  : XI<oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, asm,
191       "", pattern> {
192  let Inst{24-21} = opcod;
193  let Inst{27-26} = {0,0};
194}
195class AI1x2<dag oops, dag iops, Format f, string opc,
196            string asm, list<dag> pattern>
197  : I<oops, iops, AddrMode1, Size8Bytes, IndexModeNone, f, opc,
198      asm, "", pattern>;
199
200
201// addrmode2 loads and stores
202class AI2<dag oops, dag iops, Format f, string opc,
203          string asm, list<dag> pattern>
204  : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, opc,
205      asm, "", pattern> {
206  let Inst{27-26} = {0,1};
207}
208
209// loads
210class AI2ldw<dag oops, dag iops, Format f, string opc,
211          string asm, list<dag> pattern>
212  : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, opc,
213      asm, "", pattern> {
214  let Inst{20}    = 1; // L bit
215  let Inst{21}    = 0; // W bit
216  let Inst{22}    = 0; // B bit
217  let Inst{24}    = 1; // P bit
218  let Inst{27-26} = {0,1};
219}
220class AXI2ldw<dag oops, dag iops, Format f, string asm,
221           list<dag> pattern>
222  : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f,
223       asm, "", pattern> {
224  let Inst{20}    = 1; // L bit
225  let Inst{21}    = 0; // W bit
226  let Inst{22}    = 0; // B bit
227  let Inst{24}    = 1; // P bit
228  let Inst{27-26} = {0,1};
229}
230class AI2ldb<dag oops, dag iops, Format f, string opc,
231          string asm, list<dag> pattern>
232  : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, opc,
233      asm, "", pattern> {
234  let Inst{20}    = 1; // L bit
235  let Inst{21}    = 0; // W bit
236  let Inst{22}    = 1; // B bit
237  let Inst{24}    = 1; // P bit
238  let Inst{27-26} = {0,1};
239}
240class AXI2ldb<dag oops, dag iops, Format f, string asm,
241           list<dag> pattern>
242  : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f,
243       asm, "", pattern> {
244  let Inst{20}    = 1; // L bit
245  let Inst{21}    = 0; // W bit
246  let Inst{22}    = 1; // B bit
247  let Inst{24}    = 1; // P bit
248  let Inst{27-26} = {0,1};
249}
250
251// stores
252class AI2stw<dag oops, dag iops, Format f, string opc,
253          string asm, list<dag> pattern>
254  : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, opc,
255      asm, "", pattern> {
256  let Inst{20}    = 0; // L bit
257  let Inst{21}    = 0; // W bit
258  let Inst{22}    = 0; // B bit
259  let Inst{24}    = 1; // P bit
260  let Inst{27-26} = {0,1};
261}
262class AXI2stw<dag oops, dag iops, Format f, string asm,
263           list<dag> pattern>
264  : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f,
265       asm, "", pattern> {
266  let Inst{20}    = 0; // L bit
267  let Inst{21}    = 0; // W bit
268  let Inst{22}    = 0; // B bit
269  let Inst{24}    = 1; // P bit
270  let Inst{27-26} = {0,1};
271}
272class AI2stb<dag oops, dag iops, Format f, string opc,
273          string asm, list<dag> pattern>
274  : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, opc,
275      asm, "", pattern> {
276  let Inst{20}    = 0; // L bit
277  let Inst{21}    = 0; // W bit
278  let Inst{22}    = 1; // B bit
279  let Inst{24}    = 1; // P bit
280  let Inst{27-26} = {0,1};
281}
282class AXI2stb<dag oops, dag iops, Format f, string asm,
283           list<dag> pattern>
284  : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f,
285       asm, "", pattern> {
286  let Inst{20}    = 0; // L bit
287  let Inst{21}    = 0; // W bit
288  let Inst{22}    = 1; // B bit
289  let Inst{24}    = 1; // P bit
290  let Inst{27-26} = {0,1};
291}
292
293// Pre-indexed loads
294class AI2ldwpr<dag oops, dag iops, Format f, string opc,
295            string asm, string cstr, list<dag> pattern>
296  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePre, f, opc,
297      asm, cstr, pattern> {
298  let Inst{20}    = 1; // L bit
299  let Inst{21}    = 1; // W bit
300  let Inst{22}    = 0; // B bit
301  let Inst{24}    = 1; // P bit
302  let Inst{27-26} = {0,1};
303}
304class AI2ldbpr<dag oops, dag iops, Format f, string opc,
305            string asm, string cstr, list<dag> pattern>
306  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePre, f, opc,
307      asm, cstr, pattern> {
308  let Inst{20}    = 1; // L bit
309  let Inst{21}    = 1; // W bit
310  let Inst{22}    = 1; // B bit
311  let Inst{24}    = 1; // P bit
312  let Inst{27-26} = {0,1};
313}
314
315// Pre-indexed stores
316class AI2stwpr<dag oops, dag iops, Format f, string opc,
317            string asm, string cstr, list<dag> pattern>
318  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePre, f, opc,
319      asm, cstr, pattern> {
320  let Inst{20}    = 0; // L bit
321  let Inst{21}    = 1; // W bit
322  let Inst{22}    = 0; // B bit
323  let Inst{24}    = 1; // P bit
324  let Inst{27-26} = {0,1};
325}
326class AI2stbpr<dag oops, dag iops, Format f, string opc,
327            string asm, string cstr, list<dag> pattern>
328  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePre, f, opc,
329      asm, cstr, pattern> {
330  let Inst{20}    = 0; // L bit
331  let Inst{21}    = 1; // W bit
332  let Inst{22}    = 1; // B bit
333  let Inst{24}    = 1; // P bit
334  let Inst{27-26} = {0,1};
335}
336
337// Post-indexed loads
338class AI2ldwpo<dag oops, dag iops, Format f, string opc,
339            string asm, string cstr, list<dag> pattern>
340  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePost, f, opc,
341      asm, cstr,pattern> {
342  let Inst{20}    = 1; // L bit
343  let Inst{21}    = 0; // W bit
344  let Inst{22}    = 0; // B bit
345  let Inst{24}    = 0; // P bit
346  let Inst{27-26} = {0,1};
347}
348class AI2ldbpo<dag oops, dag iops, Format f, string opc,
349            string asm, string cstr, list<dag> pattern>
350  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePost, f, opc,
351      asm, cstr,pattern> {
352  let Inst{20}    = 1; // L bit
353  let Inst{21}    = 0; // W bit
354  let Inst{22}    = 1; // B bit
355  let Inst{24}    = 0; // P bit
356  let Inst{27-26} = {0,1};
357}
358
359// Post-indexed stores
360class AI2stwpo<dag oops, dag iops, Format f, string opc,
361            string asm, string cstr, list<dag> pattern>
362  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePost, f, opc,
363      asm, cstr,pattern> {
364  let Inst{20}    = 0; // L bit
365  let Inst{21}    = 0; // W bit
366  let Inst{22}    = 0; // B bit
367  let Inst{24}    = 0; // P bit
368  let Inst{27-26} = {0,1};
369}
370class AI2stbpo<dag oops, dag iops, Format f, string opc,
371            string asm, string cstr, list<dag> pattern>
372  : I<oops, iops, AddrMode2, Size4Bytes, IndexModePost, f, opc,
373      asm, cstr,pattern> {
374  let Inst{20}    = 0; // L bit
375  let Inst{21}    = 0; // W bit
376  let Inst{22}    = 1; // B bit
377  let Inst{24}    = 0; // P bit
378  let Inst{27-26} = {0,1};
379}
380
381// addrmode3 instructions
382class AI3<dag oops, dag iops, Format f, string opc,
383          string asm, list<dag> pattern>
384  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
385      asm, "", pattern>;
386class AXI3<dag oops, dag iops, Format f, string asm,
387           list<dag> pattern>
388  : XI<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, asm,
389       "", pattern>;
390
391// loads
392class AI3ldh<dag oops, dag iops, Format f, string opc,
393          string asm, list<dag> pattern>
394  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
395      asm, "", pattern> {
396  let Inst{4}     = 1;
397  let Inst{5}     = 1; // H bit
398  let Inst{6}     = 0; // S bit
399  let Inst{7}     = 1;
400  let Inst{20}    = 1; // L bit
401  let Inst{21}    = 0; // W bit
402  let Inst{24}    = 1; // P bit
403}
404class AXI3ldh<dag oops, dag iops, Format f, string asm,
405           list<dag> pattern>
406  : XI<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f,
407       asm, "", pattern> {
408  let Inst{4}     = 1;
409  let Inst{5}     = 1; // H bit
410  let Inst{6}     = 0; // S bit
411  let Inst{7}     = 1;
412  let Inst{20}    = 1; // L bit
413  let Inst{21}    = 0; // W bit
414  let Inst{24}    = 1; // P bit
415}
416class AI3ldsh<dag oops, dag iops, Format f, string opc,
417          string asm, list<dag> pattern>
418  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
419      asm, "", pattern> {
420  let Inst{4}     = 1;
421  let Inst{5}     = 1; // H bit
422  let Inst{6}     = 1; // S bit
423  let Inst{7}     = 1;
424  let Inst{20}    = 1; // L bit
425  let Inst{21}    = 0; // W bit
426  let Inst{24}    = 1; // P bit
427}
428class AXI3ldsh<dag oops, dag iops, Format f, string asm,
429           list<dag> pattern>
430  : XI<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f,
431       asm, "", pattern> {
432  let Inst{4}     = 1;
433  let Inst{5}     = 1; // H bit
434  let Inst{6}     = 1; // S bit
435  let Inst{7}     = 1;
436  let Inst{20}    = 1; // L bit
437  let Inst{21}    = 0; // W bit
438  let Inst{24}    = 1; // P bit
439}
440class AI3ldsb<dag oops, dag iops, Format f, string opc,
441          string asm, list<dag> pattern>
442  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
443      asm, "", pattern> {
444  let Inst{4}     = 1;
445  let Inst{5}     = 0; // H bit
446  let Inst{6}     = 1; // S bit
447  let Inst{7}     = 1;
448  let Inst{20}    = 1; // L bit
449  let Inst{21}    = 0; // W bit
450  let Inst{24}    = 1; // P bit
451}
452class AXI3ldsb<dag oops, dag iops, Format f, string asm,
453           list<dag> pattern>
454  : XI<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f,
455       asm, "", pattern> {
456  let Inst{4}     = 1;
457  let Inst{5}     = 0; // H bit
458  let Inst{6}     = 1; // S bit
459  let Inst{7}     = 1;
460  let Inst{20}    = 1; // L bit
461  let Inst{21}    = 0; // W bit
462  let Inst{24}    = 1; // P bit
463}
464class AI3ldd<dag oops, dag iops, Format f, string opc,
465          string asm, list<dag> pattern>
466  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
467      asm, "", pattern> {
468  let Inst{4}     = 1;
469  let Inst{5}     = 0; // H bit
470  let Inst{6}     = 1; // S bit
471  let Inst{7}     = 1;
472  let Inst{20}    = 0; // L bit
473  let Inst{21}    = 0; // W bit
474  let Inst{24}    = 1; // P bit
475}
476
477// stores
478class AI3sth<dag oops, dag iops, Format f, string opc,
479          string asm, list<dag> pattern>
480  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
481      asm, "", pattern> {
482  let Inst{4}     = 1;
483  let Inst{5}     = 1; // H bit
484  let Inst{6}     = 0; // S bit
485  let Inst{7}     = 1;
486  let Inst{20}    = 0; // L bit
487  let Inst{21}    = 0; // W bit
488  let Inst{24}    = 1; // P bit
489}
490class AXI3sth<dag oops, dag iops, Format f, string asm,
491           list<dag> pattern>
492  : XI<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f,
493       asm, "", pattern> {
494  let Inst{4}     = 1;
495  let Inst{5}     = 1; // H bit
496  let Inst{6}     = 0; // S bit
497  let Inst{7}     = 1;
498  let Inst{20}    = 0; // L bit
499  let Inst{21}    = 0; // W bit
500  let Inst{24}    = 1; // P bit
501}
502class AI3std<dag oops, dag iops, Format f, string opc,
503          string asm, list<dag> pattern>
504  : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, opc,
505      asm, "", pattern> {
506  let Inst{4}     = 1;
507  let Inst{5}     = 1; // H bit
508  let Inst{6}     = 1; // S bit
509  let Inst{7}     = 1;
510  let Inst{20}    = 0; // L bit
511  let Inst{21}    = 0; // W bit
512  let Inst{24}    = 1; // P bit
513}
514
515// Pre-indexed loads
516class AI3ldhpr<dag oops, dag iops, Format f, string opc,
517            string asm, string cstr, list<dag> pattern>
518  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, opc,
519      asm, cstr, pattern> {
520  let Inst{4}     = 1;
521  let Inst{5}     = 1; // H bit
522  let Inst{6}     = 0; // S bit
523  let Inst{7}     = 1;
524  let Inst{20}    = 1; // L bit
525  let Inst{21}    = 1; // W bit
526  let Inst{24}    = 1; // P bit
527}
528class AI3ldshpr<dag oops, dag iops, Format f, string opc,
529            string asm, string cstr, list<dag> pattern>
530  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, opc,
531      asm, cstr, pattern> {
532  let Inst{4}     = 1;
533  let Inst{5}     = 1; // H bit
534  let Inst{6}     = 1; // S bit
535  let Inst{7}     = 1;
536  let Inst{20}    = 1; // L bit
537  let Inst{21}    = 1; // W bit
538  let Inst{24}    = 1; // P bit
539}
540class AI3ldsbpr<dag oops, dag iops, Format f, string opc,
541            string asm, string cstr, list<dag> pattern>
542  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, opc,
543      asm, cstr, pattern> {
544  let Inst{4}     = 1;
545  let Inst{5}     = 0; // H bit
546  let Inst{6}     = 1; // S bit
547  let Inst{7}     = 1;
548  let Inst{20}    = 1; // L bit
549  let Inst{21}    = 1; // W bit
550  let Inst{24}    = 1; // P bit
551}
552
553// Pre-indexed stores
554class AI3sthpr<dag oops, dag iops, Format f, string opc,
555            string asm, string cstr, list<dag> pattern>
556  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, opc,
557      asm, cstr, pattern> {
558  let Inst{4}     = 1;
559  let Inst{5}     = 1; // H bit
560  let Inst{6}     = 0; // S bit
561  let Inst{7}     = 1;
562  let Inst{20}    = 0; // L bit
563  let Inst{21}    = 1; // W bit
564  let Inst{24}    = 1; // P bit
565}
566
567// Post-indexed loads
568class AI3ldhpo<dag oops, dag iops, Format f, string opc,
569            string asm, string cstr, list<dag> pattern>
570  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, opc,
571      asm, cstr,pattern> {
572  let Inst{4}     = 1;
573  let Inst{5}     = 1; // H bit
574  let Inst{6}     = 0; // S bit
575  let Inst{7}     = 1;
576  let Inst{20}    = 1; // L bit
577  let Inst{21}    = 1; // W bit
578  let Inst{24}    = 0; // P bit
579}
580class AI3ldshpo<dag oops, dag iops, Format f, string opc,
581            string asm, string cstr, list<dag> pattern>
582  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, opc,
583      asm, cstr,pattern> {
584  let Inst{4}     = 1;
585  let Inst{5}     = 1; // H bit
586  let Inst{6}     = 1; // S bit
587  let Inst{7}     = 1;
588  let Inst{20}    = 1; // L bit
589  let Inst{21}    = 1; // W bit
590  let Inst{24}    = 0; // P bit
591}
592class AI3ldsbpo<dag oops, dag iops, Format f, string opc,
593            string asm, string cstr, list<dag> pattern>
594  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, opc,
595      asm, cstr,pattern> {
596  let Inst{4}     = 1;
597  let Inst{5}     = 0; // H bit
598  let Inst{6}     = 1; // S bit
599  let Inst{7}     = 1;
600  let Inst{20}    = 1; // L bit
601  let Inst{21}    = 1; // W bit
602  let Inst{24}    = 0; // P bit
603}
604
605// Post-indexed stores
606class AI3sthpo<dag oops, dag iops, Format f, string opc,
607            string asm, string cstr, list<dag> pattern>
608  : I<oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, opc,
609      asm, cstr,pattern> {
610  let Inst{4}     = 1;
611  let Inst{5}     = 1; // H bit
612  let Inst{6}     = 0; // S bit
613  let Inst{7}     = 1;
614  let Inst{20}    = 0; // L bit
615  let Inst{21}    = 1; // W bit
616  let Inst{24}    = 0; // P bit
617}
618
619
620// addrmode4 instructions
621class AXI4ld<dag oops, dag iops, Format f, string asm, list<dag> pattern>
622  : XI<oops, iops, AddrMode4, Size4Bytes, IndexModeNone, f, asm,
623       "", pattern> {
624  let Inst{20}    = 1; // L bit
625  let Inst{22}    = 0; // S bit
626  let Inst{27-25} = 0b100;
627}
628class AXI4st<dag oops, dag iops, Format f, string asm, list<dag> pattern>
629  : XI<oops, iops, AddrMode4, Size4Bytes, IndexModeNone, f, asm,
630       "", pattern> {
631  let Inst{20}    = 0; // L bit
632  let Inst{22}    = 0; // S bit
633  let Inst{27-25} = 0b100;
634}
635
636// Unsigned multiply, multiply-accumulate instructions.
637class AMul1I<bits<7> opcod, dag oops, dag iops, string opc,
638         string asm, list<dag> pattern>
639  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, opc,
640      asm, "", pattern> {
641  let Inst{7-4}   = 0b1001;
642  let Inst{20}    = 0; // S bit
643  let Inst{27-21} = opcod;
644}
645class AsMul1I<bits<7> opcod, dag oops, dag iops, string opc,
646          string asm, list<dag> pattern>
647  : sI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, opc,
648       asm, "", pattern> {
649  let Inst{7-4}   = 0b1001;
650  let Inst{27-21} = opcod;
651}
652
653// Most significant word multiply
654class AMul2I<bits<7> opcod, dag oops, dag iops, string opc,
655         string asm, list<dag> pattern>
656  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, opc,
657      asm, "", pattern> {
658  let Inst{7-4}   = 0b1001;
659  let Inst{20}    = 1;
660  let Inst{27-21} = opcod;
661}
662
663// SMUL<x><y> / SMULW<y> / SMLA<x><y> / SMLAW<x><y>
664class AMulxyI<bits<7> opcod, dag oops, dag iops, string opc,
665         string asm, list<dag> pattern>
666  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, opc,
667      asm, "", pattern> {
668  let Inst{4}     = 0;
669  let Inst{7}     = 1;
670  let Inst{20}    = 0;
671  let Inst{27-21} = opcod;
672}
673
674// Extend instructions.
675class AExtI<bits<8> opcod, dag oops, dag iops, string opc,
676            string asm, list<dag> pattern>
677  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, ExtFrm, opc,
678      asm, "", pattern> {
679  let Inst{7-4}   = 0b0111;
680  let Inst{27-20} = opcod;
681}
682
683// Misc Arithmetic instructions.
684class AMiscA1I<bits<8> opcod, dag oops, dag iops, string opc,
685               string asm, list<dag> pattern>
686  : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, ArithMiscFrm, opc,
687      asm, "", pattern> {
688  let Inst{27-20} = opcod;
689}
690
691//===----------------------------------------------------------------------===//
692
693// ARMPat - Same as Pat<>, but requires that the compiler be in ARM mode.
694class ARMPat<dag pattern, dag result> : Pat<pattern, result> {
695  list<Predicate> Predicates = [IsARM];
696}
697class ARMV5TEPat<dag pattern, dag result> : Pat<pattern, result> {
698  list<Predicate> Predicates = [IsARM, HasV5TE];
699}
700class ARMV6Pat<dag pattern, dag result> : Pat<pattern, result> {
701  list<Predicate> Predicates = [IsARM, HasV6];
702}
703
704//===----------------------------------------------------------------------===//
705//
706// Thumb Instruction Format Definitions.
707//
708
709
710// TI - Thumb instruction.
711
712class ThumbI<dag outs, dag ins, AddrMode am, SizeFlagVal sz,
713             string asm, string cstr, list<dag> pattern>
714  : InstARM<am, sz, IndexModeNone, ThumbFrm, cstr> {
715  let OutOperandList = outs;
716  let InOperandList = ins;
717  let AsmString   = asm;
718  let Pattern = pattern;
719  list<Predicate> Predicates = [IsThumb];
720}
721
722class TI<dag outs, dag ins, string asm, list<dag> pattern>
723  : ThumbI<outs, ins, AddrModeNone, Size2Bytes, asm, "", pattern>;
724class TI1<dag outs, dag ins, string asm, list<dag> pattern>
725  : ThumbI<outs, ins, AddrModeT1, Size2Bytes, asm, "", pattern>;
726class TI2<dag outs, dag ins, string asm, list<dag> pattern>
727  : ThumbI<outs, ins, AddrModeT2, Size2Bytes, asm, "", pattern>;
728class TI4<dag outs, dag ins, string asm, list<dag> pattern>
729  : ThumbI<outs, ins, AddrModeT4, Size2Bytes, asm, "", pattern>;
730class TIs<dag outs, dag ins, string asm, list<dag> pattern>
731  : ThumbI<outs, ins, AddrModeTs, Size2Bytes, asm, "", pattern>;
732
733// Two-address instructions
734class TIt<dag outs, dag ins, string asm, list<dag> pattern>
735  : ThumbI<outs, ins, AddrModeNone, Size2Bytes, asm, "$lhs = $dst", pattern>;
736
737// BL, BLX(1) are translated by assembler into two instructions
738class TIx2<dag outs, dag ins, string asm, list<dag> pattern>
739  : ThumbI<outs, ins, AddrModeNone, Size4Bytes, asm, "", pattern>;
740
741// BR_JT instructions
742class TJTI<dag outs, dag ins, string asm, list<dag> pattern>
743  : ThumbI<outs, ins, AddrModeNone, SizeSpecial, asm, "", pattern>;
744
745// TPat - Same as Pat<>, but requires that the compiler be in Thumb mode.
746class TPat<dag pattern, dag result> : Pat<pattern, result> {
747  list<Predicate> Predicates = [IsThumb];
748}
749
750class Tv5Pat<dag pattern, dag result> : Pat<pattern, result> {
751  list<Predicate> Predicates = [IsThumb, HasV5T];
752}
753
754// Thumb1 only
755class Thumb1I<dag outs, dag ins, AddrMode am, SizeFlagVal sz,
756             string asm, string cstr, list<dag> pattern>
757  : InstARM<am, sz, IndexModeNone, ThumbFrm, cstr> {
758  let OutOperandList = outs;
759  let InOperandList = ins;
760  let AsmString   = asm;
761  let Pattern = pattern;
762  list<Predicate> Predicates = [IsThumb1Only];
763}
764
765class T1I<dag outs, dag ins, string asm, list<dag> pattern>
766  : Thumb1I<outs, ins, AddrModeNone, Size2Bytes, asm, "", pattern>;
767
768// Two-address instructions
769class T1It<dag outs, dag ins, string asm, list<dag> pattern>
770  : Thumb1I<outs, ins, AddrModeNone, Size2Bytes, asm, "$lhs = $dst", pattern>;
771
772class T1Pat<dag pattern, dag result> : Pat<pattern, result> {
773  list<Predicate> Predicates = [IsThumb1Only];
774}
775
776// Thumb2I - Thumb2 instruction. Almost all Thumb2 instructions are predicable.
777class Thumb2I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
778              string opc, string asm, string cstr, list<dag> pattern>
779  : InstARM<am, sz, IndexModeNone, ThumbFrm, cstr> {
780  let OutOperandList = oops;
781  let InOperandList = !con(iops, (ops pred:$p));
782  let AsmString = !strconcat(opc, !strconcat("${p}", asm));
783  let Pattern = pattern;
784  list<Predicate> Predicates = [IsThumb, HasThumb2];
785}
786
787// Same as Thumb2I except it can optionally modify CPSR. Note it's modeled as
788// an input operand since by default it's a zero register. It will
789// become an implicit def once it's "flipped".
790// FIXME: This uses unified syntax so {s} comes before {p}. We should make it
791// more consistent.
792class Thumb2sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
793               string opc, string asm, string cstr, list<dag> pattern>
794  : InstARM<am, sz, IndexModeNone, ThumbFrm, cstr> {
795  let OutOperandList = oops;
796  let InOperandList = !con(iops, (ops pred:$p, cc_out:$s));
797  let AsmString   = !strconcat(opc, !strconcat("${s}${p}", asm));
798  let Pattern = pattern;
799  list<Predicate> Predicates = [IsThumb, HasThumb2];
800}
801
802// Special cases
803class Thumb2XI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
804               string asm, string cstr, list<dag> pattern>
805  : InstARM<am, sz, IndexModeNone, ThumbFrm, cstr> {
806  let OutOperandList = oops;
807  let InOperandList = iops;
808  let AsmString   = asm;
809  let Pattern = pattern;
810  list<Predicate> Predicates = [IsThumb, HasThumb2];
811}
812
813class T2I<dag oops, dag iops, string opc, string asm, list<dag> pattern>
814  : Thumb2I<oops, iops, AddrModeNone, Size4Bytes, opc, asm, "", pattern>;
815
816class T2sI<dag oops, dag iops, string opc, string asm, list<dag> pattern>
817  : Thumb2sI<oops, iops, AddrModeNone, Size4Bytes, opc, asm, "", pattern>;
818
819class T2XI<dag oops, dag iops, string asm, list<dag> pattern>
820  : Thumb2XI<oops, iops, AddrModeNone, Size4Bytes, asm, "", pattern>;
821
822// T2Pat - Same as Pat<>, but requires that the compiler be in Thumb2 mode.
823class T2Pat<dag pattern, dag result> : Pat<pattern, result> {
824  list<Predicate> Predicates = [IsThumb, HasThumb2];
825}
826
827//===----------------------------------------------------------------------===//
828
829//===----------------------------------------------------------------------===//
830// ARM VFP Instruction templates.
831//
832
833// ARM VFP addrmode5 loads and stores
834class ADI5<bits<4> opcod1, bits<2> opcod2, dag oops, dag iops,
835           string opc, string asm, list<dag> pattern>
836  : I<oops, iops, AddrMode5, Size4Bytes, IndexModeNone,
837      VFPLdStFrm, opc, asm, "", pattern> {
838  // TODO: Mark the instructions with the appropriate subtarget info.
839  let Inst{27-24} = opcod1;
840  let Inst{21-20} = opcod2;
841  let Inst{11-8}  = 0b1011;
842}
843
844class ASI5<bits<4> opcod1, bits<2> opcod2, dag oops, dag iops,
845           string opc, string asm, list<dag> pattern>
846  : I<oops, iops, AddrMode5, Size4Bytes, IndexModeNone,
847      VFPLdStFrm, opc, asm, "", pattern> {
848  // TODO: Mark the instructions with the appropriate subtarget info.
849  let Inst{27-24} = opcod1;
850  let Inst{21-20} = opcod2;
851  let Inst{11-8}  = 0b1010;
852}
853
854// Load / store multiple
855class AXSI5<dag oops, dag iops, string asm, list<dag> pattern>
856  : XI<oops, iops, AddrMode5, Size4Bytes, IndexModeNone,
857       VFPLdStMulFrm, asm, "", pattern> {
858  // TODO: Mark the instructions with the appropriate subtarget info.
859  let Inst{27-25} = 0b110;
860  let Inst{11-8}  = 0b1011;
861}
862
863class AXDI5<dag oops, dag iops, string asm, list<dag> pattern>
864  : XI<oops, iops, AddrMode5, Size4Bytes, IndexModeNone,
865       VFPLdStMulFrm, asm, "", pattern> {
866  // TODO: Mark the instructions with the appropriate subtarget info.
867  let Inst{27-25} = 0b110;
868  let Inst{11-8}  = 0b1010;
869}
870
871
872// Double precision, unary
873class ADuI<bits<8> opcod1, bits<4> opcod2, bits<4> opcod3, dag oops, dag iops,
874           string opc, string asm, list<dag> pattern>
875  : AI<oops, iops, VFPUnaryFrm, opc, asm, pattern> {
876  let Inst{27-20} = opcod1;
877  let Inst{19-16} = opcod2;
878  let Inst{11-8}  = 0b1011;
879  let Inst{7-4}   = opcod3;
880}
881
882// Double precision, binary
883class ADbI<bits<8> opcod, dag oops, dag iops, string opc,
884           string asm, list<dag> pattern>
885  : AI<oops, iops, VFPBinaryFrm, opc, asm, pattern> {
886  let Inst{27-20} = opcod;
887  let Inst{11-8}  = 0b1011;
888}
889
890// Single precision, unary
891class ASuI<bits<8> opcod1, bits<4> opcod2, bits<4> opcod3, dag oops, dag iops,
892           string opc, string asm, list<dag> pattern>
893  : AI<oops, iops, VFPUnaryFrm, opc, asm, pattern> {
894  // Bits 22 (D bit) and 5 (M bit) will be changed during instruction encoding.
895  let Inst{27-20} = opcod1;
896  let Inst{19-16} = opcod2;
897  let Inst{11-8}  = 0b1010;
898  let Inst{7-4}   = opcod3;
899}
900
901// Single precision, binary
902class ASbI<bits<8> opcod, dag oops, dag iops, string opc,
903           string asm, list<dag> pattern>
904  : AI<oops, iops, VFPBinaryFrm, opc, asm, pattern> {
905  // Bit 22 (D bit) can be changed during instruction encoding.
906  let Inst{27-20} = opcod;
907  let Inst{11-8}  = 0b1010;
908}
909
910// VFP conversion instructions
911class AVConv1I<bits<8> opcod1, bits<4> opcod2, bits<4> opcod3,
912               dag oops, dag iops, string opc, string asm, list<dag> pattern>
913  : AI<oops, iops, VFPConv1Frm, opc, asm, pattern> {
914  let Inst{27-20} = opcod1;
915  let Inst{19-16} = opcod2;
916  let Inst{11-8}  = opcod3;
917  let Inst{6}     = 1;
918}
919
920class AVConvXI<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops, Format f,
921             string opc, string asm, list<dag> pattern>
922  : AI<oops, iops, f, opc, asm, pattern> {
923  let Inst{27-20} = opcod1;
924  let Inst{11-8}  = opcod2;
925  let Inst{4}     = 1;
926}
927
928class AVConv2I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops, string opc,
929              string asm, list<dag> pattern>
930  : AVConvXI<opcod1, opcod2, oops, iops, VFPConv2Frm, opc, asm, pattern>;
931
932class AVConv3I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops, string opc,
933              string asm, list<dag> pattern>
934  : AVConvXI<opcod1, opcod2, oops, iops, VFPConv3Frm, opc, asm, pattern>;
935
936class AVConv4I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops, string opc,
937              string asm, list<dag> pattern>
938  : AVConvXI<opcod1, opcod2, oops, iops, VFPConv4Frm, opc, asm, pattern>;
939
940class AVConv5I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops, string opc,
941              string asm, list<dag> pattern>
942  : AVConvXI<opcod1, opcod2, oops, iops, VFPConv5Frm, opc, asm, pattern>;
943
944//===----------------------------------------------------------------------===//
945
946//===----------------------------------------------------------------------===//
947// ARM NEON Instruction templates.
948//
949
950class NeonI<dag oops, dag iops, AddrMode am, IndexMode im, string asm,
951            string cstr, list<dag> pattern>
952  : InstARM<am, Size4Bytes, im, NEONFrm, cstr> {
953  let OutOperandList = oops;
954  let InOperandList = iops;
955  let AsmString = asm;
956  let Pattern = pattern;
957  list<Predicate> Predicates = [HasNEON];
958}
959
960class NI<dag oops, dag iops, string asm, list<dag> pattern>
961  : NeonI<oops, iops, AddrModeNone, IndexModeNone, asm, "", pattern> {
962}
963
964class NDataI<dag oops, dag iops, string asm, string cstr, list<dag> pattern>
965  : NeonI<oops, iops, AddrModeNone, IndexModeNone, asm, cstr, pattern> {
966  let Inst{31-25} = 0b1111001;
967}
968
969// NEON "one register and a modified immediate" format.
970class N1ModImm<bit op23, bits<3> op21_19, bits<4> op11_8, bit op7, bit op6,
971               bit op5, bit op4,
972               dag oops, dag iops, string asm, string cstr, list<dag> pattern>
973  : NDataI<oops, iops, asm, cstr, pattern> {
974  let Inst{23} = op23;
975  let Inst{21-19} = op21_19;
976  let Inst{11-8} = op11_8;
977  let Inst{7} = op7;
978  let Inst{6} = op6;
979  let Inst{5} = op5;
980  let Inst{4} = op4;
981}
982
983// NEON 2 vector register format.
984class N2V<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18, bits<2> op17_16,
985          bits<5> op11_7, bit op6, bit op4,
986          dag oops, dag iops, string asm, string cstr, list<dag> pattern>
987  : NDataI<oops, iops, asm, cstr, pattern> {
988  let Inst{24-23} = op24_23;
989  let Inst{21-20} = op21_20;
990  let Inst{19-18} = op19_18;
991  let Inst{17-16} = op17_16;
992  let Inst{11-7} = op11_7;
993  let Inst{6} = op6;
994  let Inst{4} = op4;
995}
996
997// NEON 2 vector register with immediate.
998class N2VImm<bit op24, bit op23, bits<6> op21_16, bits<4> op11_8, bit op7,
999             bit op6, bit op4,
1000             dag oops, dag iops, string asm, string cstr, list<dag> pattern>
1001  : NDataI<oops, iops, asm, cstr, pattern> {
1002  let Inst{24} = op24;
1003  let Inst{23} = op23;
1004  let Inst{21-16} = op21_16;
1005  let Inst{11-8} = op11_8;
1006  let Inst{7} = op7;
1007  let Inst{6} = op6;
1008  let Inst{4} = op4;
1009}
1010
1011// NEON 3 vector register format.
1012class N3V<bit op24, bit op23, bits<2> op21_20, bits<4> op11_8, bit op6, bit op4,
1013          dag oops, dag iops, string asm, string cstr, list<dag> pattern>
1014  : NDataI<oops, iops, asm, cstr, pattern> {
1015  let Inst{24} = op24;
1016  let Inst{23} = op23;
1017  let Inst{21-20} = op21_20;
1018  let Inst{11-8} = op11_8;
1019  let Inst{6} = op6;
1020  let Inst{4} = op4;
1021}
1022
1023// NEON VMOVs between scalar and core registers.
1024class NVLaneOp<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
1025               dag oops, dag iops, Format f, string opc, string asm,
1026               list<dag> pattern>
1027  : AI<oops, iops, f, opc, asm, pattern> {
1028  let Inst{27-20} = opcod1;
1029  let Inst{11-8} = opcod2;
1030  let Inst{6-5} = opcod3;
1031  let Inst{4} = 1;
1032  list<Predicate> Predicates = [HasNEON];
1033}
1034class NVGetLane<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
1035                dag oops, dag iops, string opc, string asm, list<dag> pattern>
1036  : NVLaneOp<opcod1, opcod2, opcod3, oops, iops, NEONGetLnFrm, opc, asm,
1037             pattern>;
1038class NVSetLane<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
1039                dag oops, dag iops, string opc, string asm, list<dag> pattern>
1040  : NVLaneOp<opcod1, opcod2, opcod3, oops, iops, NEONSetLnFrm, opc, asm,
1041             pattern>;
1042class NVDup<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
1043            dag oops, dag iops, string opc, string asm, list<dag> pattern>
1044  : NVLaneOp<opcod1, opcod2, opcod3, oops, iops, NEONDupFrm, opc, asm, pattern>;
1045