Jia Liu | 31d157a | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- ARM.td - Describe the ARM Target Machine -----------*- tablegen -*-===// |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | // Target-independent interfaces which we are implementing |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Evan Cheng | 027fdbe | 2008-11-24 07:34:46 +0000 | [diff] [blame] | 17 | include "llvm/Target/Target.td" |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 18 | |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 19 | //===----------------------------------------------------------------------===// |
| 20 | // ARM Subtarget state. |
| 21 | // |
| 22 | |
Evan Cheng | 963b03c | 2011-07-07 19:05:12 +0000 | [diff] [blame] | 23 | def ModeThumb : SubtargetFeature<"thumb-mode", "InThumbMode", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 24 | "Thumb mode">; |
Jim Grosbach | 2317e40 | 2010-09-30 01:57:53 +0000 | [diff] [blame] | 25 | |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 26 | //===----------------------------------------------------------------------===// |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 27 | // ARM Subtarget features. |
| 28 | // |
| 29 | |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 30 | def FeatureVFP2 : SubtargetFeature<"vfp2", "HasVFPv2", "true", |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 31 | "Enable VFP2 instructions">; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 32 | def FeatureVFP3 : SubtargetFeature<"vfp3", "HasVFPv3", "true", |
| 33 | "Enable VFP3 instructions", |
| 34 | [FeatureVFP2]>; |
Anton Korobeynikov | 4b4e622 | 2012-01-22 12:07:33 +0000 | [diff] [blame] | 35 | def FeatureVFP4 : SubtargetFeature<"vfp4", "HasVFPv4", "true", |
| 36 | "Enable VFP4 instructions", |
| 37 | [FeatureVFP3]>; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 38 | def FeatureNEON : SubtargetFeature<"neon", "HasNEON", "true", |
| 39 | "Enable NEON instructions", |
| 40 | [FeatureVFP3]>; |
Evan Cheng | 94ca42f | 2011-07-07 00:08:19 +0000 | [diff] [blame] | 41 | def FeatureThumb2 : SubtargetFeature<"thumb2", "HasThumb2", "true", |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 42 | "Enable Thumb2 instructions">; |
Evan Cheng | 7b4d311 | 2010-08-11 07:17:46 +0000 | [diff] [blame] | 43 | def FeatureNoARM : SubtargetFeature<"noarm", "NoARM", "true", |
| 44 | "Does not support ARM mode execution">; |
Anton Korobeynikov | 631379e | 2010-03-14 18:42:38 +0000 | [diff] [blame] | 45 | def FeatureFP16 : SubtargetFeature<"fp16", "HasFP16", "true", |
| 46 | "Enable half-precision floating point">; |
Bob Wilson | 77f42b5 | 2010-10-12 16:22:47 +0000 | [diff] [blame] | 47 | def FeatureD16 : SubtargetFeature<"d16", "HasD16", "true", |
| 48 | "Restrict VFP3 to 16 double registers">; |
Jim Grosbach | 2940213 | 2010-05-05 23:44:43 +0000 | [diff] [blame] | 49 | def FeatureHWDiv : SubtargetFeature<"hwdiv", "HasHardwareDivide", "true", |
| 50 | "Enable divide instructions">; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 51 | def FeatureT2XtPk : SubtargetFeature<"t2xtpk", "HasT2ExtractPack", "true", |
Jim Grosbach | 2940213 | 2010-05-05 23:44:43 +0000 | [diff] [blame] | 52 | "Enable Thumb2 extract and pack instructions">; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 53 | def FeatureDB : SubtargetFeature<"db", "HasDataBarrier", "true", |
| 54 | "Has data barrier (dmb / dsb) instructions">; |
Evan Cheng | 7a41599 | 2010-07-13 19:21:50 +0000 | [diff] [blame] | 55 | def FeatureSlowFPBrcc : SubtargetFeature<"slow-fp-brcc", "SlowFPBrcc", "true", |
| 56 | "FP compare + branch is slow">; |
Jim Grosbach | fcba5e6 | 2010-08-11 15:44:15 +0000 | [diff] [blame] | 57 | def FeatureVFPOnlySP : SubtargetFeature<"fp-only-sp", "FPOnlySP", "true", |
| 58 | "Floating point unit supports single precision only">; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 59 | |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 60 | // Some processors have FP multiply-accumulate instructions that don't |
| 61 | // play nicely with other VFP / NEON instructions, and it's generally better |
Jim Grosbach | 6b2e8dc | 2010-03-25 23:11:16 +0000 | [diff] [blame] | 62 | // to just not use them. |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 63 | def FeatureHasSlowFPVMLx : SubtargetFeature<"slowfpvmlx", "SlowFPVMLx", "true", |
| 64 | "Disable VFP / NEON MAC instructions">; |
Evan Cheng | 463d358 | 2011-03-31 19:38:48 +0000 | [diff] [blame] | 65 | |
| 66 | // Cortex-A8 / A9 Advanced SIMD has multiplier accumulator forwarding. |
| 67 | def FeatureVMLxForwarding : SubtargetFeature<"vmlx-forwarding", |
| 68 | "HasVMLxForwarding", "true", |
| 69 | "Has multiplier accumulator forwarding">; |
| 70 | |
Jim Grosbach | 7ec7a0e | 2010-03-25 23:47:34 +0000 | [diff] [blame] | 71 | // Some processors benefit from using NEON instructions for scalar |
| 72 | // single-precision FP operations. |
Jim Grosbach | c5ed013 | 2010-08-17 18:39:16 +0000 | [diff] [blame] | 73 | def FeatureNEONForFP : SubtargetFeature<"neonfp", "UseNEONForSinglePrecisionFP", |
| 74 | "true", |
| 75 | "Use NEON for single precision FP">; |
Jim Grosbach | 7ec7a0e | 2010-03-25 23:47:34 +0000 | [diff] [blame] | 76 | |
Evan Cheng | e44be63 | 2010-08-09 18:35:19 +0000 | [diff] [blame] | 77 | // Disable 32-bit to 16-bit narrowing for experimentation. |
| 78 | def FeaturePref32BitThumb : SubtargetFeature<"32bit", "Pref32BitThumb", "true", |
| 79 | "Prefer 32-bit Thumb instrs">; |
Jim Grosbach | 6b2e8dc | 2010-03-25 23:11:16 +0000 | [diff] [blame] | 80 | |
Bob Wilson | 5dde893 | 2011-04-19 18:11:49 +0000 | [diff] [blame] | 81 | /// Some instructions update CPSR partially, which can add false dependency for |
| 82 | /// out-of-order implementation, e.g. Cortex-A9, unless each individual bit is |
| 83 | /// mapped to a separate physical register. Avoid partial CPSR update for these |
| 84 | /// processors. |
| 85 | def FeatureAvoidPartialCPSR : SubtargetFeature<"avoid-partial-cpsr", |
| 86 | "AvoidCPSRPartialUpdate", "true", |
| 87 | "Avoid CPSR partial update for OOO execution">; |
| 88 | |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 89 | // Some processors perform return stack prediction. CodeGen should avoid issue |
| 90 | // "normal" call instructions to callees which do not return. |
| 91 | def FeatureHasRAS : SubtargetFeature<"ras", "HasRAS", "true", |
| 92 | "Has return address stack">; |
| 93 | |
Jim Grosbach | a760398 | 2011-07-01 21:12:19 +0000 | [diff] [blame] | 94 | /// Some M architectures don't have the DSP extension (v7E-M vs. v7M) |
| 95 | def FeatureDSPThumb2 : SubtargetFeature<"t2dsp", "Thumb2DSP", "true", |
Nick Lewycky | b210cbf | 2011-08-25 21:46:20 +0000 | [diff] [blame] | 96 | "Supports v7 DSP instructions in Thumb2">; |
Jim Grosbach | a760398 | 2011-07-01 21:12:19 +0000 | [diff] [blame] | 97 | |
Evan Cheng | dfed19f | 2010-11-03 06:34:55 +0000 | [diff] [blame] | 98 | // Multiprocessing extension. |
| 99 | def FeatureMP : SubtargetFeature<"mp", "HasMPExtension", "true", |
| 100 | "Supports Multiprocessing extension">; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 101 | |
James Molloy | acad68d | 2011-09-28 14:21:38 +0000 | [diff] [blame] | 102 | // M-series ISA? |
| 103 | def FeatureMClass : SubtargetFeature<"mclass", "IsMClass", "true", |
| 104 | "Is microcontroller profile ('M' series)">; |
| 105 | |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 106 | // ARM ISAs. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 107 | def HasV4TOps : SubtargetFeature<"v4t", "HasV4TOps", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 108 | "Support ARM v4T instructions">; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 109 | def HasV5TOps : SubtargetFeature<"v5t", "HasV5TOps", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 110 | "Support ARM v5T instructions", |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 111 | [HasV4TOps]>; |
| 112 | def HasV5TEOps : SubtargetFeature<"v5te", "HasV5TEOps", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 113 | "Support ARM v5TE, v5TEj, and v5TExp instructions", |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 114 | [HasV5TOps]>; |
| 115 | def HasV6Ops : SubtargetFeature<"v6", "HasV6Ops", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 116 | "Support ARM v6 instructions", |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 117 | [HasV5TEOps]>; |
| 118 | def HasV6T2Ops : SubtargetFeature<"v6t2", "HasV6T2Ops", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 119 | "Support ARM v6t2 instructions", |
Evan Cheng | 0d18174 | 2011-09-20 21:38:18 +0000 | [diff] [blame] | 120 | [HasV6Ops, FeatureThumb2]>; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 121 | def HasV7Ops : SubtargetFeature<"v7", "HasV7Ops", "true", |
Evan Cheng | db06873 | 2011-07-07 08:26:46 +0000 | [diff] [blame] | 122 | "Support ARM v7 instructions", |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 123 | [HasV6T2Ops]>; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 124 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 125 | //===----------------------------------------------------------------------===// |
| 126 | // ARM Processors supported. |
| 127 | // |
| 128 | |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 129 | include "ARMSchedule.td" |
| 130 | |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 131 | // ARM processor families. |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 132 | def ProcA8 : SubtargetFeature<"a8", "ARMProcFamily", "CortexA8", |
| 133 | "Cortex-A8 ARM processors", |
Evan Cheng | 167be80 | 2010-12-05 23:03:45 +0000 | [diff] [blame] | 134 | [FeatureSlowFPBrcc, FeatureNEONForFP, |
Evan Cheng | 463d358 | 2011-03-31 19:38:48 +0000 | [diff] [blame] | 135 | FeatureHasSlowFPVMLx, FeatureVMLxForwarding, |
| 136 | FeatureT2XtPk]>; |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 137 | def ProcA9 : SubtargetFeature<"a9", "ARMProcFamily", "CortexA9", |
Evan Cheng | 167be80 | 2010-12-05 23:03:45 +0000 | [diff] [blame] | 138 | "Cortex-A9 ARM processors", |
Bob Wilson | 84c5eed | 2011-04-19 18:11:57 +0000 | [diff] [blame] | 139 | [FeatureVMLxForwarding, |
Bob Wilson | 5dde893 | 2011-04-19 18:11:49 +0000 | [diff] [blame] | 140 | FeatureT2XtPk, FeatureFP16, |
| 141 | FeatureAvoidPartialCPSR]>; |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 142 | |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 143 | class ProcNoItin<string Name, list<SubtargetFeature> Features> |
Andrew Trick | d85934b | 2012-06-22 03:58:51 +0000 | [diff] [blame] | 144 | : Processor<Name, NoItineraries, Features>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 145 | |
| 146 | // V4 Processors. |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 147 | def : ProcNoItin<"generic", []>; |
| 148 | def : ProcNoItin<"arm8", []>; |
| 149 | def : ProcNoItin<"arm810", []>; |
| 150 | def : ProcNoItin<"strongarm", []>; |
| 151 | def : ProcNoItin<"strongarm110", []>; |
| 152 | def : ProcNoItin<"strongarm1100", []>; |
| 153 | def : ProcNoItin<"strongarm1110", []>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 154 | |
| 155 | // V4T Processors. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 156 | def : ProcNoItin<"arm7tdmi", [HasV4TOps]>; |
| 157 | def : ProcNoItin<"arm7tdmi-s", [HasV4TOps]>; |
| 158 | def : ProcNoItin<"arm710t", [HasV4TOps]>; |
| 159 | def : ProcNoItin<"arm720t", [HasV4TOps]>; |
| 160 | def : ProcNoItin<"arm9", [HasV4TOps]>; |
| 161 | def : ProcNoItin<"arm9tdmi", [HasV4TOps]>; |
| 162 | def : ProcNoItin<"arm920", [HasV4TOps]>; |
| 163 | def : ProcNoItin<"arm920t", [HasV4TOps]>; |
| 164 | def : ProcNoItin<"arm922t", [HasV4TOps]>; |
| 165 | def : ProcNoItin<"arm940t", [HasV4TOps]>; |
| 166 | def : ProcNoItin<"ep9312", [HasV4TOps]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 167 | |
| 168 | // V5T Processors. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 169 | def : ProcNoItin<"arm10tdmi", [HasV5TOps]>; |
| 170 | def : ProcNoItin<"arm1020t", [HasV5TOps]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 171 | |
| 172 | // V5TE Processors. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 173 | def : ProcNoItin<"arm9e", [HasV5TEOps]>; |
| 174 | def : ProcNoItin<"arm926ej-s", [HasV5TEOps]>; |
| 175 | def : ProcNoItin<"arm946e-s", [HasV5TEOps]>; |
| 176 | def : ProcNoItin<"arm966e-s", [HasV5TEOps]>; |
| 177 | def : ProcNoItin<"arm968e-s", [HasV5TEOps]>; |
| 178 | def : ProcNoItin<"arm10e", [HasV5TEOps]>; |
| 179 | def : ProcNoItin<"arm1020e", [HasV5TEOps]>; |
| 180 | def : ProcNoItin<"arm1022e", [HasV5TEOps]>; |
| 181 | def : ProcNoItin<"xscale", [HasV5TEOps]>; |
| 182 | def : ProcNoItin<"iwmmxt", [HasV5TEOps]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 183 | |
| 184 | // V6 Processors. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 185 | def : Processor<"arm1136j-s", ARMV6Itineraries, [HasV6Ops]>; |
| 186 | def : Processor<"arm1136jf-s", ARMV6Itineraries, [HasV6Ops, FeatureVFP2, |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 187 | FeatureHasSlowFPVMLx]>; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 188 | def : Processor<"arm1176jz-s", ARMV6Itineraries, [HasV6Ops]>; |
| 189 | def : Processor<"arm1176jzf-s", ARMV6Itineraries, [HasV6Ops, FeatureVFP2, |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 190 | FeatureHasSlowFPVMLx]>; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 191 | def : Processor<"mpcorenovfp", ARMV6Itineraries, [HasV6Ops]>; |
| 192 | def : Processor<"mpcore", ARMV6Itineraries, [HasV6Ops, FeatureVFP2, |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 193 | FeatureHasSlowFPVMLx]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 194 | |
Evan Cheng | c7569ed | 2010-08-11 06:30:38 +0000 | [diff] [blame] | 195 | // V6M Processors. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 196 | def : Processor<"cortex-m0", ARMV6Itineraries, [HasV6Ops, FeatureNoARM, |
James Molloy | acad68d | 2011-09-28 14:21:38 +0000 | [diff] [blame] | 197 | FeatureDB, FeatureMClass]>; |
Evan Cheng | c7569ed | 2010-08-11 06:30:38 +0000 | [diff] [blame] | 198 | |
Anton Korobeynikov | fbbf1ee | 2009-06-08 21:20:36 +0000 | [diff] [blame] | 199 | // V6T2 Processors. |
Evan Cheng | 0d18174 | 2011-09-20 21:38:18 +0000 | [diff] [blame] | 200 | def : Processor<"arm1156t2-s", ARMV6Itineraries, [HasV6T2Ops, |
| 201 | FeatureDSPThumb2]>; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 202 | def : Processor<"arm1156t2f-s", ARMV6Itineraries, [HasV6T2Ops, FeatureVFP2, |
Evan Cheng | 0d18174 | 2011-09-20 21:38:18 +0000 | [diff] [blame] | 203 | FeatureHasSlowFPVMLx, |
| 204 | FeatureDSPThumb2]>; |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 205 | |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 206 | // V7a Processors. |
Andrew Trick | 2661b41 | 2012-07-07 04:00:00 +0000 | [diff] [blame^] | 207 | def : ProcessorModel<"cortex-a8", CortexA8Model, |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 208 | [ProcA8, HasV7Ops, FeatureNEON, FeatureDB, |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 209 | FeatureDSPThumb2, FeatureHasRAS]>; |
Andrew Trick | 2661b41 | 2012-07-07 04:00:00 +0000 | [diff] [blame^] | 210 | def : ProcessorModel<"cortex-a9", CortexA9Model, |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 211 | [ProcA9, HasV7Ops, FeatureNEON, FeatureDB, |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 212 | FeatureDSPThumb2, FeatureHasRAS]>; |
Andrew Trick | 2661b41 | 2012-07-07 04:00:00 +0000 | [diff] [blame^] | 213 | def : ProcessorModel<"cortex-a9-mp", CortexA9Model, |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 214 | [ProcA9, HasV7Ops, FeatureNEON, FeatureDB, |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 215 | FeatureDSPThumb2, FeatureMP, |
| 216 | FeatureHasRAS]>; |
Evan Cheng | c7569ed | 2010-08-11 06:30:38 +0000 | [diff] [blame] | 217 | |
| 218 | // V7M Processors. |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 219 | def : ProcNoItin<"cortex-m3", [HasV7Ops, |
| 220 | FeatureThumb2, FeatureNoARM, FeatureDB, |
James Molloy | acad68d | 2011-09-28 14:21:38 +0000 | [diff] [blame] | 221 | FeatureHWDiv, FeatureMClass]>; |
Evan Cheng | 39dfb0f | 2011-07-07 03:55:05 +0000 | [diff] [blame] | 222 | |
| 223 | // V7EM Processors. |
| 224 | def : ProcNoItin<"cortex-m4", [HasV7Ops, |
| 225 | FeatureThumb2, FeatureNoARM, FeatureDB, |
| 226 | FeatureHWDiv, FeatureDSPThumb2, |
| 227 | FeatureT2XtPk, FeatureVFP2, |
James Molloy | acad68d | 2011-09-28 14:21:38 +0000 | [diff] [blame] | 228 | FeatureVFPOnlySP, FeatureMClass]>; |
Anton Korobeynikov | 6d7d2aa | 2009-05-23 19:51:43 +0000 | [diff] [blame] | 229 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 230 | //===----------------------------------------------------------------------===// |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 231 | // Register File Description |
| 232 | //===----------------------------------------------------------------------===// |
| 233 | |
| 234 | include "ARMRegisterInfo.td" |
| 235 | |
Bob Wilson | 1f595bb | 2009-04-17 19:07:39 +0000 | [diff] [blame] | 236 | include "ARMCallingConv.td" |
| 237 | |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 238 | //===----------------------------------------------------------------------===// |
| 239 | // Instruction Descriptions |
| 240 | //===----------------------------------------------------------------------===// |
| 241 | |
| 242 | include "ARMInstrInfo.td" |
| 243 | |
Jakob Stoklund Olesen | fddb766 | 2010-04-05 03:10:20 +0000 | [diff] [blame] | 244 | def ARMInstrInfo : InstrInfo; |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 245 | |
Jim Grosbach | 2317e40 | 2010-09-30 01:57:53 +0000 | [diff] [blame] | 246 | |
| 247 | //===----------------------------------------------------------------------===// |
| 248 | // Assembly printer |
| 249 | //===----------------------------------------------------------------------===// |
| 250 | // ARM Uses the MC printer for asm output, so make sure the TableGen |
| 251 | // AsmWriter bits get associated with the correct class. |
| 252 | def ARMAsmWriter : AsmWriter { |
| 253 | string AsmWriterClassName = "InstPrinter"; |
| 254 | bit isMCAsmWriter = 1; |
| 255 | } |
| 256 | |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 257 | //===----------------------------------------------------------------------===// |
| 258 | // Declare the target which we are implementing |
| 259 | //===----------------------------------------------------------------------===// |
| 260 | |
| 261 | def ARM : Target { |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 262 | // Pull in Instruction Info: |
| 263 | let InstructionSet = ARMInstrInfo; |
Jim Grosbach | 2317e40 | 2010-09-30 01:57:53 +0000 | [diff] [blame] | 264 | |
| 265 | let AssemblyWriters = [ARMAsmWriter]; |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 266 | } |