blob: d6f9781ea400ad5b040d036ab2a5958b688b49b5 [file] [log] [blame]
Evan Cheng2d37f192008-08-28 23:39:26 +00001//===- ARMInstrFormats.td - ARM Instruction Formats --*- tablegen -*---------=//
Bob Wilson3968c6a2010-03-23 17:23:59 +00002//
Evan Cheng2d37f192008-08-28 23:39:26 +00003// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bob Wilson3968c6a2010-03-23 17:23:59 +00007//
Evan Cheng2d37f192008-08-28 23:39:26 +00008//===----------------------------------------------------------------------===//
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.
Bob Wilson69ba1bc2010-03-17 21:13:43 +000018class Format<bits<6> val> {
19 bits<6> Value = val;
Evan Cheng2d37f192008-08-28 23:39:26 +000020}
21
Evan Chengfabdcce2008-11-13 23:36:57 +000022def Pseudo : Format<0>;
23def MulFrm : Format<1>;
24def BrFrm : Format<2>;
25def BrMiscFrm : Format<3>;
Evan Cheng2d37f192008-08-28 23:39:26 +000026
Evan Chengfabdcce2008-11-13 23:36:57 +000027def DPFrm : Format<4>;
28def DPSoRegFrm : Format<5>;
Evan Cheng2d37f192008-08-28 23:39:26 +000029
Evan Chengfabdcce2008-11-13 23:36:57 +000030def LdFrm : Format<6>;
31def StFrm : Format<7>;
32def LdMiscFrm : Format<8>;
33def StMiscFrm : Format<9>;
34def LdStMulFrm : Format<10>;
Evan Cheng2d37f192008-08-28 23:39:26 +000035
Johnny Chen0dab68f2010-03-19 17:39:00 +000036def LdStExFrm : Format<11>;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +000037
Johnny Chen0dab68f2010-03-19 17:39:00 +000038def ArithMiscFrm : Format<12>;
Bob Wilson96649842010-08-11 00:01:18 +000039def SatFrm : Format<13>;
40def ExtFrm : Format<14>;
Evan Cheng8cbbcb12008-11-11 21:48:44 +000041
Bob Wilson96649842010-08-11 00:01:18 +000042def VFPUnaryFrm : Format<15>;
43def VFPBinaryFrm : Format<16>;
44def VFPConv1Frm : Format<17>;
45def VFPConv2Frm : Format<18>;
46def VFPConv3Frm : Format<19>;
47def VFPConv4Frm : Format<20>;
48def VFPConv5Frm : Format<21>;
49def VFPLdStFrm : Format<22>;
50def VFPLdStMulFrm : Format<23>;
51def VFPMiscFrm : Format<24>;
Evan Cheng8cbbcb12008-11-11 21:48:44 +000052
Bob Wilson96649842010-08-11 00:01:18 +000053def ThumbFrm : Format<25>;
54def MiscFrm : Format<26>;
Evan Cheng2d37f192008-08-28 23:39:26 +000055
Bob Wilson96649842010-08-11 00:01:18 +000056def NGetLnFrm : Format<27>;
57def NSetLnFrm : Format<28>;
58def NDupFrm : Format<29>;
59def NLdStFrm : Format<30>;
60def N1RegModImmFrm: Format<31>;
61def N2RegFrm : Format<32>;
62def NVCVTFrm : Format<33>;
63def NVDupLnFrm : Format<34>;
64def N2RegVShLFrm : Format<35>;
65def N2RegVShRFrm : Format<36>;
66def N3RegFrm : Format<37>;
67def N3RegVShFrm : Format<38>;
68def NVExtFrm : Format<39>;
69def NVMulSLFrm : Format<40>;
70def NVTBLFrm : Format<41>;
Johnny Chenf833fad2010-03-20 00:17:00 +000071
Evan Cheng14965762009-07-08 01:46:35 +000072// Misc flags.
73
Evan Cheng81889d012008-11-05 18:35:52 +000074// the instruction has a Rn register operand.
Evan Cheng14965762009-07-08 01:46:35 +000075// UnaryDP - Indicates this is a unary data processing instruction, i.e.
76// it doesn't have a Rn operand.
77class UnaryDP { bit isUnaryDataProc = 1; }
78
79// Xform16Bit - Indicates this Thumb2 instruction may be transformed into
80// a 16-bit Thumb instruction if certain conditions are met.
81class Xform16Bit { bit canXformTo16Bit = 1; }
Evan Cheng2d37f192008-08-28 23:39:26 +000082
Evan Cheng2d37f192008-08-28 23:39:26 +000083//===----------------------------------------------------------------------===//
Bob Wilsona4d86b62010-03-18 23:57:57 +000084// ARM Instruction flags. These need to match ARMBaseInstrInfo.h.
Evan Chengb23b50d2009-06-29 07:51:04 +000085//
86
87// Addressing mode.
Jim Grosbache9298992010-10-05 18:14:55 +000088class AddrMode<bits<5> val> {
89 bits<5> Value = val;
Evan Chengb23b50d2009-06-29 07:51:04 +000090}
Bill Wendlingb70dc872010-08-31 07:50:46 +000091def AddrModeNone : AddrMode<0>;
92def AddrMode1 : AddrMode<1>;
93def AddrMode2 : AddrMode<2>;
94def AddrMode3 : AddrMode<3>;
95def AddrMode4 : AddrMode<4>;
96def AddrMode5 : AddrMode<5>;
97def AddrMode6 : AddrMode<6>;
98def AddrModeT1_1 : AddrMode<7>;
99def AddrModeT1_2 : AddrMode<8>;
100def AddrModeT1_4 : AddrMode<9>;
101def AddrModeT1_s : AddrMode<10>;
102def AddrModeT2_i12 : AddrMode<11>;
103def AddrModeT2_i8 : AddrMode<12>;
104def AddrModeT2_so : AddrMode<13>;
105def AddrModeT2_pc : AddrMode<14>;
Bob Wilsondeb35af2009-07-01 23:16:05 +0000106def AddrModeT2_i8s4 : AddrMode<15>;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000107def AddrMode_i12 : AddrMode<16>;
Evan Chengb23b50d2009-06-29 07:51:04 +0000108
109// Instruction size.
110class SizeFlagVal<bits<3> val> {
111 bits<3> Value = val;
112}
113def SizeInvalid : SizeFlagVal<0>; // Unset.
114def SizeSpecial : SizeFlagVal<1>; // Pseudo or special.
115def Size8Bytes : SizeFlagVal<2>;
116def Size4Bytes : SizeFlagVal<3>;
117def Size2Bytes : SizeFlagVal<4>;
118
119// Load / store index mode.
120class IndexMode<bits<2> val> {
121 bits<2> Value = val;
122}
123def IndexModeNone : IndexMode<0>;
124def IndexModePre : IndexMode<1>;
125def IndexModePost : IndexMode<2>;
Bob Wilsonf1e8f7f2010-03-13 07:34:35 +0000126def IndexModeUpd : IndexMode<3>;
Evan Chengb23b50d2009-06-29 07:51:04 +0000127
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000128// Instruction execution domain.
129class Domain<bits<2> val> {
130 bits<2> Value = val;
131}
132def GenericDomain : Domain<0>;
133def VFPDomain : Domain<1>; // Instructions in VFP domain only
134def NeonDomain : Domain<2>; // Instructions in Neon domain only
135def VFPNeonDomain : Domain<3>; // Instructions in both VFP & Neon domains
136
Evan Chengb23b50d2009-06-29 07:51:04 +0000137//===----------------------------------------------------------------------===//
Evan Cheng2d37f192008-08-28 23:39:26 +0000138
Evan Chengcd4cdd12009-07-11 06:43:01 +0000139// ARM special operands.
140//
141
Daniel Dunbard8042b72010-08-11 06:36:53 +0000142def CondCodeOperand : AsmOperandClass {
143 let Name = "CondCode";
144 let SuperClasses = [];
145}
146
Evan Chengcd4cdd12009-07-11 06:43:01 +0000147// ARM Predicate operand. Default to 14 = always (AL). Second part is CC
148// register whose default is 0 (no register).
149def pred : PredicateOperand<OtherVT, (ops i32imm, CCR),
150 (ops (i32 14), (i32 zero_reg))> {
151 let PrintMethod = "printPredicateOperand";
Daniel Dunbard8042b72010-08-11 06:36:53 +0000152 let ParserMatchClass = CondCodeOperand;
Evan Chengcd4cdd12009-07-11 06:43:01 +0000153}
154
155// Conditional code result for instructions whose 's' bit is set, e.g. subs.
156def cc_out : OptionalDefOperand<OtherVT, (ops CCR), (ops (i32 zero_reg))> {
Chris Lattner63274cb2010-11-15 05:19:05 +0000157 let EncoderMethod = "getCCOutOpValue";
Evan Chengcd4cdd12009-07-11 06:43:01 +0000158 let PrintMethod = "printSBitModifierOperand";
159}
160
161// Same as cc_out except it defaults to setting CPSR.
162def s_cc_out : OptionalDefOperand<OtherVT, (ops CCR), (ops (i32 CPSR))> {
Chris Lattner63274cb2010-11-15 05:19:05 +0000163 let EncoderMethod = "getCCOutOpValue";
Evan Chengcd4cdd12009-07-11 06:43:01 +0000164 let PrintMethod = "printSBitModifierOperand";
165}
166
Johnny Chen9a3e2392010-03-10 18:59:38 +0000167// ARM special operands for disassembly only.
168//
Jim Grosbach7e72ec62010-10-13 21:00:04 +0000169def setend_op : Operand<i32> {
170 let PrintMethod = "printSetendOperand";
171}
Johnny Chen9a3e2392010-03-10 18:59:38 +0000172
173def cps_opt : Operand<i32> {
174 let PrintMethod = "printCPSOptionOperand";
175}
176
177def msr_mask : Operand<i32> {
178 let PrintMethod = "printMSRMaskOperand";
179}
180
181// A8.6.117, A8.6.118. Different instructions are generated for #0 and #-0.
182// The neg_zero operand translates -0 to -1, -1 to -2, ..., etc.
183def neg_zero : Operand<i32> {
184 let PrintMethod = "printNegZeroOperand";
185}
186
Evan Chengcd4cdd12009-07-11 06:43:01 +0000187//===----------------------------------------------------------------------===//
188
Evan Cheng2d37f192008-08-28 23:39:26 +0000189// ARM Instruction templates.
190//
191
Johnny Chenc28e6292009-12-15 17:24:14 +0000192class InstTemplate<AddrMode am, SizeFlagVal sz, IndexMode im,
193 Format f, Domain d, string cstr, InstrItinClass itin>
Evan Cheng2d37f192008-08-28 23:39:26 +0000194 : Instruction {
195 let Namespace = "ARM";
196
Evan Cheng2d37f192008-08-28 23:39:26 +0000197 AddrMode AM = am;
Evan Cheng2d37f192008-08-28 23:39:26 +0000198 SizeFlagVal SZ = sz;
Evan Cheng2d37f192008-08-28 23:39:26 +0000199 IndexMode IM = im;
200 bits<2> IndexModeBits = IM.Value;
Evan Cheng2d37f192008-08-28 23:39:26 +0000201 Format F = f;
Bob Wilson69ba1bc2010-03-17 21:13:43 +0000202 bits<6> Form = F.Value;
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000203 Domain D = d;
Evan Cheng81889d012008-11-05 18:35:52 +0000204 bit isUnaryDataProc = 0;
Evan Cheng14965762009-07-08 01:46:35 +0000205 bit canXformTo16Bit = 0;
Jim Grosbach5876e412010-11-19 22:42:55 +0000206
Chris Lattner7ff33462010-10-31 19:22:57 +0000207 // If this is a pseudo instruction, mark it isCodeGenOnly.
208 let isCodeGenOnly = !eq(!cast<string>(f), "Pseudo");
Bob Wilson3968c6a2010-03-23 17:23:59 +0000209
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000210 // The layout of TSFlags should be kept in sync with ARMBaseInstrInfo.h.
Jim Grosbache9298992010-10-05 18:14:55 +0000211 let TSFlags{4-0} = AM.Value;
212 let TSFlags{7-5} = SZ.Value;
213 let TSFlags{9-8} = IndexModeBits;
214 let TSFlags{15-10} = Form;
215 let TSFlags{16} = isUnaryDataProc;
216 let TSFlags{17} = canXformTo16Bit;
217 let TSFlags{19-18} = D.Value;
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +0000218
Evan Cheng2d37f192008-08-28 23:39:26 +0000219 let Constraints = cstr;
David Goodwinb062c232009-08-06 16:52:47 +0000220 let Itinerary = itin;
Evan Cheng2d37f192008-08-28 23:39:26 +0000221}
222
Johnny Chenc28e6292009-12-15 17:24:14 +0000223class Encoding {
224 field bits<32> Inst;
225}
226
227class InstARM<AddrMode am, SizeFlagVal sz, IndexMode im,
228 Format f, Domain d, string cstr, InstrItinClass itin>
229 : InstTemplate<am, sz, im, f, d, cstr, itin>, Encoding;
230
231// This Encoding-less class is used by Thumb1 to specify the encoding bits later
232// on by adding flavors to specific instructions.
233class InstThumb<AddrMode am, SizeFlagVal sz, IndexMode im,
234 Format f, Domain d, string cstr, InstrItinClass itin>
235 : InstTemplate<am, sz, im, f, d, cstr, itin>;
236
Jim Grosbacha74c7ccd2010-11-18 01:38:26 +0000237class PseudoInst<dag oops, dag iops, InstrItinClass itin, list<dag> pattern>
Jim Grosbach19be1fb2010-11-18 01:20:48 +0000238 // FIXME: This really should derive from InstTemplate instead, as pseudos
239 // don't need encoding information. TableGen doesn't like that
240 // currently. Need to figure out why and fix it.
Bob Wilson3968c6a2010-03-23 17:23:59 +0000241 : InstARM<AddrModeNone, SizeSpecial, IndexModeNone, Pseudo, GenericDomain,
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000242 "", itin> {
Evan Cheng2d37f192008-08-28 23:39:26 +0000243 let OutOperandList = oops;
244 let InOperandList = iops;
Evan Cheng2d37f192008-08-28 23:39:26 +0000245 let Pattern = pattern;
246}
247
Jim Grosbachcfb66202010-11-18 01:15:56 +0000248// PseudoInst that's ARM-mode only.
249class ARMPseudoInst<dag oops, dag iops, InstrItinClass itin,
Jim Grosbacha74c7ccd2010-11-18 01:38:26 +0000250 list<dag> pattern>
251 : PseudoInst<oops, iops, itin, pattern> {
Jim Grosbach51fdc472010-11-18 18:01:40 +0000252 // Default these to 4byte size, as they're almost always expanded to a
253 // single instruction. Any exceptions can override the SZ field value.
254 let SZ = Size4Bytes;
Jim Grosbachcfb66202010-11-18 01:15:56 +0000255 list<Predicate> Predicates = [IsARM];
256}
257
258
Evan Cheng2d37f192008-08-28 23:39:26 +0000259// Almost all ARM instructions are predicable.
Evan Cheng47b546d2008-11-06 08:47:38 +0000260class I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000261 IndexMode im, Format f, InstrItinClass itin,
David Goodwinb062c232009-08-06 16:52:47 +0000262 string opc, string asm, string cstr,
Evan Cheng2d37f192008-08-28 23:39:26 +0000263 list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000264 : InstARM<am, sz, im, f, GenericDomain, cstr, itin> {
Jim Grosbach5476a272010-10-11 18:51:51 +0000265 bits<4> p;
266 let Inst{31-28} = p;
Evan Cheng2d37f192008-08-28 23:39:26 +0000267 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +0000268 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +0000269 let AsmString = !strconcat(opc, "${p}", asm);
Evan Cheng2d37f192008-08-28 23:39:26 +0000270 let Pattern = pattern;
271 list<Predicate> Predicates = [IsARM];
272}
Bill Wendlingb70dc872010-08-31 07:50:46 +0000273
Jim Grosbach5e0d2a22009-12-14 18:31:20 +0000274// A few are not predicable
275class InoP<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000276 IndexMode im, Format f, InstrItinClass itin,
277 string opc, string asm, string cstr,
278 list<dag> pattern>
Jim Grosbach5e0d2a22009-12-14 18:31:20 +0000279 : InstARM<am, sz, im, f, GenericDomain, cstr, itin> {
280 let OutOperandList = oops;
281 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +0000282 let AsmString = !strconcat(opc, asm);
Jim Grosbach5e0d2a22009-12-14 18:31:20 +0000283 let Pattern = pattern;
284 let isPredicable = 0;
285 list<Predicate> Predicates = [IsARM];
286}
Evan Cheng2d37f192008-08-28 23:39:26 +0000287
Bill Wendlingf8dfa462010-08-30 01:47:35 +0000288// Same as I except it can optionally modify CPSR. Note it's modeled as an input
289// operand since by default it's a zero register. It will become an implicit def
290// once it's "flipped".
Evan Cheng47b546d2008-11-06 08:47:38 +0000291class sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000292 IndexMode im, Format f, InstrItinClass itin,
293 string opc, string asm, string cstr,
Evan Cheng2d37f192008-08-28 23:39:26 +0000294 list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000295 : InstARM<am, sz, im, f, GenericDomain, cstr, itin> {
Jim Grosbach5476a272010-10-11 18:51:51 +0000296 bits<4> p; // Predicate operand
Jim Grosbachd9d31da2010-10-12 23:00:24 +0000297 bits<1> s; // condition-code set flag ('1' if the insn should set the flags)
Jim Grosbach5476a272010-10-11 18:51:51 +0000298 let Inst{31-28} = p;
Jim Grosbachd9d31da2010-10-12 23:00:24 +0000299 let Inst{20} = s;
Jim Grosbach5476a272010-10-11 18:51:51 +0000300
Evan Cheng2d37f192008-08-28 23:39:26 +0000301 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +0000302 let InOperandList = !con(iops, (ins pred:$p, cc_out:$s));
Bob Wilson59351842010-10-15 03:23:44 +0000303 let AsmString = !strconcat(opc, "${s}${p}", asm);
Evan Cheng2d37f192008-08-28 23:39:26 +0000304 let Pattern = pattern;
305 list<Predicate> Predicates = [IsARM];
306}
307
Evan Chenga2827232008-09-01 07:19:00 +0000308// Special cases
Evan Cheng47b546d2008-11-06 08:47:38 +0000309class XI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000310 IndexMode im, Format f, InstrItinClass itin,
311 string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000312 : InstARM<am, sz, im, f, GenericDomain, cstr, itin> {
Evan Chenga2827232008-09-01 07:19:00 +0000313 let OutOperandList = oops;
314 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +0000315 let AsmString = asm;
Evan Chenga2827232008-09-01 07:19:00 +0000316 let Pattern = pattern;
317 list<Predicate> Predicates = [IsARM];
318}
319
David Goodwinb062c232009-08-06 16:52:47 +0000320class AI<dag oops, dag iops, Format f, InstrItinClass itin,
321 string opc, string asm, list<dag> pattern>
322 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, itin,
323 opc, asm, "", pattern>;
324class AsI<dag oops, dag iops, Format f, InstrItinClass itin,
325 string opc, string asm, list<dag> pattern>
326 : sI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, itin,
327 opc, asm, "", pattern>;
328class AXI<dag oops, dag iops, Format f, InstrItinClass itin,
Evan Cheng2d37f192008-08-28 23:39:26 +0000329 string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +0000330 : XI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, itin,
Evan Cheng49d66522008-11-06 22:15:19 +0000331 asm, "", pattern>;
Jim Grosbach5e0d2a22009-12-14 18:31:20 +0000332class AInoP<dag oops, dag iops, Format f, InstrItinClass itin,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000333 string opc, string asm, list<dag> pattern>
Jim Grosbach5e0d2a22009-12-14 18:31:20 +0000334 : InoP<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, itin,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000335 opc, asm, "", pattern>;
Evan Chengfa558782008-09-01 08:25:56 +0000336
337// Ctrl flow instructions
David Goodwinb062c232009-08-06 16:52:47 +0000338class ABI<bits<4> opcod, dag oops, dag iops, InstrItinClass itin,
339 string opc, string asm, list<dag> pattern>
340 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, BrFrm, itin,
341 opc, asm, "", pattern> {
Jim Grosbachb7c01f52008-10-14 20:36:24 +0000342 let Inst{27-24} = opcod;
Evan Chengfa558782008-09-01 08:25:56 +0000343}
David Goodwinb062c232009-08-06 16:52:47 +0000344class ABXI<bits<4> opcod, dag oops, dag iops, InstrItinClass itin,
345 string asm, list<dag> pattern>
346 : XI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, BrFrm, itin,
347 asm, "", pattern> {
Jim Grosbachb7c01f52008-10-14 20:36:24 +0000348 let Inst{27-24} = opcod;
Evan Chengfa558782008-09-01 08:25:56 +0000349}
David Goodwinb062c232009-08-06 16:52:47 +0000350class ABXIx2<dag oops, dag iops, InstrItinClass itin,
351 string asm, list<dag> pattern>
Xerxes Ranbyff66cd42010-07-22 17:28:34 +0000352 : XI<oops, iops, AddrModeNone, Size8Bytes, IndexModeNone, Pseudo, itin,
David Goodwinb062c232009-08-06 16:52:47 +0000353 asm, "", pattern>;
Evan Chengfa558782008-09-01 08:25:56 +0000354
355// BR_JT instructions
David Goodwinb062c232009-08-06 16:52:47 +0000356class JTI<dag oops, dag iops, InstrItinClass itin,
357 string asm, list<dag> pattern>
358 : XI<oops, iops, AddrModeNone, SizeSpecial, IndexModeNone, BrMiscFrm, itin,
Evan Cheng7095cd22008-11-07 09:06:08 +0000359 asm, "", pattern>;
Evan Cheng624844b2008-09-01 01:51:14 +0000360
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000361// Atomic load/store instructions
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000362class AIldrex<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
363 string opc, string asm, list<dag> pattern>
364 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, LdStExFrm, itin,
365 opc, asm, "", pattern> {
Jim Grosbach4e57b522010-10-29 19:58:57 +0000366 bits<4> Rt;
367 bits<4> Rn;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000368 let Inst{27-23} = 0b00011;
369 let Inst{22-21} = opcod;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000370 let Inst{20} = 1;
Jim Grosbach4e57b522010-10-29 19:58:57 +0000371 let Inst{19-16} = Rn;
372 let Inst{15-12} = Rt;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000373 let Inst{11-0} = 0b111110011111;
374}
375class AIstrex<bits<2> opcod, dag oops, dag iops, InstrItinClass itin,
376 string opc, string asm, list<dag> pattern>
377 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, LdStExFrm, itin,
378 opc, asm, "", pattern> {
Jim Grosbach4e57b522010-10-29 19:58:57 +0000379 bits<4> Rd;
380 bits<4> Rt;
381 bits<4> Rn;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000382 let Inst{27-23} = 0b00011;
383 let Inst{22-21} = opcod;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000384 let Inst{20} = 0;
Jim Grosbach4e57b522010-10-29 19:58:57 +0000385 let Inst{19-16} = Rn;
386 let Inst{15-12} = Rd;
Johnny Chen098bd1b2009-12-11 19:37:26 +0000387 let Inst{11-4} = 0b11111001;
Jim Grosbach4e57b522010-10-29 19:58:57 +0000388 let Inst{3-0} = Rt;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000389}
Jim Grosbach3b7e05b2010-10-29 20:21:36 +0000390class AIswp<bit b, dag oops, dag iops, string opc, list<dag> pattern>
391 : AI<oops, iops, MiscFrm, NoItinerary, opc, "\t$Rt, $Rt2, [$Rn]", pattern> {
392 bits<4> Rt;
393 bits<4> Rt2;
394 bits<4> Rn;
395 let Inst{27-23} = 0b00010;
396 let Inst{22} = b;
397 let Inst{21-20} = 0b00;
398 let Inst{19-16} = Rn;
399 let Inst{15-12} = Rt;
400 let Inst{11-4} = 0b00001001;
401 let Inst{3-0} = Rt2;
402}
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000403
Evan Cheng624844b2008-09-01 01:51:14 +0000404// addrmode1 instructions
David Goodwinb062c232009-08-06 16:52:47 +0000405class AI1<bits<4> opcod, dag oops, dag iops, Format f, InstrItinClass itin,
406 string opc, string asm, list<dag> pattern>
407 : I<oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, itin,
408 opc, asm, "", pattern> {
Jim Grosbachb7c01f52008-10-14 20:36:24 +0000409 let Inst{24-21} = opcod;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000410 let Inst{27-26} = 0b00;
Evan Chengc139c222008-08-29 07:40:52 +0000411}
David Goodwinb062c232009-08-06 16:52:47 +0000412class AsI1<bits<4> opcod, dag oops, dag iops, Format f, InstrItinClass itin,
413 string opc, string asm, list<dag> pattern>
414 : sI<oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, itin,
415 opc, asm, "", pattern> {
416 let Inst{24-21} = opcod;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000417 let Inst{27-26} = 0b00;
David Goodwinb062c232009-08-06 16:52:47 +0000418}
419class AXI1<bits<4> opcod, dag oops, dag iops, Format f, InstrItinClass itin,
Evan Cheng2d37f192008-08-28 23:39:26 +0000420 string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +0000421 : XI<oops, iops, AddrMode1, Size4Bytes, IndexModeNone, f, itin,
Evan Chengc139c222008-08-29 07:40:52 +0000422 asm, "", pattern> {
Jim Grosbachb7c01f52008-10-14 20:36:24 +0000423 let Inst{24-21} = opcod;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000424 let Inst{27-26} = 0b00;
Evan Chengc139c222008-08-29 07:40:52 +0000425}
Bob Wilson3968c6a2010-03-23 17:23:59 +0000426class AI1x2<dag oops, dag iops, Format f, InstrItinClass itin,
David Goodwinb062c232009-08-06 16:52:47 +0000427 string opc, string asm, list<dag> pattern>
428 : I<oops, iops, AddrMode1, Size8Bytes, IndexModeNone, f, itin,
429 opc, asm, "", pattern>;
Evan Cheng01fd3f12008-08-31 19:02:21 +0000430
Evan Cheng624844b2008-09-01 01:51:14 +0000431
Evan Chengcccca872008-09-01 01:27:33 +0000432// loads
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000433
Jim Grosbach4a22eba2010-11-19 21:07:51 +0000434// LDR/LDRB/STR/STRB/...
435class AI2ldst<bits<3> op, bit isLd, bit isByte, dag oops, dag iops, AddrMode am,
Jim Grosbach338de3e2010-10-27 23:12:14 +0000436 Format f, InstrItinClass itin, string opc, string asm,
437 list<dag> pattern>
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000438 : I<oops, iops, am, Size4Bytes, IndexModeNone, f, itin, opc, asm,
439 "", pattern> {
440 let Inst{27-25} = op;
441 let Inst{24} = 1; // 24 == P
442 // 23 == U
Jim Grosbach2f790742010-11-13 00:35:48 +0000443 let Inst{22} = isByte;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000444 let Inst{21} = 0; // 21 == W
Jim Grosbach338de3e2010-10-27 23:12:14 +0000445 let Inst{20} = isLd;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000446}
Jim Grosbach2f790742010-11-13 00:35:48 +0000447// Indexed load/stores
448class AI2ldstidx<bit isLd, bit isByte, bit isPre, dag oops, dag iops,
Jim Grosbach6e9aace2010-11-19 21:35:06 +0000449 IndexMode im, Format f, InstrItinClass itin, string opc,
Jim Grosbach2f790742010-11-13 00:35:48 +0000450 string asm, string cstr, list<dag> pattern>
451 : I<oops, iops, AddrMode2, Size4Bytes, im, f, itin,
452 opc, asm, cstr, pattern> {
Jim Grosbach38b469e2010-11-15 20:47:07 +0000453 bits<4> Rt;
Jim Grosbach2f790742010-11-13 00:35:48 +0000454 let Inst{27-26} = 0b01;
455 let Inst{24} = isPre; // P bit
456 let Inst{22} = isByte; // B bit
457 let Inst{21} = isPre; // W bit
458 let Inst{20} = isLd; // L bit
Jim Grosbach38b469e2010-11-15 20:47:07 +0000459 let Inst{15-12} = Rt;
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000460}
Jim Grosbach6e9aace2010-11-19 21:35:06 +0000461class AI2stridx<bit isByte, bit isPre, dag oops, dag iops,
462 IndexMode im, Format f, InstrItinClass itin, string opc,
463 string asm, string cstr, list<dag> pattern>
464 : AI2ldstidx<0, isByte, isPre, oops, iops, im, f, itin, opc, asm, cstr,
465 pattern> {
466 // AM2 store w/ two operands: (GPR, am2offset)
467 // {13} 1 == Rm, 0 == imm12
468 // {12} isAdd
469 // {11-0} imm12/Rm
470 bits<14> offset;
471 bits<4> Rn;
472 let Inst{25} = offset{13};
473 let Inst{23} = offset{12};
474 let Inst{19-16} = Rn;
475 let Inst{11-0} = offset{11-0};
476}
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000477
Evan Cheng624844b2008-09-01 01:51:14 +0000478// addrmode3 instructions
Jim Grosbach76aed402010-11-19 18:16:46 +0000479class AI3ld<bits<4> op, bit op20, dag oops, dag iops, Format f,
480 InstrItinClass itin, string opc, string asm, list<dag> pattern>
Jim Grosbach8e7f8df2010-11-18 00:46:58 +0000481 : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, itin,
482 opc, asm, "", pattern> {
483 bits<14> addr;
484 bits<4> Rt;
485 let Inst{27-25} = 0b000;
486 let Inst{24} = 1; // P bit
487 let Inst{23} = addr{8}; // U bit
488 let Inst{22} = addr{13}; // 1 == imm8, 0 == Rm
489 let Inst{21} = 0; // W bit
Jim Grosbach76aed402010-11-19 18:16:46 +0000490 let Inst{20} = op20; // L bit
Jim Grosbach8e7f8df2010-11-18 00:46:58 +0000491 let Inst{19-16} = addr{12-9}; // Rn
492 let Inst{15-12} = Rt; // Rt
493 let Inst{11-8} = addr{7-4}; // imm7_4/zero
494 let Inst{7-4} = op;
495 let Inst{3-0} = addr{3-0}; // imm3_0/Rm
496}
Evan Cheng169eccc2008-09-01 07:00:14 +0000497
Jim Grosbach003c6e72010-11-19 19:41:26 +0000498class AI3ldstidx<bits<4> op, bit op20, bit isLd, bit isPre, dag oops, dag iops,
499 IndexMode im, Format f, InstrItinClass itin, string opc,
500 string asm, string cstr, list<dag> pattern>
501 : I<oops, iops, AddrMode3, Size4Bytes, im, f, itin,
502 opc, asm, cstr, pattern> {
503 bits<4> Rt;
504 let Inst{27-25} = 0b000;
505 let Inst{24} = isPre; // P bit
506 let Inst{21} = isPre; // W bit
507 let Inst{20} = op20; // L bit
508 let Inst{15-12} = Rt; // Rt
509 let Inst{7-4} = op;
510}
511
Evan Cheng169eccc2008-09-01 07:00:14 +0000512// stores
Jim Grosbach09d7bfd2010-11-19 22:14:31 +0000513class AI3str<bits<4> op, dag oops, dag iops, Format f, InstrItinClass itin,
David Goodwinb062c232009-08-06 16:52:47 +0000514 string opc, string asm, list<dag> pattern>
515 : I<oops, iops, AddrMode3, Size4Bytes, IndexModeNone, f, itin,
516 opc, asm, "", pattern> {
Jim Grosbach607efcb2010-11-11 01:09:40 +0000517 bits<14> addr;
518 bits<4> Rt;
Evan Cheng5edd90c2009-07-08 22:51:32 +0000519 let Inst{27-25} = 0b000;
Jim Grosbach607efcb2010-11-11 01:09:40 +0000520 let Inst{24} = 1; // P bit
521 let Inst{23} = addr{8}; // U bit
522 let Inst{22} = addr{13}; // 1 == imm8, 0 == Rm
523 let Inst{21} = 0; // W bit
524 let Inst{20} = 0; // L bit
525 let Inst{19-16} = addr{12-9}; // Rn
526 let Inst{15-12} = Rt; // Rt
527 let Inst{11-8} = addr{7-4}; // imm7_4/zero
Jim Grosbach09d7bfd2010-11-19 22:14:31 +0000528 let Inst{7-4} = op;
Jim Grosbach607efcb2010-11-11 01:09:40 +0000529 let Inst{3-0} = addr{3-0}; // imm3_0/Rm
Evan Cheng169eccc2008-09-01 07:00:14 +0000530}
Evan Cheng169eccc2008-09-01 07:00:14 +0000531
Evan Cheng169eccc2008-09-01 07:00:14 +0000532// Pre-indexed stores
David Goodwinb062c232009-08-06 16:52:47 +0000533class AI3sthpr<dag oops, dag iops, Format f, InstrItinClass itin,
534 string opc, string asm, string cstr, list<dag> pattern>
535 : I<oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, itin,
536 opc, asm, cstr, pattern> {
Evan Cheng169eccc2008-09-01 07:00:14 +0000537 let Inst{4} = 1;
538 let Inst{5} = 1; // H bit
539 let Inst{6} = 0; // S bit
540 let Inst{7} = 1;
541 let Inst{20} = 0; // L bit
542 let Inst{21} = 1; // W bit
543 let Inst{24} = 1; // P bit
Evan Cheng5edd90c2009-07-08 22:51:32 +0000544 let Inst{27-25} = 0b000;
Evan Cheng169eccc2008-09-01 07:00:14 +0000545}
Johnny Chen688a90e2010-02-18 22:31:18 +0000546class AI3stdpr<dag oops, dag iops, Format f, InstrItinClass itin,
547 string opc, string asm, string cstr, list<dag> pattern>
548 : I<oops, iops, AddrMode3, Size4Bytes, IndexModePre, f, itin,
549 opc, asm, cstr, pattern> {
550 let Inst{4} = 1;
551 let Inst{5} = 1; // H bit
552 let Inst{6} = 1; // S bit
553 let Inst{7} = 1;
554 let Inst{20} = 0; // L bit
555 let Inst{21} = 1; // W bit
556 let Inst{24} = 1; // P bit
557 let Inst{27-25} = 0b000;
558}
Evan Cheng169eccc2008-09-01 07:00:14 +0000559
Evan Cheng169eccc2008-09-01 07:00:14 +0000560// Post-indexed stores
David Goodwinb062c232009-08-06 16:52:47 +0000561class AI3sthpo<dag oops, dag iops, Format f, InstrItinClass itin,
562 string opc, string asm, string cstr, list<dag> pattern>
563 : I<oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, itin,
564 opc, asm, cstr,pattern> {
Evan Cheng169eccc2008-09-01 07:00:14 +0000565 let Inst{4} = 1;
566 let Inst{5} = 1; // H bit
567 let Inst{6} = 0; // S bit
568 let Inst{7} = 1;
569 let Inst{20} = 0; // L bit
Johnny Chen718ed8a2010-03-01 19:22:00 +0000570 let Inst{21} = 0; // W bit
Evan Cheng169eccc2008-09-01 07:00:14 +0000571 let Inst{24} = 0; // P bit
Evan Cheng5edd90c2009-07-08 22:51:32 +0000572 let Inst{27-25} = 0b000;
Evan Cheng169eccc2008-09-01 07:00:14 +0000573}
Johnny Chen688a90e2010-02-18 22:31:18 +0000574class AI3stdpo<dag oops, dag iops, Format f, InstrItinClass itin,
575 string opc, string asm, string cstr, list<dag> pattern>
576 : I<oops, iops, AddrMode3, Size4Bytes, IndexModePost, f, itin,
577 opc, asm, cstr, pattern> {
578 let Inst{4} = 1;
579 let Inst{5} = 1; // H bit
580 let Inst{6} = 1; // S bit
581 let Inst{7} = 1;
582 let Inst{20} = 0; // L bit
583 let Inst{21} = 0; // W bit
584 let Inst{24} = 0; // P bit
585 let Inst{27-25} = 0b000;
586}
Evan Cheng169eccc2008-09-01 07:00:14 +0000587
Evan Cheng624844b2008-09-01 01:51:14 +0000588// addrmode4 instructions
Bill Wendlinge69afc62010-11-13 09:09:38 +0000589class AXI4<dag oops, dag iops, IndexMode im, Format f, InstrItinClass itin,
590 string asm, string cstr, list<dag> pattern>
591 : XI<oops, iops, AddrMode4, Size4Bytes, im, f, itin, asm, cstr, pattern> {
592 bits<4> p;
593 bits<16> regs;
594 bits<4> Rn;
595 let Inst{31-28} = p;
596 let Inst{27-25} = 0b100;
597 let Inst{22} = 0; // S bit
598 let Inst{19-16} = Rn;
599 let Inst{15-0} = regs;
600}
Evan Cheng2d37f192008-08-28 23:39:26 +0000601
Jim Grosbach4d0549e2008-11-03 18:38:31 +0000602// Unsigned multiply, multiply-accumulate instructions.
David Goodwinb062c232009-08-06 16:52:47 +0000603class AMul1I<bits<7> opcod, dag oops, dag iops, InstrItinClass itin,
604 string opc, string asm, list<dag> pattern>
605 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, itin,
606 opc, asm, "", pattern> {
Jim Grosbach4d0549e2008-11-03 18:38:31 +0000607 let Inst{7-4} = 0b1001;
Evan Cheng2686c8f2008-11-06 01:21:28 +0000608 let Inst{20} = 0; // S bit
Evan Cheng47b546d2008-11-06 08:47:38 +0000609 let Inst{27-21} = opcod;
Jim Grosbach4d0549e2008-11-03 18:38:31 +0000610}
David Goodwinb062c232009-08-06 16:52:47 +0000611class AsMul1I<bits<7> opcod, dag oops, dag iops, InstrItinClass itin,
612 string opc, string asm, list<dag> pattern>
613 : sI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, itin,
614 opc, asm, "", pattern> {
Jim Grosbach4d0549e2008-11-03 18:38:31 +0000615 let Inst{7-4} = 0b1001;
Evan Cheng47b546d2008-11-06 08:47:38 +0000616 let Inst{27-21} = opcod;
Evan Cheng2686c8f2008-11-06 01:21:28 +0000617}
618
619// Most significant word multiply
Jim Grosbach22261602010-10-22 17:16:17 +0000620class AMul2I<bits<7> opcod, bits<4> opc7_4, dag oops, dag iops,
621 InstrItinClass itin, string opc, string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +0000622 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, itin,
623 opc, asm, "", pattern> {
Jim Grosbach22261602010-10-22 17:16:17 +0000624 bits<4> Rd;
625 bits<4> Rn;
626 bits<4> Rm;
627 let Inst{7-4} = opc7_4;
Evan Cheng2686c8f2008-11-06 01:21:28 +0000628 let Inst{20} = 1;
Evan Cheng47b546d2008-11-06 08:47:38 +0000629 let Inst{27-21} = opcod;
Jim Grosbach22261602010-10-22 17:16:17 +0000630 let Inst{19-16} = Rd;
631 let Inst{11-8} = Rm;
632 let Inst{3-0} = Rn;
633}
634// MSW multiple w/ Ra operand
635class AMul2Ia<bits<7> opcod, bits<4> opc7_4, dag oops, dag iops,
636 InstrItinClass itin, string opc, string asm, list<dag> pattern>
637 : AMul2I<opcod, opc7_4, oops, iops, itin, opc, asm, pattern> {
638 bits<4> Ra;
639 let Inst{15-12} = Ra;
Jim Grosbach4d0549e2008-11-03 18:38:31 +0000640}
Evan Cheng2d37f192008-08-28 23:39:26 +0000641
Evan Cheng36ae4032008-11-06 03:35:07 +0000642// SMUL<x><y> / SMULW<y> / SMLA<x><y> / SMLAW<x><y>
Jim Grosbach6956a602010-10-22 18:35:16 +0000643class AMulxyIbase<bits<7> opcod, bits<2> bit6_5, dag oops, dag iops,
Jim Grosbachf98df082010-10-22 17:42:06 +0000644 InstrItinClass itin, string opc, string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +0000645 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, MulFrm, itin,
646 opc, asm, "", pattern> {
Jim Grosbach6956a602010-10-22 18:35:16 +0000647 bits<4> Rn;
648 bits<4> Rm;
Evan Cheng36ae4032008-11-06 03:35:07 +0000649 let Inst{4} = 0;
650 let Inst{7} = 1;
651 let Inst{20} = 0;
Evan Cheng47b546d2008-11-06 08:47:38 +0000652 let Inst{27-21} = opcod;
Jim Grosbachf98df082010-10-22 17:42:06 +0000653 let Inst{6-5} = bit6_5;
Jim Grosbach6956a602010-10-22 18:35:16 +0000654 let Inst{11-8} = Rm;
655 let Inst{3-0} = Rn;
656}
657class AMulxyI<bits<7> opcod, bits<2> bit6_5, dag oops, dag iops,
658 InstrItinClass itin, string opc, string asm, list<dag> pattern>
659 : AMulxyIbase<opcod, bit6_5, oops, iops, itin, opc, asm, pattern> {
660 bits<4> Rd;
661 let Inst{19-16} = Rd;
662}
663
664// AMulxyI with Ra operand
665class AMulxyIa<bits<7> opcod, bits<2> bit6_5, dag oops, dag iops,
666 InstrItinClass itin, string opc, string asm, list<dag> pattern>
667 : AMulxyI<opcod, bit6_5, oops, iops, itin, opc, asm, pattern> {
668 bits<4> Ra;
669 let Inst{15-12} = Ra;
670}
671// SMLAL*
672class AMulxyI64<bits<7> opcod, bits<2> bit6_5, dag oops, dag iops,
673 InstrItinClass itin, string opc, string asm, list<dag> pattern>
674 : AMulxyIbase<opcod, bit6_5, oops, iops, itin, opc, asm, pattern> {
675 bits<4> RdLo;
676 bits<4> RdHi;
677 let Inst{19-16} = RdHi;
678 let Inst{15-12} = RdLo;
Evan Cheng36ae4032008-11-06 03:35:07 +0000679}
680
Evan Cheng49d66522008-11-06 22:15:19 +0000681// Extend instructions.
David Goodwinb062c232009-08-06 16:52:47 +0000682class AExtI<bits<8> opcod, dag oops, dag iops, InstrItinClass itin,
683 string opc, string asm, list<dag> pattern>
684 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, ExtFrm, itin,
685 opc, asm, "", pattern> {
Jim Grosbach1e7db682010-10-13 19:56:10 +0000686 // All AExtI instructions have Rd and Rm register operands.
687 bits<4> Rd;
688 bits<4> Rm;
689 let Inst{15-12} = Rd;
690 let Inst{3-0} = Rm;
Evan Cheng49d66522008-11-06 22:15:19 +0000691 let Inst{7-4} = 0b0111;
Jim Grosbach1e7db682010-10-13 19:56:10 +0000692 let Inst{9-8} = 0b00;
Evan Cheng49d66522008-11-06 22:15:19 +0000693 let Inst{27-20} = opcod;
694}
695
Evan Cheng98dc53e2008-11-07 01:41:35 +0000696// Misc Arithmetic instructions.
Jim Grosbach2c9ae052010-10-22 22:12:16 +0000697class AMiscA1I<bits<8> opcod, bits<4> opc7_4, dag oops, dag iops,
698 InstrItinClass itin, string opc, string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +0000699 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, ArithMiscFrm, itin,
700 opc, asm, "", pattern> {
Jim Grosbach2c9ae052010-10-22 22:12:16 +0000701 bits<4> Rd;
702 bits<4> Rm;
Evan Cheng98dc53e2008-11-07 01:41:35 +0000703 let Inst{27-20} = opcod;
Jim Grosbach2c9ae052010-10-22 22:12:16 +0000704 let Inst{19-16} = 0b1111;
705 let Inst{15-12} = Rd;
706 let Inst{11-8} = 0b1111;
707 let Inst{7-4} = opc7_4;
708 let Inst{3-0} = Rm;
709}
710
711// PKH instructions
712class APKHI<bits<8> opcod, bit tb, dag oops, dag iops, InstrItinClass itin,
713 string opc, string asm, list<dag> pattern>
714 : I<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, ArithMiscFrm, itin,
715 opc, asm, "", pattern> {
716 bits<4> Rd;
717 bits<4> Rn;
718 bits<4> Rm;
719 bits<8> sh;
720 let Inst{27-20} = opcod;
721 let Inst{19-16} = Rn;
722 let Inst{15-12} = Rd;
723 let Inst{11-7} = sh{7-3};
724 let Inst{6} = tb;
725 let Inst{5-4} = 0b01;
726 let Inst{3-0} = Rm;
Evan Cheng98dc53e2008-11-07 01:41:35 +0000727}
728
Evan Cheng2d37f192008-08-28 23:39:26 +0000729//===----------------------------------------------------------------------===//
730
731// ARMPat - Same as Pat<>, but requires that the compiler be in ARM mode.
732class ARMPat<dag pattern, dag result> : Pat<pattern, result> {
733 list<Predicate> Predicates = [IsARM];
734}
735class ARMV5TEPat<dag pattern, dag result> : Pat<pattern, result> {
736 list<Predicate> Predicates = [IsARM, HasV5TE];
737}
738class ARMV6Pat<dag pattern, dag result> : Pat<pattern, result> {
739 list<Predicate> Predicates = [IsARM, HasV6];
740}
Evan Chengee98fa92008-08-29 06:41:12 +0000741
742//===----------------------------------------------------------------------===//
743//
744// Thumb Instruction Format Definitions.
745//
746
Evan Chengee98fa92008-08-29 06:41:12 +0000747// TI - Thumb instruction.
748
Evan Chengcd4cdd12009-07-11 06:43:01 +0000749class ThumbI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000750 InstrItinClass itin, string asm, string cstr, list<dag> pattern>
Johnny Chenc28e6292009-12-15 17:24:14 +0000751 : InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Evan Chengcd4cdd12009-07-11 06:43:01 +0000752 let OutOperandList = oops;
753 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +0000754 let AsmString = asm;
Evan Chengee98fa92008-08-29 06:41:12 +0000755 let Pattern = pattern;
756 list<Predicate> Predicates = [IsThumb];
757}
758
David Goodwinb062c232009-08-06 16:52:47 +0000759class TI<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
760 : ThumbI<oops, iops, AddrModeNone, Size2Bytes, itin, asm, "", pattern>;
Evan Chengee98fa92008-08-29 06:41:12 +0000761
Evan Cheng7cc6aca2009-08-04 23:47:55 +0000762// Two-address instructions
Bob Wilson3968c6a2010-03-23 17:23:59 +0000763class TIt<dag oops, dag iops, InstrItinClass itin, string asm,
764 list<dag> pattern>
765 : ThumbI<oops, iops, AddrModeNone, Size2Bytes, itin, asm, "$lhs = $dst",
766 pattern>;
Evan Cheng7cc6aca2009-08-04 23:47:55 +0000767
Johnny Chenc28e6292009-12-15 17:24:14 +0000768// tBL, tBX 32-bit instructions
769class TIx2<bits<5> opcod1, bits<2> opcod2, bit opcod3,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000770 dag oops, dag iops, InstrItinClass itin, string asm,
771 list<dag> pattern>
772 : ThumbI<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>,
773 Encoding {
Johnny Chenc28e6292009-12-15 17:24:14 +0000774 let Inst{31-27} = opcod1;
775 let Inst{15-14} = opcod2;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000776 let Inst{12} = opcod3;
Johnny Chenc28e6292009-12-15 17:24:14 +0000777}
Evan Chengee98fa92008-08-29 06:41:12 +0000778
779// BR_JT instructions
Bob Wilson3968c6a2010-03-23 17:23:59 +0000780class TJTI<dag oops, dag iops, InstrItinClass itin, string asm,
781 list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +0000782 : ThumbI<oops, iops, AddrModeNone, SizeSpecial, itin, asm, "", pattern>;
Evan Chengee98fa92008-08-29 06:41:12 +0000783
Evan Chengbec1dba892009-06-23 19:38:13 +0000784// Thumb1 only
Evan Chengcd4cdd12009-07-11 06:43:01 +0000785class Thumb1I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000786 InstrItinClass itin, string asm, string cstr, list<dag> pattern>
Johnny Chenc28e6292009-12-15 17:24:14 +0000787 : InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Evan Chengcd4cdd12009-07-11 06:43:01 +0000788 let OutOperandList = oops;
789 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +0000790 let AsmString = asm;
Evan Chengbec1dba892009-06-23 19:38:13 +0000791 let Pattern = pattern;
Jim Grosbachfddf36d2010-11-01 17:08:58 +0000792 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Evan Chengbec1dba892009-06-23 19:38:13 +0000793}
794
David Goodwinb062c232009-08-06 16:52:47 +0000795class T1I<dag oops, dag iops, InstrItinClass itin,
796 string asm, list<dag> pattern>
797 : Thumb1I<oops, iops, AddrModeNone, Size2Bytes, itin, asm, "", pattern>;
798class T1Ix2<dag oops, dag iops, InstrItinClass itin,
799 string asm, list<dag> pattern>
800 : Thumb1I<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>;
801class T1JTI<dag oops, dag iops, InstrItinClass itin,
802 string asm, list<dag> pattern>
Johnny Chen466231a2009-12-16 02:32:54 +0000803 : Thumb1I<oops, iops, AddrModeNone, SizeSpecial, itin, asm, "", pattern>;
Evan Chengbec1dba892009-06-23 19:38:13 +0000804
805// Two-address instructions
David Goodwinb062c232009-08-06 16:52:47 +0000806class T1It<dag oops, dag iops, InstrItinClass itin,
Bob Wilson947f04b2010-03-13 01:08:20 +0000807 string asm, string cstr, list<dag> pattern>
Bob Wilson3968c6a2010-03-23 17:23:59 +0000808 : Thumb1I<oops, iops, AddrModeNone, Size2Bytes, itin,
Bob Wilson947f04b2010-03-13 01:08:20 +0000809 asm, cstr, pattern>;
Evan Chengcd4cdd12009-07-11 06:43:01 +0000810
811// Thumb1 instruction that can either be predicated or set CPSR.
812class Thumb1sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000813 InstrItinClass itin,
Evan Chengcd4cdd12009-07-11 06:43:01 +0000814 string opc, string asm, string cstr, list<dag> pattern>
Johnny Chenc28e6292009-12-15 17:24:14 +0000815 : InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Chris Lattnerfb2ceed2010-03-18 21:06:54 +0000816 let OutOperandList = !con(oops, (outs s_cc_out:$s));
817 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +0000818 let AsmString = !strconcat(opc, "${s}${p}", asm);
Evan Chengcd4cdd12009-07-11 06:43:01 +0000819 let Pattern = pattern;
Jim Grosbachfddf36d2010-11-01 17:08:58 +0000820 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Evan Chengcd4cdd12009-07-11 06:43:01 +0000821}
822
David Goodwinb062c232009-08-06 16:52:47 +0000823class T1sI<dag oops, dag iops, InstrItinClass itin,
824 string opc, string asm, list<dag> pattern>
825 : Thumb1sI<oops, iops, AddrModeNone, Size2Bytes, itin, opc, asm, "", pattern>;
Evan Chengcd4cdd12009-07-11 06:43:01 +0000826
827// Two-address instructions
David Goodwinb062c232009-08-06 16:52:47 +0000828class T1sIt<dag oops, dag iops, InstrItinClass itin,
829 string opc, string asm, list<dag> pattern>
830 : Thumb1sI<oops, iops, AddrModeNone, Size2Bytes, itin, opc, asm,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000831 "$lhs = $dst", pattern>;
Evan Chengcd4cdd12009-07-11 06:43:01 +0000832
833// Thumb1 instruction that can be predicated.
834class Thumb1pI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000835 InstrItinClass itin,
Evan Chengcd4cdd12009-07-11 06:43:01 +0000836 string opc, string asm, string cstr, list<dag> pattern>
Johnny Chenc28e6292009-12-15 17:24:14 +0000837 : InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Evan Chengcd4cdd12009-07-11 06:43:01 +0000838 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +0000839 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +0000840 let AsmString = !strconcat(opc, "${p}", asm);
Evan Chengcd4cdd12009-07-11 06:43:01 +0000841 let Pattern = pattern;
Jim Grosbachfddf36d2010-11-01 17:08:58 +0000842 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Evan Chengcd4cdd12009-07-11 06:43:01 +0000843}
844
David Goodwinb062c232009-08-06 16:52:47 +0000845class T1pI<dag oops, dag iops, InstrItinClass itin,
846 string opc, string asm, list<dag> pattern>
847 : Thumb1pI<oops, iops, AddrModeNone, Size2Bytes, itin, opc, asm, "", pattern>;
Evan Chengcd4cdd12009-07-11 06:43:01 +0000848
849// Two-address instructions
David Goodwinb062c232009-08-06 16:52:47 +0000850class T1pIt<dag oops, dag iops, InstrItinClass itin,
851 string opc, string asm, list<dag> pattern>
852 : Thumb1pI<oops, iops, AddrModeNone, Size2Bytes, itin, opc, asm,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000853 "$lhs = $dst", pattern>;
Evan Chengcd4cdd12009-07-11 06:43:01 +0000854
David Goodwinb062c232009-08-06 16:52:47 +0000855class T1pI1<dag oops, dag iops, InstrItinClass itin,
856 string opc, string asm, list<dag> pattern>
857 : Thumb1pI<oops, iops, AddrModeT1_1, Size2Bytes, itin, opc, asm, "", pattern>;
858class T1pI2<dag oops, dag iops, InstrItinClass itin,
859 string opc, string asm, list<dag> pattern>
860 : Thumb1pI<oops, iops, AddrModeT1_2, Size2Bytes, itin, opc, asm, "", pattern>;
861class T1pI4<dag oops, dag iops, InstrItinClass itin,
862 string opc, string asm, list<dag> pattern>
863 : Thumb1pI<oops, iops, AddrModeT1_4, Size2Bytes, itin, opc, asm, "", pattern>;
Bob Wilson3968c6a2010-03-23 17:23:59 +0000864class T1pIs<dag oops, dag iops,
David Goodwinb062c232009-08-06 16:52:47 +0000865 InstrItinClass itin, string opc, string asm, list<dag> pattern>
866 : Thumb1pI<oops, iops, AddrModeT1_s, Size2Bytes, itin, opc, asm, "", pattern>;
Evan Chengbec1dba892009-06-23 19:38:13 +0000867
Johnny Chen466231a2009-12-16 02:32:54 +0000868class Encoding16 : Encoding {
869 let Inst{31-16} = 0x0000;
870}
871
Johnny Chenc28e6292009-12-15 17:24:14 +0000872// A6.2 16-bit Thumb instruction encoding
Johnny Chen466231a2009-12-16 02:32:54 +0000873class T1Encoding<bits<6> opcode> : Encoding16 {
Johnny Chenc28e6292009-12-15 17:24:14 +0000874 let Inst{15-10} = opcode;
875}
876
877// A6.2.1 Shift (immediate), add, subtract, move, and compare encoding.
Johnny Chen466231a2009-12-16 02:32:54 +0000878class T1General<bits<5> opcode> : Encoding16 {
Johnny Chenc28e6292009-12-15 17:24:14 +0000879 let Inst{15-14} = 0b00;
880 let Inst{13-9} = opcode;
881}
882
883// A6.2.2 Data-processing encoding.
Johnny Chen466231a2009-12-16 02:32:54 +0000884class T1DataProcessing<bits<4> opcode> : Encoding16 {
Johnny Chenc28e6292009-12-15 17:24:14 +0000885 let Inst{15-10} = 0b010000;
886 let Inst{9-6} = opcode;
887}
888
889// A6.2.3 Special data instructions and branch and exchange encoding.
Johnny Chen466231a2009-12-16 02:32:54 +0000890class T1Special<bits<4> opcode> : Encoding16 {
Johnny Chenc28e6292009-12-15 17:24:14 +0000891 let Inst{15-10} = 0b010001;
Bill Wendling345b48f2010-11-17 00:45:23 +0000892 let Inst{9-6} = opcode;
Johnny Chenc28e6292009-12-15 17:24:14 +0000893}
894
895// A6.2.4 Load/store single data item encoding.
Johnny Chen466231a2009-12-16 02:32:54 +0000896class T1LoadStore<bits<4> opA, bits<3> opB> : Encoding16 {
Johnny Chenc28e6292009-12-15 17:24:14 +0000897 let Inst{15-12} = opA;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000898 let Inst{11-9} = opB;
Johnny Chenc28e6292009-12-15 17:24:14 +0000899}
Bill Wendlingb70dc872010-08-31 07:50:46 +0000900class T1LdSt<bits<3> opB> : T1LoadStore<0b0101, opB>;
Johnny Chenc28e6292009-12-15 17:24:14 +0000901class T1LdSt4Imm<bits<3> opB> : T1LoadStore<0b0110, opB>; // Immediate, 4 bytes
902class T1LdSt1Imm<bits<3> opB> : T1LoadStore<0b0111, opB>; // Immediate, 1 byte
903class T1LdSt2Imm<bits<3> opB> : T1LoadStore<0b1000, opB>; // Immediate, 2 bytes
Bill Wendlingb70dc872010-08-31 07:50:46 +0000904class T1LdStSP<bits<3> opB> : T1LoadStore<0b1001, opB>; // SP relative
Johnny Chenc28e6292009-12-15 17:24:14 +0000905
906// A6.2.5 Miscellaneous 16-bit instructions encoding.
Johnny Chen466231a2009-12-16 02:32:54 +0000907class T1Misc<bits<7> opcode> : Encoding16 {
Johnny Chenc28e6292009-12-15 17:24:14 +0000908 let Inst{15-12} = 0b1011;
909 let Inst{11-5} = opcode;
910}
911
Evan Chengd76f0be2009-06-25 02:08:06 +0000912// Thumb2I - Thumb2 instruction. Almost all Thumb2 instructions are predicable.
913class Thumb2I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000914 InstrItinClass itin,
Evan Chengd76f0be2009-06-25 02:08:06 +0000915 string opc, string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000916 : InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Evan Chengd76f0be2009-06-25 02:08:06 +0000917 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +0000918 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +0000919 let AsmString = !strconcat(opc, "${p}", asm);
Evan Chengd76f0be2009-06-25 02:08:06 +0000920 let Pattern = pattern;
Evan Cheng2c450d32009-07-02 06:38:40 +0000921 list<Predicate> Predicates = [IsThumb2];
Evan Chengd76f0be2009-06-25 02:08:06 +0000922}
923
Bill Wendlingb70dc872010-08-31 07:50:46 +0000924// Same as Thumb2I except it can optionally modify CPSR. Note it's modeled as an
925// input operand since by default it's a zero register. It will become an
926// implicit def once it's "flipped".
Jim Grosbachb9386552010-10-13 23:12:26 +0000927//
Evan Chengd76f0be2009-06-25 02:08:06 +0000928// FIXME: This uses unified syntax so {s} comes before {p}. We should make it
929// more consistent.
930class Thumb2sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000931 InstrItinClass itin,
Evan Chengd76f0be2009-06-25 02:08:06 +0000932 string opc, string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000933 : InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Evan Chengd76f0be2009-06-25 02:08:06 +0000934 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +0000935 let InOperandList = !con(iops, (ins pred:$p, cc_out:$s));
Chris Lattner04c342e2010-10-06 00:05:18 +0000936 let AsmString = !strconcat(opc, "${s}${p}", asm);
Evan Chengd76f0be2009-06-25 02:08:06 +0000937 let Pattern = pattern;
Evan Cheng2c450d32009-07-02 06:38:40 +0000938 list<Predicate> Predicates = [IsThumb2];
Evan Chengd76f0be2009-06-25 02:08:06 +0000939}
940
941// Special cases
942class Thumb2XI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +0000943 InstrItinClass itin,
Evan Chengd76f0be2009-06-25 02:08:06 +0000944 string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +0000945 : InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
Evan Chengd76f0be2009-06-25 02:08:06 +0000946 let OutOperandList = oops;
947 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +0000948 let AsmString = asm;
Evan Cheng431cf562009-06-23 17:48:47 +0000949 let Pattern = pattern;
Evan Cheng2c450d32009-07-02 06:38:40 +0000950 list<Predicate> Predicates = [IsThumb2];
Evan Cheng431cf562009-06-23 17:48:47 +0000951}
952
Jim Grosbach36d4dec2009-12-01 18:10:36 +0000953class ThumbXI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
Bob Wilson3968c6a2010-03-23 17:23:59 +0000954 InstrItinClass itin,
955 string asm, string cstr, list<dag> pattern>
Jim Grosbach36d4dec2009-12-01 18:10:36 +0000956 : InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
957 let OutOperandList = oops;
958 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +0000959 let AsmString = asm;
Jim Grosbach36d4dec2009-12-01 18:10:36 +0000960 let Pattern = pattern;
Jim Grosbachfddf36d2010-11-01 17:08:58 +0000961 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
Jim Grosbach36d4dec2009-12-01 18:10:36 +0000962}
963
David Goodwinb062c232009-08-06 16:52:47 +0000964class T2I<dag oops, dag iops, InstrItinClass itin,
965 string opc, string asm, list<dag> pattern>
966 : Thumb2I<oops, iops, AddrModeNone, Size4Bytes, itin, opc, asm, "", pattern>;
967class T2Ii12<dag oops, dag iops, InstrItinClass itin,
968 string opc, string asm, list<dag> pattern>
Bob Wilson3968c6a2010-03-23 17:23:59 +0000969 : Thumb2I<oops, iops, AddrModeT2_i12, Size4Bytes, itin, opc, asm, "",pattern>;
David Goodwinb062c232009-08-06 16:52:47 +0000970class T2Ii8<dag oops, dag iops, InstrItinClass itin,
971 string opc, string asm, list<dag> pattern>
972 : Thumb2I<oops, iops, AddrModeT2_i8, Size4Bytes, itin, opc, asm, "", pattern>;
973class T2Iso<dag oops, dag iops, InstrItinClass itin,
974 string opc, string asm, list<dag> pattern>
975 : Thumb2I<oops, iops, AddrModeT2_so, Size4Bytes, itin, opc, asm, "", pattern>;
976class T2Ipc<dag oops, dag iops, InstrItinClass itin,
977 string opc, string asm, list<dag> pattern>
978 : Thumb2I<oops, iops, AddrModeT2_pc, Size4Bytes, itin, opc, asm, "", pattern>;
Johnny Chenc28e6292009-12-15 17:24:14 +0000979class T2Ii8s4<bit P, bit W, bit load, dag oops, dag iops, InstrItinClass itin,
David Goodwinb062c232009-08-06 16:52:47 +0000980 string opc, string asm, list<dag> pattern>
Johnny Chenc28e6292009-12-15 17:24:14 +0000981 : Thumb2I<oops, iops, AddrModeT2_i8s4, Size4Bytes, itin, opc, asm, "",
982 pattern> {
983 let Inst{31-27} = 0b11101;
984 let Inst{26-25} = 0b00;
Bill Wendlingb70dc872010-08-31 07:50:46 +0000985 let Inst{24} = P;
986 let Inst{23} = ?; // The U bit.
987 let Inst{22} = 1;
988 let Inst{21} = W;
989 let Inst{20} = load;
Johnny Chenc28e6292009-12-15 17:24:14 +0000990}
Evan Chengd76f0be2009-06-25 02:08:06 +0000991
David Goodwinb062c232009-08-06 16:52:47 +0000992class T2sI<dag oops, dag iops, InstrItinClass itin,
993 string opc, string asm, list<dag> pattern>
994 : Thumb2sI<oops, iops, AddrModeNone, Size4Bytes, itin, opc, asm, "", pattern>;
Evan Chengd76f0be2009-06-25 02:08:06 +0000995
David Goodwinb062c232009-08-06 16:52:47 +0000996class T2XI<dag oops, dag iops, InstrItinClass itin,
997 string asm, list<dag> pattern>
998 : Thumb2XI<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>;
999class T2JTI<dag oops, dag iops, InstrItinClass itin,
1000 string asm, list<dag> pattern>
1001 : Thumb2XI<oops, iops, AddrModeNone, SizeSpecial, itin, asm, "", pattern>;
Evan Cheng431cf562009-06-23 17:48:47 +00001002
Evan Cheng83e0d482009-09-28 09:14:39 +00001003class T2Ix2<dag oops, dag iops, InstrItinClass itin,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001004 string opc, string asm, list<dag> pattern>
Evan Cheng83e0d482009-09-28 09:14:39 +00001005 : Thumb2I<oops, iops, AddrModeNone, Size8Bytes, itin, opc, asm, "", pattern>;
1006
Bob Wilson947f04b2010-03-13 01:08:20 +00001007// Two-address instructions
1008class T2XIt<dag oops, dag iops, InstrItinClass itin,
1009 string asm, string cstr, list<dag> pattern>
1010 : Thumb2XI<oops, iops, AddrModeNone, Size4Bytes, itin, asm, cstr, pattern>;
Evan Cheng83e0d482009-09-28 09:14:39 +00001011
Evan Cheng84c6cda2009-07-02 07:28:31 +00001012// T2Iidxldst - Thumb2 indexed load / store instructions.
Johnny Chenc28e6292009-12-15 17:24:14 +00001013class T2Iidxldst<bit signed, bits<2> opcod, bit load, bit pre,
1014 dag oops, dag iops,
1015 AddrMode am, IndexMode im, InstrItinClass itin,
Evan Cheng84c6cda2009-07-02 07:28:31 +00001016 string opc, string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +00001017 : InstARM<am, Size4Bytes, im, ThumbFrm, GenericDomain, cstr, itin> {
Evan Cheng84c6cda2009-07-02 07:28:31 +00001018 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +00001019 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +00001020 let AsmString = !strconcat(opc, "${p}", asm);
Evan Cheng84c6cda2009-07-02 07:28:31 +00001021 let Pattern = pattern;
1022 list<Predicate> Predicates = [IsThumb2];
Johnny Chenc28e6292009-12-15 17:24:14 +00001023 let Inst{31-27} = 0b11111;
1024 let Inst{26-25} = 0b00;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001025 let Inst{24} = signed;
1026 let Inst{23} = 0;
Johnny Chenc28e6292009-12-15 17:24:14 +00001027 let Inst{22-21} = opcod;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001028 let Inst{20} = load;
1029 let Inst{11} = 1;
Johnny Chenc28e6292009-12-15 17:24:14 +00001030 // (P, W) = (1, 1) Pre-indexed or (0, 1) Post-indexed
Bill Wendlingb70dc872010-08-31 07:50:46 +00001031 let Inst{10} = pre; // The P bit.
1032 let Inst{8} = 1; // The W bit.
Evan Cheng84c6cda2009-07-02 07:28:31 +00001033}
1034
David Goodwine5b969f2009-07-27 19:59:26 +00001035// Tv5Pat - Same as Pat<>, but requires V5T Thumb mode.
1036class Tv5Pat<dag pattern, dag result> : Pat<pattern, result> {
Jim Grosbachfddf36d2010-11-01 17:08:58 +00001037 list<Predicate> Predicates = [IsThumb, IsThumb1Only, HasV5T];
David Goodwine5b969f2009-07-27 19:59:26 +00001038}
1039
1040// T1Pat - Same as Pat<>, but requires that the compiler be in Thumb1 mode.
1041class T1Pat<dag pattern, dag result> : Pat<pattern, result> {
Jim Grosbachfddf36d2010-11-01 17:08:58 +00001042 list<Predicate> Predicates = [IsThumb, IsThumb1Only];
David Goodwine5b969f2009-07-27 19:59:26 +00001043}
Evan Cheng84c6cda2009-07-02 07:28:31 +00001044
Evan Chengeab9ca72009-06-27 02:26:13 +00001045// T2Pat - Same as Pat<>, but requires that the compiler be in Thumb2 mode.
1046class T2Pat<dag pattern, dag result> : Pat<pattern, result> {
Evan Cheng2c450d32009-07-02 06:38:40 +00001047 list<Predicate> Predicates = [IsThumb2];
Evan Cheng431cf562009-06-23 17:48:47 +00001048}
1049
Evan Chengee98fa92008-08-29 06:41:12 +00001050//===----------------------------------------------------------------------===//
1051
Evan Chengac2af2f2008-11-11 02:11:05 +00001052//===----------------------------------------------------------------------===//
1053// ARM VFP Instruction templates.
1054//
1055
David Goodwin81cdd212009-07-10 17:03:29 +00001056// Almost all VFP instructions are predicable.
1057class VFPI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +00001058 IndexMode im, Format f, InstrItinClass itin,
1059 string opc, string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +00001060 : InstARM<am, sz, im, f, VFPDomain, cstr, itin> {
Jim Grosbach576640f2010-10-12 21:22:40 +00001061 bits<4> p;
1062 let Inst{31-28} = p;
David Goodwin81cdd212009-07-10 17:03:29 +00001063 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +00001064 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +00001065 let AsmString = !strconcat(opc, "${p}", asm);
David Goodwin81cdd212009-07-10 17:03:29 +00001066 let Pattern = pattern;
1067 list<Predicate> Predicates = [HasVFP2];
1068}
1069
1070// Special cases
1071class VFPXI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
David Goodwinb062c232009-08-06 16:52:47 +00001072 IndexMode im, Format f, InstrItinClass itin,
1073 string asm, string cstr, list<dag> pattern>
Anton Korobeynikov14635da2009-11-02 00:10:38 +00001074 : InstARM<am, sz, im, f, VFPDomain, cstr, itin> {
Bill Wendling345b48f2010-11-17 00:45:23 +00001075 bits<4> p;
1076 let Inst{31-28} = p;
David Goodwin81cdd212009-07-10 17:03:29 +00001077 let OutOperandList = oops;
1078 let InOperandList = iops;
Bob Wilson722bff22010-05-24 20:08:34 +00001079 let AsmString = asm;
David Goodwin81cdd212009-07-10 17:03:29 +00001080 let Pattern = pattern;
1081 list<Predicate> Predicates = [HasVFP2];
1082}
1083
David Goodwinb062c232009-08-06 16:52:47 +00001084class VFPAI<dag oops, dag iops, Format f, InstrItinClass itin,
1085 string opc, string asm, list<dag> pattern>
1086 : VFPI<oops, iops, AddrModeNone, Size4Bytes, IndexModeNone, f, itin,
1087 opc, asm, "", pattern>;
David Goodwin81cdd212009-07-10 17:03:29 +00001088
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001089// ARM VFP addrmode5 loads and stores
1090class ADI5<bits<4> opcod1, bits<2> opcod2, dag oops, dag iops,
David Goodwinb062c232009-08-06 16:52:47 +00001091 InstrItinClass itin,
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001092 string opc, string asm, list<dag> pattern>
David Goodwin81cdd212009-07-10 17:03:29 +00001093 : VFPI<oops, iops, AddrMode5, Size4Bytes, IndexModeNone,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001094 VFPLdStFrm, itin, opc, asm, "", pattern> {
Bill Wendlingc0024632010-11-04 00:59:42 +00001095 // Instruction operands.
1096 bits<5> Dd;
1097 bits<13> addr;
1098
1099 // Encode instruction operands.
1100 let Inst{23} = addr{8}; // U (add = (U == '1'))
1101 let Inst{22} = Dd{4};
1102 let Inst{19-16} = addr{12-9}; // Rn
1103 let Inst{15-12} = Dd{3-0};
1104 let Inst{7-0} = addr{7-0}; // imm8
1105
Evan Chengac2af2f2008-11-11 02:11:05 +00001106 // TODO: Mark the instructions with the appropriate subtarget info.
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001107 let Inst{27-24} = opcod1;
1108 let Inst{21-20} = opcod2;
Bill Wendling98c29d72010-10-12 22:03:19 +00001109 let Inst{11-9} = 0b101;
1110 let Inst{8} = 1; // Double precision
Anton Korobeynikov8cce1eb2009-11-02 00:11:06 +00001111
1112 // 64-bit loads & stores operate on both NEON and VFP pipelines.
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +00001113 let D = VFPNeonDomain;
Evan Chengac2af2f2008-11-11 02:11:05 +00001114}
1115
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001116class ASI5<bits<4> opcod1, bits<2> opcod2, dag oops, dag iops,
David Goodwinb062c232009-08-06 16:52:47 +00001117 InstrItinClass itin,
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001118 string opc, string asm, list<dag> pattern>
David Goodwin81cdd212009-07-10 17:03:29 +00001119 : VFPI<oops, iops, AddrMode5, Size4Bytes, IndexModeNone,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001120 VFPLdStFrm, itin, opc, asm, "", pattern> {
Bill Wendlingc0024632010-11-04 00:59:42 +00001121 // Instruction operands.
1122 bits<5> Sd;
1123 bits<13> addr;
1124
1125 // Encode instruction operands.
1126 let Inst{23} = addr{8}; // U (add = (U == '1'))
1127 let Inst{22} = Sd{0};
1128 let Inst{19-16} = addr{12-9}; // Rn
1129 let Inst{15-12} = Sd{4-1};
1130 let Inst{7-0} = addr{7-0}; // imm8
1131
Evan Chengac2af2f2008-11-11 02:11:05 +00001132 // TODO: Mark the instructions with the appropriate subtarget info.
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001133 let Inst{27-24} = opcod1;
1134 let Inst{21-20} = opcod2;
Bill Wendling98c29d72010-10-12 22:03:19 +00001135 let Inst{11-9} = 0b101;
1136 let Inst{8} = 0; // Single precision
Evan Chengac2af2f2008-11-11 02:11:05 +00001137}
1138
Bob Wilson6b853c32010-09-16 00:31:02 +00001139// VFP Load / store multiple pseudo instructions.
1140class PseudoVFPLdStM<dag oops, dag iops, InstrItinClass itin, string cstr,
1141 list<dag> pattern>
1142 : InstARM<AddrMode4, Size4Bytes, IndexModeNone, Pseudo, VFPNeonDomain,
1143 cstr, itin> {
1144 let OutOperandList = oops;
1145 let InOperandList = !con(iops, (ins pred:$p));
1146 let Pattern = pattern;
1147 list<Predicate> Predicates = [HasVFP2];
1148}
1149
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001150// Load / store multiple
Jim Grosbachabcbe242010-09-08 00:25:50 +00001151class AXDI4<dag oops, dag iops, IndexMode im, InstrItinClass itin,
Bob Wilson947f04b2010-03-13 01:08:20 +00001152 string asm, string cstr, list<dag> pattern>
Jim Grosbachabcbe242010-09-08 00:25:50 +00001153 : VFPXI<oops, iops, AddrMode4, Size4Bytes, im,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001154 VFPLdStMulFrm, itin, asm, cstr, pattern> {
Bill Wendling345b48f2010-11-17 00:45:23 +00001155 // Instruction operands.
1156 bits<4> Rn;
1157 bits<13> regs;
1158
1159 // Encode instruction operands.
1160 let Inst{19-16} = Rn;
1161 let Inst{22} = regs{12};
1162 let Inst{15-12} = regs{11-8};
1163 let Inst{7-0} = regs{7-0};
1164
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001165 // TODO: Mark the instructions with the appropriate subtarget info.
1166 let Inst{27-25} = 0b110;
Bill Wendling98c29d72010-10-12 22:03:19 +00001167 let Inst{11-9} = 0b101;
1168 let Inst{8} = 1; // Double precision
Anton Korobeynikov8cce1eb2009-11-02 00:11:06 +00001169
1170 // 64-bit loads & stores operate on both NEON and VFP pipelines.
Jakob Stoklund Olesenb93331f2010-04-05 03:10:20 +00001171 let D = VFPNeonDomain;
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001172}
1173
Jim Grosbachabcbe242010-09-08 00:25:50 +00001174class AXSI4<dag oops, dag iops, IndexMode im, InstrItinClass itin,
Bob Wilson947f04b2010-03-13 01:08:20 +00001175 string asm, string cstr, list<dag> pattern>
Jim Grosbachabcbe242010-09-08 00:25:50 +00001176 : VFPXI<oops, iops, AddrMode4, Size4Bytes, im,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001177 VFPLdStMulFrm, itin, asm, cstr, pattern> {
Bill Wendling345b48f2010-11-17 00:45:23 +00001178 // Instruction operands.
1179 bits<4> Rn;
1180 bits<13> regs;
1181
1182 // Encode instruction operands.
1183 let Inst{19-16} = Rn;
1184 let Inst{22} = regs{8};
1185 let Inst{15-12} = regs{12-9};
1186 let Inst{7-0} = regs{7-0};
1187
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001188 // TODO: Mark the instructions with the appropriate subtarget info.
1189 let Inst{27-25} = 0b110;
Bill Wendling98c29d72010-10-12 22:03:19 +00001190 let Inst{11-9} = 0b101;
1191 let Inst{8} = 0; // Single precision
Evan Cheng8cbbcb12008-11-11 21:48:44 +00001192}
1193
Evan Chengac2af2f2008-11-11 02:11:05 +00001194// Double precision, unary
Johnny Chen34a6afc2010-01-29 23:21:10 +00001195class ADuI<bits<5> opcod1, bits<2> opcod2, bits<4> opcod3, bits<2> opcod4,
1196 bit opcod5, dag oops, dag iops, InstrItinClass itin, string opc,
1197 string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +00001198 : VFPAI<oops, iops, VFPUnaryFrm, itin, opc, asm, pattern> {
Bill Wendling26233432010-11-01 06:00:39 +00001199 // Instruction operands.
1200 bits<5> Dd;
1201 bits<5> Dm;
1202
1203 // Encode instruction operands.
1204 let Inst{3-0} = Dm{3-0};
1205 let Inst{5} = Dm{4};
1206 let Inst{15-12} = Dd{3-0};
1207 let Inst{22} = Dd{4};
1208
Johnny Chen34a6afc2010-01-29 23:21:10 +00001209 let Inst{27-23} = opcod1;
1210 let Inst{21-20} = opcod2;
1211 let Inst{19-16} = opcod3;
Bill Wendling98c29d72010-10-12 22:03:19 +00001212 let Inst{11-9} = 0b101;
1213 let Inst{8} = 1; // Double precision
Johnny Chen34a6afc2010-01-29 23:21:10 +00001214 let Inst{7-6} = opcod4;
1215 let Inst{4} = opcod5;
Evan Chengac2af2f2008-11-11 02:11:05 +00001216}
1217
1218// Double precision, binary
Johnny Chen34a6afc2010-01-29 23:21:10 +00001219class ADbI<bits<5> opcod1, bits<2> opcod2, bit op6, bit op4, dag oops,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001220 dag iops, InstrItinClass itin, string opc, string asm,
1221 list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +00001222 : VFPAI<oops, iops, VFPBinaryFrm, itin, opc, asm, pattern> {
Bill Wendling26233432010-11-01 06:00:39 +00001223 // Instruction operands.
1224 bits<5> Dd;
1225 bits<5> Dn;
1226 bits<5> Dm;
1227
1228 // Encode instruction operands.
1229 let Inst{3-0} = Dm{3-0};
1230 let Inst{5} = Dm{4};
1231 let Inst{19-16} = Dn{3-0};
1232 let Inst{7} = Dn{4};
1233 let Inst{15-12} = Dd{3-0};
1234 let Inst{22} = Dd{4};
1235
Johnny Chen34a6afc2010-01-29 23:21:10 +00001236 let Inst{27-23} = opcod1;
1237 let Inst{21-20} = opcod2;
Bill Wendling98c29d72010-10-12 22:03:19 +00001238 let Inst{11-9} = 0b101;
1239 let Inst{8} = 1; // Double precision
Bill Wendlingb70dc872010-08-31 07:50:46 +00001240 let Inst{6} = op6;
1241 let Inst{4} = op4;
Evan Chengac2af2f2008-11-11 02:11:05 +00001242}
1243
1244// Single precision, unary
Johnny Chen34a6afc2010-01-29 23:21:10 +00001245class ASuI<bits<5> opcod1, bits<2> opcod2, bits<4> opcod3, bits<2> opcod4,
1246 bit opcod5, dag oops, dag iops, InstrItinClass itin, string opc,
1247 string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +00001248 : VFPAI<oops, iops, VFPUnaryFrm, itin, opc, asm, pattern> {
Bill Wendling26233432010-11-01 06:00:39 +00001249 // Instruction operands.
1250 bits<5> Sd;
1251 bits<5> Sm;
1252
1253 // Encode instruction operands.
1254 let Inst{3-0} = Sm{4-1};
1255 let Inst{5} = Sm{0};
1256 let Inst{15-12} = Sd{4-1};
1257 let Inst{22} = Sd{0};
1258
Johnny Chen34a6afc2010-01-29 23:21:10 +00001259 let Inst{27-23} = opcod1;
1260 let Inst{21-20} = opcod2;
1261 let Inst{19-16} = opcod3;
Bill Wendling98c29d72010-10-12 22:03:19 +00001262 let Inst{11-9} = 0b101;
1263 let Inst{8} = 0; // Single precision
Johnny Chen34a6afc2010-01-29 23:21:10 +00001264 let Inst{7-6} = opcod4;
1265 let Inst{4} = opcod5;
Evan Chengac2af2f2008-11-11 02:11:05 +00001266}
1267
David Goodwin85b5b022009-08-10 22:17:39 +00001268// Single precision unary, if no NEON
David Goodwin30bf6252009-08-04 20:39:05 +00001269// Same as ASuI except not available if NEON is enabled
Johnny Chen34a6afc2010-01-29 23:21:10 +00001270class ASuIn<bits<5> opcod1, bits<2> opcod2, bits<4> opcod3, bits<2> opcod4,
1271 bit opcod5, dag oops, dag iops, InstrItinClass itin, string opc,
1272 string asm, list<dag> pattern>
1273 : ASuI<opcod1, opcod2, opcod3, opcod4, opcod5, oops, iops, itin, opc, asm,
1274 pattern> {
David Goodwin30bf6252009-08-04 20:39:05 +00001275 list<Predicate> Predicates = [HasVFP2,DontUseNEONForFP];
1276}
1277
Evan Chengac2af2f2008-11-11 02:11:05 +00001278// Single precision, binary
Johnny Chen34a6afc2010-01-29 23:21:10 +00001279class ASbI<bits<5> opcod1, bits<2> opcod2, bit op6, bit op4, dag oops, dag iops,
1280 InstrItinClass itin, string opc, string asm, list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +00001281 : VFPAI<oops, iops, VFPBinaryFrm, itin, opc, asm, pattern> {
Bill Wendling26233432010-11-01 06:00:39 +00001282 // Instruction operands.
1283 bits<5> Sd;
1284 bits<5> Sn;
1285 bits<5> Sm;
1286
1287 // Encode instruction operands.
1288 let Inst{3-0} = Sm{4-1};
1289 let Inst{5} = Sm{0};
1290 let Inst{19-16} = Sn{4-1};
1291 let Inst{7} = Sn{0};
1292 let Inst{15-12} = Sd{4-1};
1293 let Inst{22} = Sd{0};
1294
Johnny Chen34a6afc2010-01-29 23:21:10 +00001295 let Inst{27-23} = opcod1;
1296 let Inst{21-20} = opcod2;
Bill Wendling98c29d72010-10-12 22:03:19 +00001297 let Inst{11-9} = 0b101;
1298 let Inst{8} = 0; // Single precision
Bill Wendlingb70dc872010-08-31 07:50:46 +00001299 let Inst{6} = op6;
1300 let Inst{4} = op4;
Evan Chengac2af2f2008-11-11 02:11:05 +00001301}
1302
David Goodwin85b5b022009-08-10 22:17:39 +00001303// Single precision binary, if no NEON
David Goodwin3b9c52c2009-08-04 17:53:06 +00001304// Same as ASbI except not available if NEON is enabled
Johnny Chen34a6afc2010-01-29 23:21:10 +00001305class ASbIn<bits<5> opcod1, bits<2> opcod2, bit op6, bit op4, dag oops,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001306 dag iops, InstrItinClass itin, string opc, string asm,
1307 list<dag> pattern>
Johnny Chen34a6afc2010-01-29 23:21:10 +00001308 : ASbI<opcod1, opcod2, op6, op4, oops, iops, itin, opc, asm, pattern> {
David Goodwin3b9c52c2009-08-04 17:53:06 +00001309 list<Predicate> Predicates = [HasVFP2,DontUseNEONForFP];
Bill Wendling26233432010-11-01 06:00:39 +00001310
1311 // Instruction operands.
1312 bits<5> Sd;
1313 bits<5> Sn;
1314 bits<5> Sm;
1315
1316 // Encode instruction operands.
1317 let Inst{3-0} = Sm{4-1};
1318 let Inst{5} = Sm{0};
1319 let Inst{19-16} = Sn{4-1};
1320 let Inst{7} = Sn{0};
1321 let Inst{15-12} = Sd{4-1};
1322 let Inst{22} = Sd{0};
David Goodwin3b9c52c2009-08-04 17:53:06 +00001323}
1324
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001325// VFP conversion instructions
Johnny Chen34a6afc2010-01-29 23:21:10 +00001326class AVConv1I<bits<5> opcod1, bits<2> opcod2, bits<4> opcod3, bits<4> opcod4,
1327 dag oops, dag iops, InstrItinClass itin, string opc, string asm,
1328 list<dag> pattern>
David Goodwinb062c232009-08-06 16:52:47 +00001329 : VFPAI<oops, iops, VFPConv1Frm, itin, opc, asm, pattern> {
Johnny Chen34a6afc2010-01-29 23:21:10 +00001330 let Inst{27-23} = opcod1;
1331 let Inst{21-20} = opcod2;
1332 let Inst{19-16} = opcod3;
1333 let Inst{11-8} = opcod4;
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001334 let Inst{6} = 1;
Johnny Chen34a6afc2010-01-29 23:21:10 +00001335 let Inst{4} = 0;
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001336}
1337
Johnny Chen39640592010-02-11 18:47:03 +00001338// VFP conversion between floating-point and fixed-point
1339class AVConv1XI<bits<5> op1, bits<2> op2, bits<4> op3, bits<4> op4, bit op5,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001340 dag oops, dag iops, InstrItinClass itin, string opc, string asm,
1341 list<dag> pattern>
Johnny Chen39640592010-02-11 18:47:03 +00001342 : AVConv1I<op1, op2, op3, op4, oops, iops, itin, opc, asm, pattern> {
1343 // size (fixed-point number): sx == 0 ? 16 : 32
1344 let Inst{7} = op5; // sx
1345}
1346
David Goodwin85b5b022009-08-10 22:17:39 +00001347// VFP conversion instructions, if no NEON
Johnny Chen34a6afc2010-01-29 23:21:10 +00001348class AVConv1In<bits<5> opcod1, bits<2> opcod2, bits<4> opcod3, bits<4> opcod4,
David Goodwin85b5b022009-08-10 22:17:39 +00001349 dag oops, dag iops, InstrItinClass itin,
1350 string opc, string asm, list<dag> pattern>
Johnny Chen34a6afc2010-01-29 23:21:10 +00001351 : AVConv1I<opcod1, opcod2, opcod3, opcod4, oops, iops, itin, opc, asm,
1352 pattern> {
David Goodwin85b5b022009-08-10 22:17:39 +00001353 list<Predicate> Predicates = [HasVFP2,DontUseNEONForFP];
1354}
1355
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001356class AVConvXI<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops, Format f,
David Goodwinb062c232009-08-06 16:52:47 +00001357 InstrItinClass itin,
1358 string opc, string asm, list<dag> pattern>
1359 : VFPAI<oops, iops, f, itin, opc, asm, pattern> {
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001360 let Inst{27-20} = opcod1;
Evan Cheng38c9a142008-11-11 19:40:26 +00001361 let Inst{11-8} = opcod2;
1362 let Inst{4} = 1;
1363}
1364
David Goodwinb062c232009-08-06 16:52:47 +00001365class AVConv2I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops,
1366 InstrItinClass itin, string opc, string asm, list<dag> pattern>
1367 : AVConvXI<opcod1, opcod2, oops, iops, VFPConv2Frm, itin, opc, asm, pattern>;
Evan Cheng97ccab82008-11-11 22:46:12 +00001368
Bob Wilson3968c6a2010-03-23 17:23:59 +00001369class AVConv3I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops,
David Goodwinb062c232009-08-06 16:52:47 +00001370 InstrItinClass itin, string opc, string asm, list<dag> pattern>
1371 : AVConvXI<opcod1, opcod2, oops, iops, VFPConv3Frm, itin, opc, asm, pattern>;
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001372
David Goodwinb062c232009-08-06 16:52:47 +00001373class AVConv4I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops,
1374 InstrItinClass itin, string opc, string asm, list<dag> pattern>
1375 : AVConvXI<opcod1, opcod2, oops, iops, VFPConv4Frm, itin, opc, asm, pattern>;
Evan Cheng4b6c7ef2008-11-12 06:41:41 +00001376
David Goodwinb062c232009-08-06 16:52:47 +00001377class AVConv5I<bits<8> opcod1, bits<4> opcod2, dag oops, dag iops,
1378 InstrItinClass itin, string opc, string asm, list<dag> pattern>
1379 : AVConvXI<opcod1, opcod2, oops, iops, VFPConv5Frm, itin, opc, asm, pattern>;
Evan Cheng38c9a142008-11-11 19:40:26 +00001380
Evan Chengac2af2f2008-11-11 02:11:05 +00001381//===----------------------------------------------------------------------===//
1382
Bob Wilson2e076c42009-06-22 23:27:02 +00001383//===----------------------------------------------------------------------===//
1384// ARM NEON Instruction templates.
1385//
Evan Chengee98fa92008-08-29 06:41:12 +00001386
Johnny Chenf833fad2010-03-20 00:17:00 +00001387class NeonI<dag oops, dag iops, AddrMode am, IndexMode im, Format f,
1388 InstrItinClass itin, string opc, string dt, string asm, string cstr,
1389 list<dag> pattern>
1390 : InstARM<am, Size4Bytes, im, f, NeonDomain, cstr, itin> {
Evan Cheng738a97a2009-11-23 21:57:23 +00001391 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +00001392 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +00001393 let AsmString = !strconcat(opc, "${p}", ".", dt, "\t", asm);
Evan Cheng738a97a2009-11-23 21:57:23 +00001394 let Pattern = pattern;
1395 list<Predicate> Predicates = [HasNEON];
1396}
1397
1398// Same as NeonI except it does not have a "data type" specifier.
Johnny Chen020023a2010-03-23 20:40:44 +00001399class NeonXI<dag oops, dag iops, AddrMode am, IndexMode im, Format f,
1400 InstrItinClass itin, string opc, string asm, string cstr,
1401 list<dag> pattern>
1402 : InstARM<am, Size4Bytes, im, f, NeonDomain, cstr, itin> {
Bob Wilson2e076c42009-06-22 23:27:02 +00001403 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +00001404 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +00001405 let AsmString = !strconcat(opc, "${p}", "\t", asm);
Bob Wilson2e076c42009-06-22 23:27:02 +00001406 let Pattern = pattern;
1407 list<Predicate> Predicates = [HasNEON];
Evan Chengee98fa92008-08-29 06:41:12 +00001408}
1409
Bob Wilson50820a22009-10-07 21:53:04 +00001410class NLdSt<bit op23, bits<2> op21_20, bits<4> op11_8, bits<4> op7_4,
1411 dag oops, dag iops, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001412 string opc, string dt, string asm, string cstr, list<dag> pattern>
Johnny Chenf833fad2010-03-20 00:17:00 +00001413 : NeonI<oops, iops, AddrMode6, IndexModeNone, NLdStFrm, itin, opc, dt, asm,
1414 cstr, pattern> {
Bob Wilsonf731a2d2009-07-08 18:11:30 +00001415 let Inst{31-24} = 0b11110100;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001416 let Inst{23} = op23;
Jim Grosbach68f495c2009-10-20 00:19:08 +00001417 let Inst{21-20} = op21_20;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001418 let Inst{11-8} = op11_8;
1419 let Inst{7-4} = op7_4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001420
Chris Lattner63274cb2010-11-15 05:19:05 +00001421 let PostEncoderMethod = "NEONThumb2LoadStorePostEncoder";
Jim Grosbach5876e412010-11-19 22:42:55 +00001422
Owen Andersonad402342010-11-02 00:05:05 +00001423 bits<5> Vd;
Owen Anderson0ebd1fd2010-11-02 23:47:29 +00001424 bits<6> Rn;
1425 bits<4> Rm;
Jim Grosbach5876e412010-11-19 22:42:55 +00001426
Owen Andersonad402342010-11-02 00:05:05 +00001427 let Inst{22} = Vd{4};
1428 let Inst{15-12} = Vd{3-0};
Owen Anderson0ebd1fd2010-11-02 23:47:29 +00001429 let Inst{19-16} = Rn{3-0};
1430 let Inst{3-0} = Rm{3-0};
Bob Wilsonf731a2d2009-07-08 18:11:30 +00001431}
1432
Owen Anderson9f20daf2010-11-02 20:47:39 +00001433class NLdStLn<bit op23, bits<2> op21_20, bits<4> op11_8, bits<4> op7_4,
1434 dag oops, dag iops, InstrItinClass itin,
1435 string opc, string dt, string asm, string cstr, list<dag> pattern>
1436 : NLdSt<op23, op21_20, op11_8, op7_4, oops, iops, itin, opc,
1437 dt, asm, cstr, pattern> {
1438 bits<3> lane;
1439}
1440
Bob Wilson9392b0e2010-08-25 23:27:42 +00001441class PseudoNLdSt<dag oops, dag iops, InstrItinClass itin, string cstr>
1442 : InstARM<AddrMode6, Size4Bytes, IndexModeNone, Pseudo, NeonDomain, cstr,
1443 itin> {
1444 let OutOperandList = oops;
1445 let InOperandList = !con(iops, (ins pred:$p));
1446 list<Predicate> Predicates = [HasNEON];
1447}
1448
Jim Grosbach233b3a22010-10-06 20:36:55 +00001449class PseudoNeonI<dag oops, dag iops, InstrItinClass itin, string cstr,
1450 list<dag> pattern>
Bob Wilsonc597fd3b2010-09-13 23:55:10 +00001451 : InstARM<AddrModeNone, Size4Bytes, IndexModeNone, Pseudo, NeonDomain, cstr,
1452 itin> {
1453 let OutOperandList = oops;
1454 let InOperandList = !con(iops, (ins pred:$p));
Jim Grosbach233b3a22010-10-06 20:36:55 +00001455 let Pattern = pattern;
Bob Wilsonc597fd3b2010-09-13 23:55:10 +00001456 list<Predicate> Predicates = [HasNEON];
1457}
1458
Johnny Chenac5024b2010-03-23 16:43:47 +00001459class NDataI<dag oops, dag iops, Format f, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001460 string opc, string dt, string asm, string cstr, list<dag> pattern>
Johnny Chenac5024b2010-03-23 16:43:47 +00001461 : NeonI<oops, iops, AddrModeNone, IndexModeNone, f, itin, opc, dt, asm, cstr,
1462 pattern> {
Evan Cheng738a97a2009-11-23 21:57:23 +00001463 let Inst{31-25} = 0b1111001;
Chris Lattner63274cb2010-11-15 05:19:05 +00001464 let PostEncoderMethod = "NEONThumb2DataIPostEncoder";
Evan Cheng738a97a2009-11-23 21:57:23 +00001465}
1466
Johnny Chen020023a2010-03-23 20:40:44 +00001467class NDataXI<dag oops, dag iops, Format f, InstrItinClass itin,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001468 string opc, string asm, string cstr, list<dag> pattern>
Johnny Chen020023a2010-03-23 20:40:44 +00001469 : NeonXI<oops, iops, AddrModeNone, IndexModeNone, f, itin, opc, asm,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001470 cstr, pattern> {
Bob Wilson2e076c42009-06-22 23:27:02 +00001471 let Inst{31-25} = 0b1111001;
1472}
1473
1474// NEON "one register and a modified immediate" format.
1475class N1ModImm<bit op23, bits<3> op21_19, bits<4> op11_8, bit op7, bit op6,
1476 bit op5, bit op4,
David Goodwinb062c232009-08-06 16:52:47 +00001477 dag oops, dag iops, InstrItinClass itin,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001478 string opc, string dt, string asm, string cstr,
1479 list<dag> pattern>
Johnny Chen6a643202010-03-23 23:09:14 +00001480 : NDataI<oops, iops, N1RegModImmFrm, itin, opc, dt, asm, cstr, pattern> {
Bill Wendlingb70dc872010-08-31 07:50:46 +00001481 let Inst{23} = op23;
Bob Wilson2e076c42009-06-22 23:27:02 +00001482 let Inst{21-19} = op21_19;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001483 let Inst{11-8} = op11_8;
1484 let Inst{7} = op7;
1485 let Inst{6} = op6;
1486 let Inst{5} = op5;
1487 let Inst{4} = op4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001488
Owen Anderson284cb362010-10-26 17:40:54 +00001489 // Instruction operands.
1490 bits<5> Vd;
1491 bits<13> SIMM;
Jim Grosbach5876e412010-11-19 22:42:55 +00001492
Owen Anderson284cb362010-10-26 17:40:54 +00001493 let Inst{15-12} = Vd{3-0};
1494 let Inst{22} = Vd{4};
1495 let Inst{24} = SIMM{7};
1496 let Inst{18-16} = SIMM{6-4};
1497 let Inst{3-0} = SIMM{3-0};
Bob Wilson2e076c42009-06-22 23:27:02 +00001498}
1499
1500// NEON 2 vector register format.
1501class N2V<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18, bits<2> op17_16,
1502 bits<5> op11_7, bit op6, bit op4,
David Goodwinb062c232009-08-06 16:52:47 +00001503 dag oops, dag iops, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001504 string opc, string dt, string asm, string cstr, list<dag> pattern>
Johnny Chen9b1f60a2010-03-24 00:57:50 +00001505 : NDataI<oops, iops, N2RegFrm, itin, opc, dt, asm, cstr, pattern> {
Evan Cheng738a97a2009-11-23 21:57:23 +00001506 let Inst{24-23} = op24_23;
1507 let Inst{21-20} = op21_20;
1508 let Inst{19-18} = op19_18;
1509 let Inst{17-16} = op17_16;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001510 let Inst{11-7} = op11_7;
1511 let Inst{6} = op6;
1512 let Inst{4} = op4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001513
Owen Anderson24774462010-10-25 18:43:52 +00001514 // Instruction operands.
1515 bits<5> Vd;
1516 bits<5> Vm;
1517
1518 let Inst{15-12} = Vd{3-0};
1519 let Inst{22} = Vd{4};
1520 let Inst{3-0} = Vm{3-0};
1521 let Inst{5} = Vm{4};
Evan Cheng738a97a2009-11-23 21:57:23 +00001522}
1523
1524// Same as N2V except it doesn't have a datatype suffix.
1525class N2VX<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18, bits<2> op17_16,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001526 bits<5> op11_7, bit op6, bit op4,
1527 dag oops, dag iops, InstrItinClass itin,
1528 string opc, string asm, string cstr, list<dag> pattern>
Johnny Chen9b1f60a2010-03-24 00:57:50 +00001529 : NDataXI<oops, iops, N2RegFrm, itin, opc, asm, cstr, pattern> {
Bob Wilson2e076c42009-06-22 23:27:02 +00001530 let Inst{24-23} = op24_23;
1531 let Inst{21-20} = op21_20;
1532 let Inst{19-18} = op19_18;
1533 let Inst{17-16} = op17_16;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001534 let Inst{11-7} = op11_7;
1535 let Inst{6} = op6;
1536 let Inst{4} = op4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001537
Owen Anderson24774462010-10-25 18:43:52 +00001538 // Instruction operands.
1539 bits<5> Vd;
1540 bits<5> Vm;
1541
1542 let Inst{15-12} = Vd{3-0};
1543 let Inst{22} = Vd{4};
1544 let Inst{3-0} = Vm{3-0};
1545 let Inst{5} = Vm{4};
Bob Wilson2e076c42009-06-22 23:27:02 +00001546}
1547
1548// NEON 2 vector register with immediate.
Bob Wilsonbd3650c2009-10-21 02:15:46 +00001549class N2VImm<bit op24, bit op23, bits<4> op11_8, bit op7, bit op6, bit op4,
Johnny Chend82f9002010-03-25 20:39:04 +00001550 dag oops, dag iops, Format f, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001551 string opc, string dt, string asm, string cstr, list<dag> pattern>
Johnny Chend82f9002010-03-25 20:39:04 +00001552 : NDataI<oops, iops, f, itin, opc, dt, asm, cstr, pattern> {
Bill Wendlingb70dc872010-08-31 07:50:46 +00001553 let Inst{24} = op24;
1554 let Inst{23} = op23;
Bob Wilson2e076c42009-06-22 23:27:02 +00001555 let Inst{11-8} = op11_8;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001556 let Inst{7} = op7;
1557 let Inst{6} = op6;
1558 let Inst{4} = op4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001559
Owen Anderson3665fee2010-10-26 20:56:57 +00001560 // Instruction operands.
1561 bits<5> Vd;
1562 bits<5> Vm;
1563 bits<6> SIMM;
1564
1565 let Inst{15-12} = Vd{3-0};
1566 let Inst{22} = Vd{4};
1567 let Inst{3-0} = Vm{3-0};
1568 let Inst{5} = Vm{4};
1569 let Inst{21-16} = SIMM{5-0};
Bob Wilson2e076c42009-06-22 23:27:02 +00001570}
1571
Bob Wilsoncf603fb2010-03-27 03:56:52 +00001572// NEON 3 vector register format.
1573class N3V<bit op24, bit op23, bits<2> op21_20, bits<4> op11_8, bit op6, bit op4,
1574 dag oops, dag iops, Format f, InstrItinClass itin,
1575 string opc, string dt, string asm, string cstr, list<dag> pattern>
Johnny Chen2cf04952010-03-26 21:26:28 +00001576 : NDataI<oops, iops, f, itin, opc, dt, asm, cstr, pattern> {
Bill Wendlingb70dc872010-08-31 07:50:46 +00001577 let Inst{24} = op24;
1578 let Inst{23} = op23;
Evan Cheng738a97a2009-11-23 21:57:23 +00001579 let Inst{21-20} = op21_20;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001580 let Inst{11-8} = op11_8;
1581 let Inst{6} = op6;
1582 let Inst{4} = op4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001583
Owen Anderson9e44cf22010-10-21 20:21:49 +00001584 // Instruction operands.
1585 bits<5> Vd;
1586 bits<5> Vn;
1587 bits<5> Vm;
1588
1589 let Inst{15-12} = Vd{3-0};
1590 let Inst{22} = Vd{4};
1591 let Inst{19-16} = Vn{3-0};
1592 let Inst{7} = Vn{4};
1593 let Inst{3-0} = Vm{3-0};
1594 let Inst{5} = Vm{4};
Evan Cheng738a97a2009-11-23 21:57:23 +00001595}
1596
Johnny Chen8a687232010-03-23 21:35:03 +00001597// Same as N3V except it doesn't have a data type suffix.
Bob Wilson3968c6a2010-03-23 17:23:59 +00001598class N3VX<bit op24, bit op23, bits<2> op21_20, bits<4> op11_8, bit op6,
1599 bit op4,
Bob Wilsoncf603fb2010-03-27 03:56:52 +00001600 dag oops, dag iops, Format f, InstrItinClass itin,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001601 string opc, string asm, string cstr, list<dag> pattern>
Bob Wilsoncf603fb2010-03-27 03:56:52 +00001602 : NDataXI<oops, iops, f, itin, opc, asm, cstr, pattern> {
Bill Wendlingb70dc872010-08-31 07:50:46 +00001603 let Inst{24} = op24;
1604 let Inst{23} = op23;
Bob Wilson2e076c42009-06-22 23:27:02 +00001605 let Inst{21-20} = op21_20;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001606 let Inst{11-8} = op11_8;
1607 let Inst{6} = op6;
1608 let Inst{4} = op4;
Jim Grosbach5876e412010-11-19 22:42:55 +00001609
Owen Andersondff239c2010-10-25 18:28:30 +00001610 // Instruction operands.
1611 bits<5> Vd;
1612 bits<5> Vn;
1613 bits<5> Vm;
1614
1615 let Inst{15-12} = Vd{3-0};
1616 let Inst{22} = Vd{4};
1617 let Inst{19-16} = Vn{3-0};
1618 let Inst{7} = Vn{4};
1619 let Inst{3-0} = Vm{3-0};
1620 let Inst{5} = Vm{4};
Bob Wilson2e076c42009-06-22 23:27:02 +00001621}
1622
1623// NEON VMOVs between scalar and core registers.
1624class NVLaneOp<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
David Goodwinb062c232009-08-06 16:52:47 +00001625 dag oops, dag iops, Format f, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001626 string opc, string dt, string asm, list<dag> pattern>
Evan Chengb4559192010-10-26 02:03:05 +00001627 : InstARM<AddrModeNone, Size4Bytes, IndexModeNone, f, NeonDomain,
Bob Wilson3968c6a2010-03-23 17:23:59 +00001628 "", itin> {
Bob Wilson2e076c42009-06-22 23:27:02 +00001629 let Inst{27-20} = opcod1;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001630 let Inst{11-8} = opcod2;
1631 let Inst{6-5} = opcod3;
1632 let Inst{4} = 1;
Evan Cheng738a97a2009-11-23 21:57:23 +00001633
1634 let OutOperandList = oops;
Chris Lattnerfb2ceed2010-03-18 21:06:54 +00001635 let InOperandList = !con(iops, (ins pred:$p));
Chris Lattner04c342e2010-10-06 00:05:18 +00001636 let AsmString = !strconcat(opc, "${p}", ".", dt, "\t", asm);
Evan Cheng738a97a2009-11-23 21:57:23 +00001637 let Pattern = pattern;
Bob Wilson2e076c42009-06-22 23:27:02 +00001638 list<Predicate> Predicates = [HasNEON];
Jim Grosbach5876e412010-11-19 22:42:55 +00001639
Chris Lattner63274cb2010-11-15 05:19:05 +00001640 let PostEncoderMethod = "NEONThumb2DupPostEncoder";
Jim Grosbach5876e412010-11-19 22:42:55 +00001641
Owen Andersoned9652f2010-10-27 21:28:09 +00001642 bits<5> V;
1643 bits<4> R;
Owen Anderson40d24a42010-10-27 19:25:54 +00001644 bits<4> p;
Owen Andersoned9652f2010-10-27 21:28:09 +00001645 bits<4> lane;
Jim Grosbach5876e412010-11-19 22:42:55 +00001646
Owen Anderson40d24a42010-10-27 19:25:54 +00001647 let Inst{31-28} = p{3-0};
Owen Andersoned9652f2010-10-27 21:28:09 +00001648 let Inst{7} = V{4};
1649 let Inst{19-16} = V{3-0};
1650 let Inst{15-12} = R{3-0};
Bob Wilson2e076c42009-06-22 23:27:02 +00001651}
1652class NVGetLane<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
David Goodwinb062c232009-08-06 16:52:47 +00001653 dag oops, dag iops, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001654 string opc, string dt, string asm, list<dag> pattern>
Bob Wilsoncc386fb2010-06-25 23:56:05 +00001655 : NVLaneOp<opcod1, opcod2, opcod3, oops, iops, NGetLnFrm, itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001656 opc, dt, asm, pattern>;
Bob Wilson2e076c42009-06-22 23:27:02 +00001657class NVSetLane<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
David Goodwinb062c232009-08-06 16:52:47 +00001658 dag oops, dag iops, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001659 string opc, string dt, string asm, list<dag> pattern>
Bob Wilsoncc386fb2010-06-25 23:56:05 +00001660 : NVLaneOp<opcod1, opcod2, opcod3, oops, iops, NSetLnFrm, itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001661 opc, dt, asm, pattern>;
Bob Wilson2e076c42009-06-22 23:27:02 +00001662class NVDup<bits<8> opcod1, bits<4> opcod2, bits<2> opcod3,
David Goodwinb062c232009-08-06 16:52:47 +00001663 dag oops, dag iops, InstrItinClass itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001664 string opc, string dt, string asm, list<dag> pattern>
Bob Wilsoncc386fb2010-06-25 23:56:05 +00001665 : NVLaneOp<opcod1, opcod2, opcod3, oops, iops, NDupFrm, itin,
Evan Cheng738a97a2009-11-23 21:57:23 +00001666 opc, dt, asm, pattern>;
David Goodwin3b9c52c2009-08-04 17:53:06 +00001667
Johnny Chen45ab3f32010-03-25 17:01:27 +00001668// Vector Duplicate Lane (from scalar to all elements)
1669class NVDupLane<bits<4> op19_16, bit op6, dag oops, dag iops,
1670 InstrItinClass itin, string opc, string dt, string asm,
1671 list<dag> pattern>
Johnny Chen91d27742010-03-25 21:49:12 +00001672 : NDataI<oops, iops, NVDupLnFrm, itin, opc, dt, asm, "", pattern> {
Johnny Chen45ab3f32010-03-25 17:01:27 +00001673 let Inst{24-23} = 0b11;
1674 let Inst{21-20} = 0b11;
1675 let Inst{19-16} = op19_16;
Bill Wendlingb70dc872010-08-31 07:50:46 +00001676 let Inst{11-7} = 0b11000;
1677 let Inst{6} = op6;
1678 let Inst{4} = 0;
Jim Grosbach5876e412010-11-19 22:42:55 +00001679
Owen Anderson40d24a42010-10-27 19:25:54 +00001680 bits<5> Vd;
1681 bits<5> Vm;
1682 bits<4> lane;
Jim Grosbach5876e412010-11-19 22:42:55 +00001683
Owen Anderson40d24a42010-10-27 19:25:54 +00001684 let Inst{22} = Vd{4};
1685 let Inst{15-12} = Vd{3-0};
1686 let Inst{5} = Vm{4};
1687 let Inst{3-0} = Vm{3-0};
Johnny Chen45ab3f32010-03-25 17:01:27 +00001688}
1689
David Goodwin3b9c52c2009-08-04 17:53:06 +00001690// NEONFPPat - Same as Pat<>, but requires that the compiler be using NEON
1691// for single-precision FP.
1692class NEONFPPat<dag pattern, dag result> : Pat<pattern, result> {
1693 list<Predicate> Predicates = [HasNEON,UseNEONForFP];
1694}