a8c4c9d07f8bf53040c2cc40584c3adf7fb14a2c
[oota-llvm.git] / lib / Target / ARM / ARM.td
1 //===-- ARM.td - Describe the ARM Target Machine -----------*- 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
13 //===----------------------------------------------------------------------===//
14 // Target-independent interfaces which we are implementing
15 //===----------------------------------------------------------------------===//
16
17 include "llvm/Target/Target.td"
18
19 //===----------------------------------------------------------------------===//
20 // ARM Subtarget state.
21 //
22
23 def ModeThumb  : SubtargetFeature<"thumb-mode", "InThumbMode", "true",
24                                   "Thumb mode">;
25
26 //===----------------------------------------------------------------------===//
27 // ARM Subtarget features.
28 //
29
30 def FeatureVFP2 : SubtargetFeature<"vfp2", "HasVFPv2", "true",
31                                    "Enable VFP2 instructions">;
32 def FeatureVFP3 : SubtargetFeature<"vfp3", "HasVFPv3", "true",
33                                    "Enable VFP3 instructions",
34                                    [FeatureVFP2]>;
35 def FeatureNEON : SubtargetFeature<"neon", "HasNEON", "true",
36                                    "Enable NEON instructions",
37                                    [FeatureVFP3]>;
38 def FeatureThumb2 : SubtargetFeature<"thumb2", "HasThumb2", "true",
39                                      "Enable Thumb2 instructions">;
40 def FeatureNoARM  : SubtargetFeature<"noarm", "NoARM", "true",
41                                      "Does not support ARM mode execution",
42                                      [ModeThumb]>;
43 def FeatureFP16   : SubtargetFeature<"fp16", "HasFP16", "true",
44                                      "Enable half-precision floating point">;
45 def FeatureVFP4   : SubtargetFeature<"vfp4", "HasVFPv4", "true",
46                                      "Enable VFP4 instructions",
47                                      [FeatureVFP3, FeatureFP16]>;
48 def FeatureFPARMv8 : SubtargetFeature<"fp-armv8", "HasFPARMv8",
49                                    "true", "Enable ARMv8 FP",
50                                    [FeatureVFP4]>;
51 def FeatureD16    : SubtargetFeature<"d16", "HasD16", "true",
52                                      "Restrict VFP3 to 16 double registers">;
53 def FeatureHWDiv  : SubtargetFeature<"hwdiv", "HasHardwareDivide", "true",
54                                      "Enable divide instructions">;
55 def FeatureHWDivARM  : SubtargetFeature<"hwdiv-arm",
56                                         "HasHardwareDivideInARM", "true",
57                                       "Enable divide instructions in ARM mode">;
58 def FeatureT2XtPk : SubtargetFeature<"t2xtpk", "HasT2ExtractPack", "true",
59                                  "Enable Thumb2 extract and pack instructions">;
60 def FeatureDB     : SubtargetFeature<"db", "HasDataBarrier", "true",
61                                    "Has data barrier (dmb / dsb) instructions">;
62 def FeatureSlowFPBrcc : SubtargetFeature<"slow-fp-brcc", "SlowFPBrcc", "true",
63                                          "FP compare + branch is slow">;
64 def FeatureVFPOnlySP : SubtargetFeature<"fp-only-sp", "FPOnlySP", "true",
65                           "Floating point unit supports single precision only">;
66 def FeaturePerfMon : SubtargetFeature<"perfmon", "HasPerfMon", "true",
67                            "Enable support for Performance Monitor extensions">;
68 def FeatureTrustZone : SubtargetFeature<"trustzone", "HasTrustZone", "true",
69                           "Enable support for TrustZone security extensions">;
70 def FeatureCrypto : SubtargetFeature<"crypto", "HasCrypto", "true",
71                           "Enable support for Cryptography extensions",
72                           [FeatureNEON]>;
73 def FeatureCRC : SubtargetFeature<"crc", "HasCRC", "true",
74                           "Enable support for CRC instructions">;
75
76 // Cyclone has preferred instructions for zeroing VFP registers, which can
77 // execute in 0 cycles.
78 def FeatureZCZeroing : SubtargetFeature<"zcz", "HasZeroCycleZeroing", "true",
79                                         "Has zero-cycle zeroing instructions">;
80
81 // Some processors have FP multiply-accumulate instructions that don't
82 // play nicely with other VFP / NEON instructions, and it's generally better
83 // to just not use them.
84 def FeatureHasSlowFPVMLx : SubtargetFeature<"slowfpvmlx", "SlowFPVMLx", "true",
85                                          "Disable VFP / NEON MAC instructions">;
86
87 // Cortex-A8 / A9 Advanced SIMD has multiplier accumulator forwarding.
88 def FeatureVMLxForwarding : SubtargetFeature<"vmlx-forwarding",
89                                        "HasVMLxForwarding", "true",
90                                        "Has multiplier accumulator forwarding">;
91
92 // Some processors benefit from using NEON instructions for scalar
93 // single-precision FP operations.
94 def FeatureNEONForFP : SubtargetFeature<"neonfp", "UseNEONForSinglePrecisionFP",
95                                         "true",
96                                         "Use NEON for single precision FP">;
97
98 // Disable 32-bit to 16-bit narrowing for experimentation.
99 def FeaturePref32BitThumb : SubtargetFeature<"32bit", "Pref32BitThumb", "true",
100                                              "Prefer 32-bit Thumb instrs">;
101
102 /// Some instructions update CPSR partially, which can add false dependency for
103 /// out-of-order implementation, e.g. Cortex-A9, unless each individual bit is
104 /// mapped to a separate physical register. Avoid partial CPSR update for these
105 /// processors.
106 def FeatureAvoidPartialCPSR : SubtargetFeature<"avoid-partial-cpsr",
107                                                "AvoidCPSRPartialUpdate", "true",
108                                  "Avoid CPSR partial update for OOO execution">;
109
110 def FeatureAvoidMOVsShOp : SubtargetFeature<"avoid-movs-shop",
111                                             "AvoidMOVsShifterOperand", "true",
112                                 "Avoid movs instructions with shifter operand">;
113
114 // Some processors perform return stack prediction. CodeGen should avoid issue
115 // "normal" call instructions to callees which do not return.
116 def FeatureHasRAS : SubtargetFeature<"ras", "HasRAS", "true",
117                                      "Has return address stack">;
118
119 /// Some M architectures don't have the DSP extension (v7E-M vs. v7M)
120 def FeatureDSPThumb2 : SubtargetFeature<"t2dsp", "Thumb2DSP", "true",
121                                  "Supports v7 DSP instructions in Thumb2">;
122
123 // Multiprocessing extension.
124 def FeatureMP : SubtargetFeature<"mp", "HasMPExtension", "true",
125                                  "Supports Multiprocessing extension">;
126
127 // Virtualization extension - requires HW divide (ARMv7-AR ARMARM - 4.4.8).
128 def FeatureVirtualization : SubtargetFeature<"virtualization",
129                                  "HasVirtualization", "true",
130                                  "Supports Virtualization extension",
131                                  [FeatureHWDiv, FeatureHWDivARM]>;
132
133 // M-series ISA
134 def FeatureMClass : SubtargetFeature<"mclass", "ARMProcClass", "MClass",
135                                      "Is microcontroller profile ('M' series)">;
136
137 // R-series ISA
138 def FeatureRClass : SubtargetFeature<"rclass", "ARMProcClass", "RClass",
139                                      "Is realtime profile ('R' series)">;
140
141 // A-series ISA
142 def FeatureAClass : SubtargetFeature<"aclass", "ARMProcClass", "AClass",
143                                      "Is application profile ('A' series)">;
144
145 // Special TRAP encoding for NaCl, which looks like a TRAP in Thumb too.
146 // See ARMInstrInfo.td for details.
147 def FeatureNaClTrap : SubtargetFeature<"nacl-trap", "UseNaClTrap", "true",
148                                        "NaCl trap">;
149
150 // ARM ISAs.
151 def HasV4TOps   : SubtargetFeature<"v4t", "HasV4TOps", "true",
152                                    "Support ARM v4T instructions">;
153 def HasV5TOps   : SubtargetFeature<"v5t", "HasV5TOps", "true",
154                                    "Support ARM v5T instructions",
155                                    [HasV4TOps]>;
156 def HasV5TEOps  : SubtargetFeature<"v5te", "HasV5TEOps", "true",
157                              "Support ARM v5TE, v5TEj, and v5TExp instructions",
158                                    [HasV5TOps]>;
159 def HasV6Ops    : SubtargetFeature<"v6", "HasV6Ops", "true",
160                                    "Support ARM v6 instructions",
161                                    [HasV5TEOps]>;
162 def HasV6MOps   : SubtargetFeature<"v6m", "HasV6MOps", "true",
163                                    "Support ARM v6M instructions",
164                                    [HasV6Ops]>;
165 def HasV6T2Ops  : SubtargetFeature<"v6t2", "HasV6T2Ops", "true",
166                                    "Support ARM v6t2 instructions",
167                                    [HasV6MOps, FeatureThumb2]>;
168 def HasV7Ops    : SubtargetFeature<"v7", "HasV7Ops", "true",
169                                    "Support ARM v7 instructions",
170                                    [HasV6T2Ops, FeaturePerfMon]>;
171 def HasV8Ops    : SubtargetFeature<"v8", "HasV8Ops", "true",
172                                    "Support ARM v8 instructions",
173                                    [HasV7Ops, FeatureVirtualization,
174                                     FeatureMP]>;
175
176 //===----------------------------------------------------------------------===//
177 // ARM Processors supported.
178 //
179
180 include "ARMSchedule.td"
181
182 // ARM processor families.
183 def ProcA5      : SubtargetFeature<"a5", "ARMProcFamily", "CortexA5",
184                                    "Cortex-A5 ARM processors",
185                                    [FeatureSlowFPBrcc, FeatureHasSlowFPVMLx,
186                                     FeatureVMLxForwarding, FeatureT2XtPk,
187                                     FeatureTrustZone, FeatureMP]>;
188 def ProcA7      : SubtargetFeature<"a7", "ARMProcFamily", "CortexA7",
189                                    "Cortex-A7 ARM processors",
190                                    [FeatureSlowFPBrcc, FeatureHasSlowFPVMLx,
191                                     FeatureVMLxForwarding, FeatureT2XtPk,
192                                     FeatureVFP4, FeatureMP,
193                                     FeatureHWDiv, FeatureHWDivARM,
194                                     FeatureTrustZone, FeatureVirtualization]>;
195 def ProcA8      : SubtargetFeature<"a8", "ARMProcFamily", "CortexA8",
196                                    "Cortex-A8 ARM processors",
197                                    [FeatureSlowFPBrcc, FeatureHasSlowFPVMLx,
198                                     FeatureVMLxForwarding, FeatureT2XtPk,
199                                     FeatureTrustZone]>;
200 def ProcA9      : SubtargetFeature<"a9", "ARMProcFamily", "CortexA9",
201                                    "Cortex-A9 ARM processors",
202                                    [FeatureVMLxForwarding,
203                                     FeatureT2XtPk, FeatureFP16,
204                                     FeatureAvoidPartialCPSR,
205                                     FeatureTrustZone]>;
206 def ProcSwift   : SubtargetFeature<"swift", "ARMProcFamily", "Swift",
207                                    "Swift ARM processors",
208                                    [FeatureNEONForFP, FeatureT2XtPk,
209                                     FeatureVFP4, FeatureMP, FeatureHWDiv,
210                                     FeatureHWDivARM, FeatureAvoidPartialCPSR,
211                                     FeatureAvoidMOVsShOp,
212                                     FeatureHasSlowFPVMLx, FeatureTrustZone]>;
213 def ProcA12     : SubtargetFeature<"a12", "ARMProcFamily", "CortexA12",
214                                    "Cortex-A12 ARM processors",
215                                    [FeatureVMLxForwarding,
216                                     FeatureT2XtPk, FeatureVFP4,
217                                     FeatureHWDiv, FeatureHWDivARM,
218                                     FeatureAvoidPartialCPSR,
219                                     FeatureVirtualization,
220                                     FeatureTrustZone]>;
221
222
223 // FIXME: It has not been determined if A15 has these features.
224 def ProcA15      : SubtargetFeature<"a15", "ARMProcFamily", "CortexA15",
225                                    "Cortex-A15 ARM processors",
226                                    [FeatureT2XtPk, FeatureVFP4,
227                                     FeatureMP, FeatureHWDiv, FeatureHWDivARM,
228                                     FeatureAvoidPartialCPSR,
229                                     FeatureTrustZone, FeatureVirtualization]>;
230
231 def ProcA17     : SubtargetFeature<"a17", "ARMProcFamily", "CortexA17",
232                                    "Cortex-A17 ARM processors",
233                                    [FeatureVMLxForwarding,
234                                     FeatureT2XtPk, FeatureVFP4,
235                                     FeatureHWDiv, FeatureHWDivARM,
236                                     FeatureAvoidPartialCPSR,
237                                     FeatureVirtualization,
238                                     FeatureTrustZone]>;
239
240 def ProcA53     : SubtargetFeature<"a53", "ARMProcFamily", "CortexA53",
241                                    "Cortex-A53 ARM processors",
242                                    [FeatureHWDiv, FeatureHWDivARM,
243                                     FeatureTrustZone, FeatureT2XtPk,
244                                     FeatureCrypto, FeatureCRC]>;
245
246 def ProcA57     : SubtargetFeature<"a57", "ARMProcFamily", "CortexA57",
247                                    "Cortex-A57 ARM processors",
248                                    [FeatureHWDiv, FeatureHWDivARM,
249                                     FeatureTrustZone, FeatureT2XtPk,
250                                     FeatureCrypto, FeatureCRC]>;
251
252 def ProcR5      : SubtargetFeature<"r5", "ARMProcFamily", "CortexR5",
253                                    "Cortex-R5 ARM processors",
254                                    [FeatureSlowFPBrcc,
255                                     FeatureHWDiv, FeatureHWDivARM,
256                                     FeatureHasSlowFPVMLx,
257                                     FeatureAvoidPartialCPSR,
258                                     FeatureT2XtPk]>;
259
260 // FIXME: krait has currently the same features as A9
261 // plus VFP4 and hardware division features.
262 def ProcKrait   : SubtargetFeature<"krait", "ARMProcFamily", "Krait",
263                                    "Qualcomm ARM processors",
264                                    [FeatureVMLxForwarding,
265                                     FeatureT2XtPk, FeatureFP16,
266                                     FeatureAvoidPartialCPSR,
267                                     FeatureTrustZone,
268                                     FeatureVFP4,
269                                     FeatureHWDiv,
270                                     FeatureHWDivARM]>;
271
272
273 class ProcNoItin<string Name, list<SubtargetFeature> Features>
274  : Processor<Name, NoItineraries, Features>;
275
276 // V4 Processors.
277 def : ProcNoItin<"generic",         []>;
278 def : ProcNoItin<"arm8",            []>;
279 def : ProcNoItin<"arm810",          []>;
280 def : ProcNoItin<"strongarm",       []>;
281 def : ProcNoItin<"strongarm110",    []>;
282 def : ProcNoItin<"strongarm1100",   []>;
283 def : ProcNoItin<"strongarm1110",   []>;
284
285 // V4T Processors.
286 def : ProcNoItin<"arm7tdmi",        [HasV4TOps]>;
287 def : ProcNoItin<"arm7tdmi-s",      [HasV4TOps]>;
288 def : ProcNoItin<"arm710t",         [HasV4TOps]>;
289 def : ProcNoItin<"arm720t",         [HasV4TOps]>;
290 def : ProcNoItin<"arm9",            [HasV4TOps]>;
291 def : ProcNoItin<"arm9tdmi",        [HasV4TOps]>;
292 def : ProcNoItin<"arm920",          [HasV4TOps]>;
293 def : ProcNoItin<"arm920t",         [HasV4TOps]>;
294 def : ProcNoItin<"arm922t",         [HasV4TOps]>;
295 def : ProcNoItin<"arm940t",         [HasV4TOps]>;
296 def : ProcNoItin<"ep9312",          [HasV4TOps]>;
297
298 // V5T Processors.
299 def : ProcNoItin<"arm10tdmi",       [HasV5TOps]>;
300 def : ProcNoItin<"arm1020t",        [HasV5TOps]>;
301
302 // V5TE Processors.
303 def : ProcNoItin<"arm9e",           [HasV5TEOps]>;
304 def : ProcNoItin<"arm926ej-s",      [HasV5TEOps]>;
305 def : ProcNoItin<"arm946e-s",       [HasV5TEOps]>;
306 def : ProcNoItin<"arm966e-s",       [HasV5TEOps]>;
307 def : ProcNoItin<"arm968e-s",       [HasV5TEOps]>;
308 def : ProcNoItin<"arm10e",          [HasV5TEOps]>;
309 def : ProcNoItin<"arm1020e",        [HasV5TEOps]>;
310 def : ProcNoItin<"arm1022e",        [HasV5TEOps]>;
311 def : ProcNoItin<"xscale",          [HasV5TEOps]>;
312 def : ProcNoItin<"iwmmxt",          [HasV5TEOps]>;
313
314 // V6 Processors.
315 def : Processor<"arm1136j-s",       ARMV6Itineraries, [HasV6Ops]>;
316 def : Processor<"arm1136jf-s",      ARMV6Itineraries, [HasV6Ops, FeatureVFP2,
317                                                        FeatureHasSlowFPVMLx]>;
318 def : Processor<"arm1176jz-s",      ARMV6Itineraries, [HasV6Ops]>;
319 def : Processor<"arm1176jzf-s",     ARMV6Itineraries, [HasV6Ops, FeatureVFP2,
320                                                        FeatureHasSlowFPVMLx]>;
321 def : Processor<"mpcorenovfp",      ARMV6Itineraries, [HasV6Ops]>;
322 def : Processor<"mpcore",           ARMV6Itineraries, [HasV6Ops, FeatureVFP2,
323                                                        FeatureHasSlowFPVMLx]>;
324
325 // V6M Processors.
326 def : Processor<"cortex-m0",        ARMV6Itineraries, [HasV6MOps, FeatureNoARM,
327                                                        FeatureDB, FeatureMClass]>;
328 def : Processor<"cortex-m0plus",    ARMV6Itineraries, [HasV6MOps, FeatureNoARM,
329                                                        FeatureDB, FeatureMClass]>;
330 def : Processor<"cortex-m1",        ARMV6Itineraries, [HasV6MOps, FeatureNoARM,
331                                                        FeatureDB, FeatureMClass]>;
332 def : Processor<"sc000",            ARMV6Itineraries, [HasV6MOps, FeatureNoARM,
333                                                        FeatureDB, FeatureMClass]>;
334
335 // V6T2 Processors.
336 def : Processor<"arm1156t2-s",      ARMV6Itineraries, [HasV6T2Ops,
337                                                        FeatureDSPThumb2]>;
338 def : Processor<"arm1156t2f-s",     ARMV6Itineraries, [HasV6T2Ops, FeatureVFP2,
339                                                        FeatureHasSlowFPVMLx,
340                                                        FeatureDSPThumb2]>;
341
342 // V7a Processors.
343 // FIXME: A5 has currently the same Schedule model as A8
344 def : ProcessorModel<"cortex-a5",   CortexA8Model,
345                                     [ProcA5, HasV7Ops, FeatureNEON, FeatureDB,
346                                      FeatureVFP4, FeatureDSPThumb2,
347                                      FeatureHasRAS, FeatureAClass]>;
348 def : ProcessorModel<"cortex-a7",   CortexA8Model,
349                                     [ProcA7, HasV7Ops, FeatureNEON, FeatureDB,
350                                      FeatureDSPThumb2, FeatureHasRAS,
351                                      FeatureAClass]>;
352 def : ProcessorModel<"cortex-a8",   CortexA8Model,
353                                     [ProcA8, HasV7Ops, FeatureNEON, FeatureDB,
354                                      FeatureDSPThumb2, FeatureHasRAS,
355                                      FeatureAClass]>;
356 def : ProcessorModel<"cortex-a9",   CortexA9Model,
357                                     [ProcA9, HasV7Ops, FeatureNEON, FeatureDB,
358                                      FeatureDSPThumb2, FeatureHasRAS, FeatureMP,
359                                      FeatureAClass]>;
360
361 // FIXME: A12 has currently the same Schedule model as A9
362 def : ProcessorModel<"cortex-a12", CortexA9Model,
363                                     [ProcA12, HasV7Ops, FeatureNEON, FeatureDB,
364                                      FeatureDSPThumb2, FeatureMP,
365                                      FeatureHasRAS, FeatureAClass]>;
366
367 // FIXME: A15 has currently the same ProcessorModel as A9.
368 def : ProcessorModel<"cortex-a15",   CortexA9Model,
369                                     [ProcA15, HasV7Ops, FeatureNEON, FeatureDB,
370                                      FeatureDSPThumb2, FeatureHasRAS,
371                                      FeatureAClass]>;
372
373 // FIXME: A17 has currently the same Schedule model as A9
374 def : ProcessorModel<"cortex-a17",  CortexA9Model,
375                                     [ProcA17, HasV7Ops, FeatureNEON, FeatureDB,
376                                      FeatureDSPThumb2, FeatureMP,
377                                      FeatureHasRAS, FeatureAClass]>;
378
379 // FIXME: krait has currently the same Schedule model as A9
380 def : ProcessorModel<"krait",       CortexA9Model,
381                                     [ProcKrait, HasV7Ops,
382                                      FeatureNEON, FeatureDB,
383                                      FeatureDSPThumb2, FeatureHasRAS,
384                                      FeatureAClass]>;
385
386 // FIXME: R5 has currently the same ProcessorModel as A8.
387 def : ProcessorModel<"cortex-r5",   CortexA8Model,
388                                     [ProcR5, HasV7Ops, FeatureDB,
389                                      FeatureVFP3, FeatureDSPThumb2,
390                                      FeatureHasRAS, FeatureVFPOnlySP,
391                                      FeatureD16, FeatureRClass]>;
392
393 // FIXME: R7 has currently the same ProcessorModel as A8 and is modelled as R5.
394 def : ProcessorModel<"cortex-r7",   CortexA8Model,
395                                     [ProcR5, HasV7Ops, FeatureDB,
396                                      FeatureVFP3, FeatureDSPThumb2,
397                                      FeatureHasRAS, FeatureVFPOnlySP,
398                                      FeatureD16, FeatureMP, FeatureRClass]>;
399
400 // V7M Processors.
401 def : ProcNoItin<"cortex-m3",       [HasV7Ops,
402                                      FeatureThumb2, FeatureNoARM, FeatureDB,
403                                      FeatureHWDiv, FeatureMClass]>;
404 def : ProcNoItin<"sc300",           [HasV7Ops,
405                                      FeatureThumb2, FeatureNoARM, FeatureDB,
406                                      FeatureHWDiv, FeatureMClass]>;
407
408 // V7EM Processors.
409 def : ProcNoItin<"cortex-m4",       [HasV7Ops,
410                                      FeatureThumb2, FeatureNoARM, FeatureDB,
411                                      FeatureHWDiv, FeatureDSPThumb2,
412                                      FeatureT2XtPk, FeatureVFP4,
413                                      FeatureVFPOnlySP, FeatureD16,
414                                      FeatureMClass]>;
415 def : ProcNoItin<"cortex-m7",       [HasV7Ops,
416                                      FeatureThumb2, FeatureNoARM, FeatureDB,
417                                      FeatureHWDiv, FeatureDSPThumb2,
418                                      FeatureT2XtPk, FeatureFPARMv8,
419                                      FeatureD16, FeatureMClass]>;
420
421
422 // Swift uArch Processors.
423 def : ProcessorModel<"swift",       SwiftModel,
424                                     [ProcSwift, HasV7Ops, FeatureNEON,
425                                      FeatureDB, FeatureDSPThumb2,
426                                      FeatureHasRAS, FeatureAClass]>;
427
428 // V8 Processors
429 def : ProcNoItin<"cortex-a53",      [ProcA53, HasV8Ops, FeatureAClass,
430                                     FeatureDB, FeatureFPARMv8,
431                                     FeatureNEON, FeatureDSPThumb2]>;
432 def : ProcNoItin<"cortex-a57",      [ProcA57, HasV8Ops, FeatureAClass,
433                                     FeatureDB, FeatureFPARMv8,
434                                     FeatureNEON, FeatureDSPThumb2]>;
435 // FIXME: Cortex-A72 is currently modelled as an Cortex-A57.
436 def : ProcNoItin<"cortex-a72",      [ProcA57, HasV8Ops, FeatureAClass,
437                                     FeatureDB, FeatureFPARMv8,
438                                     FeatureNEON, FeatureDSPThumb2]>;
439
440 // Cyclone is very similar to swift
441 def : ProcessorModel<"cyclone",     SwiftModel,
442                                     [ProcSwift, HasV8Ops, HasV7Ops,
443                                      FeatureCrypto, FeatureFPARMv8,
444                                      FeatureDB,FeatureDSPThumb2,
445                                      FeatureHasRAS, FeatureZCZeroing]>;
446
447 //===----------------------------------------------------------------------===//
448 // Register File Description
449 //===----------------------------------------------------------------------===//
450
451 include "ARMRegisterInfo.td"
452
453 include "ARMCallingConv.td"
454
455 //===----------------------------------------------------------------------===//
456 // Instruction Descriptions
457 //===----------------------------------------------------------------------===//
458
459 include "ARMInstrInfo.td"
460
461 def ARMInstrInfo : InstrInfo;
462
463 //===----------------------------------------------------------------------===//
464 // Declare the target which we are implementing
465 //===----------------------------------------------------------------------===//
466
467 def ARM : Target {
468   // Pull in Instruction Info:
469   let InstructionSet = ARMInstrInfo;
470 }