Report error if codegen tries to instantiate a ARM target when the cpu does support...
[oota-llvm.git] / lib / Target / ARM / ARM.td
1 //===- ARM.td - Describe the ARM Target Machine -----------------*- C++ -*-===//
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 features.
21 //
22
23 def FeatureVFP2 : SubtargetFeature<"vfp2", "ARMFPUType", "VFPv2",
24                                    "Enable VFP2 instructions">;
25 def FeatureVFP3 : SubtargetFeature<"vfp3", "ARMFPUType", "VFPv3",
26                                    "Enable VFP3 instructions">;
27 def FeatureNEON : SubtargetFeature<"neon", "ARMFPUType", "NEON",
28                                    "Enable NEON instructions">;
29 def FeatureThumb2 : SubtargetFeature<"thumb2", "ThumbMode", "Thumb2",
30                                      "Enable Thumb2 instructions">;
31 def FeatureNoARM  : SubtargetFeature<"noarm", "NoARM", "true",
32                                      "Does not support ARM mode execution">;
33 def FeatureFP16   : SubtargetFeature<"fp16", "HasFP16", "true",
34                                      "Enable half-precision floating point">;
35 def FeatureHWDiv  : SubtargetFeature<"hwdiv", "HasHardwareDivide", "true",
36                                      "Enable divide instructions">;
37 def FeatureT2XtPk : SubtargetFeature<"t2xtpk", "HasT2ExtractPack", "true",
38                                  "Enable Thumb2 extract and pack instructions">;
39 def FeatureDB     : SubtargetFeature<"db", "HasDataBarrier", "true",
40                                    "Has data barrier (dmb / dsb) instructions">;
41 def FeatureSlowFPBrcc : SubtargetFeature<"slow-fp-brcc", "SlowFPBrcc", "true",
42                                          "FP compare + branch is slow">;
43
44 // Some processors have multiply-accumulate instructions that don't
45 // play nicely with other VFP instructions, and it's generally better
46 // to just not use them.
47 // FIXME: Currently, this is only flagged for Cortex-A8. It may be true for
48 // others as well. We should do more benchmarking and confirm one way or
49 // the other.
50 def FeatureHasSlowVMLx : SubtargetFeature<"vmlx", "SlowVMLx", "true",
51                                           "Disable VFP MAC instructions">;
52 // Some processors benefit from using NEON instructions for scalar
53 // single-precision FP operations.
54 def FeatureNEONForFP   : SubtargetFeature<"neonfp", "UseNEONForSinglePrecisionFP",
55                                           "true",
56                                           "Use NEON for single precision FP">;
57
58 // Disable 32-bit to 16-bit narrowing for experimentation.
59 def FeaturePref32BitThumb : SubtargetFeature<"32bit", "Pref32BitThumb", "true",
60                                              "Prefer 32-bit Thumb instrs">;
61
62
63 // ARM architectures.
64 def ArchV4T     : SubtargetFeature<"v4t", "ARMArchVersion", "V4T",
65                                    "ARM v4T">;
66 def ArchV5T     : SubtargetFeature<"v5t", "ARMArchVersion", "V5T",
67                                    "ARM v5T">;
68 def ArchV5TE    : SubtargetFeature<"v5te", "ARMArchVersion", "V5TE",
69                                    "ARM v5TE, v5TEj, v5TExp">;
70 def ArchV6      : SubtargetFeature<"v6", "ARMArchVersion", "V6",
71                                    "ARM v6">;
72 def ArchV6M     : SubtargetFeature<"v6m", "ARMArchVersion", "V6M",
73                                    "ARM v6m",
74                                    [FeatureNoARM, FeatureDB]>;
75 def ArchV6T2    : SubtargetFeature<"v6t2", "ARMArchVersion", "V6T2",
76                                    "ARM v6t2",
77                                    [FeatureThumb2]>;
78 def ArchV7A     : SubtargetFeature<"v7a", "ARMArchVersion", "V7A",
79                                    "ARM v7A",
80                                    [FeatureThumb2, FeatureNEON, FeatureDB]>;
81 def ArchV7M     : SubtargetFeature<"v7m", "ARMArchVersion", "V7M",
82                                    "ARM v7M",
83                                    [FeatureThumb2, FeatureNoARM, FeatureDB,
84                                     FeatureHWDiv]>;
85
86 //===----------------------------------------------------------------------===//
87 // ARM Processors supported.
88 //
89
90 include "ARMSchedule.td"
91
92 class ProcNoItin<string Name, list<SubtargetFeature> Features>
93  : Processor<Name, GenericItineraries, Features>;
94
95 // V4 Processors.
96 def : ProcNoItin<"generic",         []>;
97 def : ProcNoItin<"arm8",            []>;
98 def : ProcNoItin<"arm810",          []>;
99 def : ProcNoItin<"strongarm",       []>;
100 def : ProcNoItin<"strongarm110",    []>;
101 def : ProcNoItin<"strongarm1100",   []>;
102 def : ProcNoItin<"strongarm1110",   []>;
103
104 // V4T Processors.
105 def : ProcNoItin<"arm7tdmi",        [ArchV4T]>;
106 def : ProcNoItin<"arm7tdmi-s",      [ArchV4T]>;
107 def : ProcNoItin<"arm710t",         [ArchV4T]>;
108 def : ProcNoItin<"arm720t",         [ArchV4T]>;
109 def : ProcNoItin<"arm9",            [ArchV4T]>;
110 def : ProcNoItin<"arm9tdmi",        [ArchV4T]>;
111 def : ProcNoItin<"arm920",          [ArchV4T]>;
112 def : ProcNoItin<"arm920t",         [ArchV4T]>;
113 def : ProcNoItin<"arm922t",         [ArchV4T]>;
114 def : ProcNoItin<"arm940t",         [ArchV4T]>;
115 def : ProcNoItin<"ep9312",          [ArchV4T]>;
116
117 // V5T Processors.
118 def : ProcNoItin<"arm10tdmi",       [ArchV5T]>;
119 def : ProcNoItin<"arm1020t",        [ArchV5T]>;
120
121 // V5TE Processors.
122 def : ProcNoItin<"arm9e",           [ArchV5TE]>;
123 def : ProcNoItin<"arm926ej-s",      [ArchV5TE]>;
124 def : ProcNoItin<"arm946e-s",       [ArchV5TE]>;
125 def : ProcNoItin<"arm966e-s",       [ArchV5TE]>;
126 def : ProcNoItin<"arm968e-s",       [ArchV5TE]>;
127 def : ProcNoItin<"arm10e",          [ArchV5TE]>;
128 def : ProcNoItin<"arm1020e",        [ArchV5TE]>;
129 def : ProcNoItin<"arm1022e",        [ArchV5TE]>;
130 def : ProcNoItin<"xscale",          [ArchV5TE]>;
131 def : ProcNoItin<"iwmmxt",          [ArchV5TE]>;
132
133 // V6 Processors.
134 def : Processor<"arm1136j-s",       ARMV6Itineraries, [ArchV6]>;
135 def : Processor<"arm1136jf-s",      ARMV6Itineraries, [ArchV6, FeatureVFP2,
136                                                        FeatureHasSlowVMLx]>;
137 def : Processor<"arm1176jz-s",      ARMV6Itineraries, [ArchV6]>;
138 def : Processor<"arm1176jzf-s",     ARMV6Itineraries, [ArchV6, FeatureVFP2]>;
139 def : Processor<"mpcorenovfp",      ARMV6Itineraries, [ArchV6]>;
140 def : Processor<"mpcore",           ARMV6Itineraries, [ArchV6, FeatureVFP2]>;
141
142 // V6M Processors.
143 def : Processor<"cortex-m0",        ARMV6Itineraries, [ArchV6M]>;
144
145 // V6T2 Processors.
146 def : Processor<"arm1156t2-s",      ARMV6Itineraries, [ArchV6T2]>;
147 def : Processor<"arm1156t2f-s",     ARMV6Itineraries, [ArchV6T2, FeatureVFP2]>;
148
149 // V7 Processors.
150 def : Processor<"cortex-a8",        CortexA8Itineraries,
151                 [ArchV7A, FeatureHasSlowVMLx,
152                  FeatureSlowFPBrcc, FeatureNEONForFP, FeatureT2XtPk]>;
153 def : Processor<"cortex-a9",        CortexA9Itineraries,
154                 [ArchV7A, FeatureT2XtPk]>;
155
156 // V7M Processors.
157 def : ProcNoItin<"cortex-m3",       [ArchV7M]>;
158 def : ProcNoItin<"cortex-m4",       [ArchV7M]>;
159
160 //===----------------------------------------------------------------------===//
161 // Register File Description
162 //===----------------------------------------------------------------------===//
163
164 include "ARMRegisterInfo.td"
165
166 include "ARMCallingConv.td"
167
168 //===----------------------------------------------------------------------===//
169 // Instruction Descriptions
170 //===----------------------------------------------------------------------===//
171
172 include "ARMInstrInfo.td"
173
174 def ARMInstrInfo : InstrInfo;
175
176 //===----------------------------------------------------------------------===//
177 // Declare the target which we are implementing
178 //===----------------------------------------------------------------------===//
179
180 def ARM : Target {
181   // Pull in Instruction Info:
182   let InstructionSet = ARMInstrInfo;
183 }