Chris Lattner | 23e70eb | 2010-08-17 16:20:04 +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 | |
Jim Grosbach | 2317e40 | 2010-09-30 01:57:53 +0000 | [diff] [blame] | 19 | |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 20 | //===----------------------------------------------------------------------===// |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 21 | // ARM Subtarget features. |
| 22 | // |
| 23 | |
Anton Korobeynikov | 6d7d2aa | 2009-05-23 19:51:43 +0000 | [diff] [blame] | 24 | def FeatureVFP2 : SubtargetFeature<"vfp2", "ARMFPUType", "VFPv2", |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 25 | "Enable VFP2 instructions">; |
Anton Korobeynikov | 6d7d2aa | 2009-05-23 19:51:43 +0000 | [diff] [blame] | 26 | def FeatureVFP3 : SubtargetFeature<"vfp3", "ARMFPUType", "VFPv3", |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 27 | "Enable VFP3 instructions">; |
Anton Korobeynikov | 6d7d2aa | 2009-05-23 19:51:43 +0000 | [diff] [blame] | 28 | def FeatureNEON : SubtargetFeature<"neon", "ARMFPUType", "NEON", |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 29 | "Enable NEON instructions">; |
| 30 | def FeatureThumb2 : SubtargetFeature<"thumb2", "ThumbMode", "Thumb2", |
| 31 | "Enable Thumb2 instructions">; |
Evan Cheng | 7b4d311 | 2010-08-11 07:17:46 +0000 | [diff] [blame] | 32 | def FeatureNoARM : SubtargetFeature<"noarm", "NoARM", "true", |
| 33 | "Does not support ARM mode execution">; |
Anton Korobeynikov | 631379e | 2010-03-14 18:42:38 +0000 | [diff] [blame] | 34 | def FeatureFP16 : SubtargetFeature<"fp16", "HasFP16", "true", |
| 35 | "Enable half-precision floating point">; |
Bob Wilson | 77f42b5 | 2010-10-12 16:22:47 +0000 | [diff] [blame] | 36 | def FeatureD16 : SubtargetFeature<"d16", "HasD16", "true", |
| 37 | "Restrict VFP3 to 16 double registers">; |
Jim Grosbach | 2940213 | 2010-05-05 23:44:43 +0000 | [diff] [blame] | 38 | def FeatureHWDiv : SubtargetFeature<"hwdiv", "HasHardwareDivide", "true", |
| 39 | "Enable divide instructions">; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 40 | def FeatureT2XtPk : SubtargetFeature<"t2xtpk", "HasT2ExtractPack", "true", |
Jim Grosbach | 2940213 | 2010-05-05 23:44:43 +0000 | [diff] [blame] | 41 | "Enable Thumb2 extract and pack instructions">; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 42 | def FeatureDB : SubtargetFeature<"db", "HasDataBarrier", "true", |
| 43 | "Has data barrier (dmb / dsb) instructions">; |
Evan Cheng | 7a41599 | 2010-07-13 19:21:50 +0000 | [diff] [blame] | 44 | def FeatureSlowFPBrcc : SubtargetFeature<"slow-fp-brcc", "SlowFPBrcc", "true", |
| 45 | "FP compare + branch is slow">; |
Jim Grosbach | fcba5e6 | 2010-08-11 15:44:15 +0000 | [diff] [blame] | 46 | def FeatureVFPOnlySP : SubtargetFeature<"fp-only-sp", "FPOnlySP", "true", |
| 47 | "Floating point unit supports single precision only">; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 48 | |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 49 | // Some processors have FP multiply-accumulate instructions that don't |
| 50 | // play nicely with other VFP / NEON instructions, and it's generally better |
Jim Grosbach | 6b2e8dc | 2010-03-25 23:11:16 +0000 | [diff] [blame] | 51 | // to just not use them. |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 52 | def FeatureHasSlowFPVMLx : SubtargetFeature<"slowfpvmlx", "SlowFPVMLx", "true", |
| 53 | "Disable VFP / NEON MAC instructions">; |
Evan Cheng | 463d358 | 2011-03-31 19:38:48 +0000 | [diff] [blame^] | 54 | |
| 55 | // Cortex-A8 / A9 Advanced SIMD has multiplier accumulator forwarding. |
| 56 | def FeatureVMLxForwarding : SubtargetFeature<"vmlx-forwarding", |
| 57 | "HasVMLxForwarding", "true", |
| 58 | "Has multiplier accumulator forwarding">; |
| 59 | |
Jim Grosbach | 7ec7a0e | 2010-03-25 23:47:34 +0000 | [diff] [blame] | 60 | // Some processors benefit from using NEON instructions for scalar |
| 61 | // single-precision FP operations. |
Jim Grosbach | c5ed013 | 2010-08-17 18:39:16 +0000 | [diff] [blame] | 62 | def FeatureNEONForFP : SubtargetFeature<"neonfp", "UseNEONForSinglePrecisionFP", |
| 63 | "true", |
| 64 | "Use NEON for single precision FP">; |
Jim Grosbach | 7ec7a0e | 2010-03-25 23:47:34 +0000 | [diff] [blame] | 65 | |
Evan Cheng | e44be63 | 2010-08-09 18:35:19 +0000 | [diff] [blame] | 66 | // Disable 32-bit to 16-bit narrowing for experimentation. |
| 67 | def FeaturePref32BitThumb : SubtargetFeature<"32bit", "Pref32BitThumb", "true", |
| 68 | "Prefer 32-bit Thumb instrs">; |
Jim Grosbach | 6b2e8dc | 2010-03-25 23:11:16 +0000 | [diff] [blame] | 69 | |
Evan Cheng | dfed19f | 2010-11-03 06:34:55 +0000 | [diff] [blame] | 70 | // Multiprocessing extension. |
| 71 | def FeatureMP : SubtargetFeature<"mp", "HasMPExtension", "true", |
| 72 | "Supports Multiprocessing extension">; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 73 | |
| 74 | // ARM architectures. |
| 75 | def ArchV4T : SubtargetFeature<"v4t", "ARMArchVersion", "V4T", |
| 76 | "ARM v4T">; |
| 77 | def ArchV5T : SubtargetFeature<"v5t", "ARMArchVersion", "V5T", |
| 78 | "ARM v5T">; |
| 79 | def ArchV5TE : SubtargetFeature<"v5te", "ARMArchVersion", "V5TE", |
| 80 | "ARM v5TE, v5TEj, v5TExp">; |
| 81 | def ArchV6 : SubtargetFeature<"v6", "ARMArchVersion", "V6", |
| 82 | "ARM v6">; |
| 83 | def ArchV6M : SubtargetFeature<"v6m", "ARMArchVersion", "V6M", |
| 84 | "ARM v6m", |
Evan Cheng | 7b4d311 | 2010-08-11 07:17:46 +0000 | [diff] [blame] | 85 | [FeatureNoARM, FeatureDB]>; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 86 | def ArchV6T2 : SubtargetFeature<"v6t2", "ARMArchVersion", "V6T2", |
Evan Cheng | cb5ce6e | 2010-08-11 06:57:53 +0000 | [diff] [blame] | 87 | "ARM v6t2", |
| 88 | [FeatureThumb2]>; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 89 | def ArchV7A : SubtargetFeature<"v7a", "ARMArchVersion", "V7A", |
| 90 | "ARM v7A", |
Evan Cheng | cb5ce6e | 2010-08-11 06:57:53 +0000 | [diff] [blame] | 91 | [FeatureThumb2, FeatureNEON, FeatureDB]>; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 92 | def ArchV7M : SubtargetFeature<"v7m", "ARMArchVersion", "V7M", |
| 93 | "ARM v7M", |
Evan Cheng | 7b4d311 | 2010-08-11 07:17:46 +0000 | [diff] [blame] | 94 | [FeatureThumb2, FeatureNoARM, FeatureDB, |
| 95 | FeatureHWDiv]>; |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 96 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 97 | //===----------------------------------------------------------------------===// |
| 98 | // ARM Processors supported. |
| 99 | // |
| 100 | |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 101 | include "ARMSchedule.td" |
| 102 | |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 103 | // ARM processor families. |
| 104 | def ProcOthers : SubtargetFeature<"others", "ARMProcFamily", "Others", |
| 105 | "One of the other ARM processor families">; |
| 106 | def ProcA8 : SubtargetFeature<"a8", "ARMProcFamily", "CortexA8", |
| 107 | "Cortex-A8 ARM processors", |
Evan Cheng | 167be80 | 2010-12-05 23:03:45 +0000 | [diff] [blame] | 108 | [FeatureSlowFPBrcc, FeatureNEONForFP, |
Evan Cheng | 463d358 | 2011-03-31 19:38:48 +0000 | [diff] [blame^] | 109 | FeatureHasSlowFPVMLx, FeatureVMLxForwarding, |
| 110 | FeatureT2XtPk]>; |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 111 | def ProcA9 : SubtargetFeature<"a9", "ARMProcFamily", "CortexA9", |
Evan Cheng | 167be80 | 2010-12-05 23:03:45 +0000 | [diff] [blame] | 112 | "Cortex-A9 ARM processors", |
Evan Cheng | 463d358 | 2011-03-31 19:38:48 +0000 | [diff] [blame^] | 113 | [FeatureHasSlowFPVMLx, FeatureVMLxForwarding, |
| 114 | FeatureT2XtPk, FeatureFP16]>; |
Evan Cheng | 3ef1c87 | 2010-09-10 01:29:16 +0000 | [diff] [blame] | 115 | |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 116 | class ProcNoItin<string Name, list<SubtargetFeature> Features> |
| 117 | : Processor<Name, GenericItineraries, Features>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 118 | |
| 119 | // V4 Processors. |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 120 | def : ProcNoItin<"generic", []>; |
| 121 | def : ProcNoItin<"arm8", []>; |
| 122 | def : ProcNoItin<"arm810", []>; |
| 123 | def : ProcNoItin<"strongarm", []>; |
| 124 | def : ProcNoItin<"strongarm110", []>; |
| 125 | def : ProcNoItin<"strongarm1100", []>; |
| 126 | def : ProcNoItin<"strongarm1110", []>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 127 | |
| 128 | // V4T Processors. |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 129 | def : ProcNoItin<"arm7tdmi", [ArchV4T]>; |
| 130 | def : ProcNoItin<"arm7tdmi-s", [ArchV4T]>; |
| 131 | def : ProcNoItin<"arm710t", [ArchV4T]>; |
| 132 | def : ProcNoItin<"arm720t", [ArchV4T]>; |
| 133 | def : ProcNoItin<"arm9", [ArchV4T]>; |
| 134 | def : ProcNoItin<"arm9tdmi", [ArchV4T]>; |
| 135 | def : ProcNoItin<"arm920", [ArchV4T]>; |
| 136 | def : ProcNoItin<"arm920t", [ArchV4T]>; |
| 137 | def : ProcNoItin<"arm922t", [ArchV4T]>; |
| 138 | def : ProcNoItin<"arm940t", [ArchV4T]>; |
| 139 | def : ProcNoItin<"ep9312", [ArchV4T]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 140 | |
| 141 | // V5T Processors. |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 142 | def : ProcNoItin<"arm10tdmi", [ArchV5T]>; |
| 143 | def : ProcNoItin<"arm1020t", [ArchV5T]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 144 | |
| 145 | // V5TE Processors. |
Evan Cheng | 8557c2b | 2009-06-19 01:51:50 +0000 | [diff] [blame] | 146 | def : ProcNoItin<"arm9e", [ArchV5TE]>; |
| 147 | def : ProcNoItin<"arm926ej-s", [ArchV5TE]>; |
| 148 | def : ProcNoItin<"arm946e-s", [ArchV5TE]>; |
| 149 | def : ProcNoItin<"arm966e-s", [ArchV5TE]>; |
| 150 | def : ProcNoItin<"arm968e-s", [ArchV5TE]>; |
| 151 | def : ProcNoItin<"arm10e", [ArchV5TE]>; |
| 152 | def : ProcNoItin<"arm1020e", [ArchV5TE]>; |
| 153 | def : ProcNoItin<"arm1022e", [ArchV5TE]>; |
| 154 | def : ProcNoItin<"xscale", [ArchV5TE]>; |
| 155 | def : ProcNoItin<"iwmmxt", [ArchV5TE]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 156 | |
| 157 | // V6 Processors. |
David Goodwin | ebb5cb9 | 2009-11-18 18:39:57 +0000 | [diff] [blame] | 158 | def : Processor<"arm1136j-s", ARMV6Itineraries, [ArchV6]>; |
Jim Grosbach | 1118b5e | 2010-04-01 00:13:43 +0000 | [diff] [blame] | 159 | def : Processor<"arm1136jf-s", ARMV6Itineraries, [ArchV6, FeatureVFP2, |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 160 | FeatureHasSlowFPVMLx]>; |
David Goodwin | ebb5cb9 | 2009-11-18 18:39:57 +0000 | [diff] [blame] | 161 | def : Processor<"arm1176jz-s", ARMV6Itineraries, [ArchV6]>; |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 162 | def : Processor<"arm1176jzf-s", ARMV6Itineraries, [ArchV6, FeatureVFP2, |
| 163 | FeatureHasSlowFPVMLx]>; |
David Goodwin | ebb5cb9 | 2009-11-18 18:39:57 +0000 | [diff] [blame] | 164 | def : Processor<"mpcorenovfp", ARMV6Itineraries, [ArchV6]>; |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 165 | def : Processor<"mpcore", ARMV6Itineraries, [ArchV6, FeatureVFP2, |
| 166 | FeatureHasSlowFPVMLx]>; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 167 | |
Evan Cheng | c7569ed | 2010-08-11 06:30:38 +0000 | [diff] [blame] | 168 | // V6M Processors. |
Evan Cheng | d6b4632 | 2010-08-11 06:51:54 +0000 | [diff] [blame] | 169 | def : Processor<"cortex-m0", ARMV6Itineraries, [ArchV6M]>; |
Evan Cheng | c7569ed | 2010-08-11 06:30:38 +0000 | [diff] [blame] | 170 | |
Anton Korobeynikov | fbbf1ee | 2009-06-08 21:20:36 +0000 | [diff] [blame] | 171 | // V6T2 Processors. |
Evan Cheng | cb5ce6e | 2010-08-11 06:57:53 +0000 | [diff] [blame] | 172 | def : Processor<"arm1156t2-s", ARMV6Itineraries, [ArchV6T2]>; |
Evan Cheng | 48575f6 | 2010-12-05 22:04:16 +0000 | [diff] [blame] | 173 | def : Processor<"arm1156t2f-s", ARMV6Itineraries, [ArchV6T2, FeatureVFP2, |
| 174 | FeatureHasSlowFPVMLx]>; |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 175 | |
Anton Korobeynikov | fbbf1ee | 2009-06-08 21:20:36 +0000 | [diff] [blame] | 176 | // V7 Processors. |
Evan Cheng | 6762d91 | 2009-07-21 18:54:14 +0000 | [diff] [blame] | 177 | def : Processor<"cortex-a8", CortexA8Itineraries, |
Evan Cheng | 167be80 | 2010-12-05 23:03:45 +0000 | [diff] [blame] | 178 | [ArchV7A, ProcA8]>; |
Anton Korobeynikov | 2eeeff8 | 2010-04-07 18:19:18 +0000 | [diff] [blame] | 179 | def : Processor<"cortex-a9", CortexA9Itineraries, |
Evan Cheng | 167be80 | 2010-12-05 23:03:45 +0000 | [diff] [blame] | 180 | [ArchV7A, ProcA9]>; |
Evan Cheng | c7569ed | 2010-08-11 06:30:38 +0000 | [diff] [blame] | 181 | |
| 182 | // V7M Processors. |
Evan Cheng | 8d62e71 | 2010-08-11 07:00:16 +0000 | [diff] [blame] | 183 | def : ProcNoItin<"cortex-m3", [ArchV7M]>; |
Jim Grosbach | fcba5e6 | 2010-08-11 15:44:15 +0000 | [diff] [blame] | 184 | def : ProcNoItin<"cortex-m4", [ArchV7M, FeatureVFP2, FeatureVFPOnlySP]>; |
Anton Korobeynikov | 6d7d2aa | 2009-05-23 19:51:43 +0000 | [diff] [blame] | 185 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 186 | //===----------------------------------------------------------------------===// |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 187 | // Register File Description |
| 188 | //===----------------------------------------------------------------------===// |
| 189 | |
| 190 | include "ARMRegisterInfo.td" |
| 191 | |
Bob Wilson | 1f595bb | 2009-04-17 19:07:39 +0000 | [diff] [blame] | 192 | include "ARMCallingConv.td" |
| 193 | |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 194 | //===----------------------------------------------------------------------===// |
| 195 | // Instruction Descriptions |
| 196 | //===----------------------------------------------------------------------===// |
| 197 | |
| 198 | include "ARMInstrInfo.td" |
| 199 | |
Jakob Stoklund Olesen | fddb766 | 2010-04-05 03:10:20 +0000 | [diff] [blame] | 200 | def ARMInstrInfo : InstrInfo; |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 201 | |
Jim Grosbach | 2317e40 | 2010-09-30 01:57:53 +0000 | [diff] [blame] | 202 | |
| 203 | //===----------------------------------------------------------------------===// |
| 204 | // Assembly printer |
| 205 | //===----------------------------------------------------------------------===// |
| 206 | // ARM Uses the MC printer for asm output, so make sure the TableGen |
| 207 | // AsmWriter bits get associated with the correct class. |
| 208 | def ARMAsmWriter : AsmWriter { |
| 209 | string AsmWriterClassName = "InstPrinter"; |
| 210 | bit isMCAsmWriter = 1; |
| 211 | } |
| 212 | |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 213 | //===----------------------------------------------------------------------===// |
| 214 | // Declare the target which we are implementing |
| 215 | //===----------------------------------------------------------------------===// |
| 216 | |
| 217 | def ARM : Target { |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 218 | // Pull in Instruction Info: |
| 219 | let InstructionSet = ARMInstrInfo; |
Jim Grosbach | 2317e40 | 2010-09-30 01:57:53 +0000 | [diff] [blame] | 220 | |
| 221 | let AssemblyWriters = [ARMAsmWriter]; |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 222 | } |