McARM: Fill in GetMnemonicAcceptInfo().
[oota-llvm.git] / lib / Target / ARM / ARMSubtarget.cpp
1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ------------*- 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 // This file implements the ARM specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMSubtarget.h"
15 #include "ARMGenSubtarget.inc"
16 #include "llvm/GlobalValue.h"
17 #include "llvm/Target/TargetOptions.h"
18 #include "llvm/Support/CommandLine.h"
19 #include "llvm/ADT/SmallVector.h"
20 using namespace llvm;
21
22 static cl::opt<bool>
23 ReserveR9("arm-reserve-r9", cl::Hidden,
24           cl::desc("Reserve R9, making it unavailable as GPR"));
25
26 static cl::opt<bool>
27 UseMOVT("arm-use-movt",
28         cl::init(true), cl::Hidden);
29
30 static cl::opt<bool>
31 StrictAlign("arm-strict-align", cl::Hidden,
32             cl::desc("Disallow all unaligned memory accesses"));
33
34 ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS,
35                            bool isT)
36   : ARMArchVersion(V4)
37   , ARMProcFamily(Others)
38   , ARMFPUType(None)
39   , UseNEONForSinglePrecisionFP(false)
40   , SlowFPVMLx(false)
41   , SlowFPBrcc(false)
42   , IsThumb(isT)
43   , ThumbMode(Thumb1)
44   , NoARM(false)
45   , PostRAScheduler(false)
46   , IsR9Reserved(ReserveR9)
47   , UseMovt(UseMOVT)
48   , HasFP16(false)
49   , HasD16(false)
50   , HasHardwareDivide(false)
51   , HasT2ExtractPack(false)
52   , HasDataBarrier(false)
53   , Pref32BitThumb(false)
54   , HasMPExtension(false)
55   , FPOnlySP(false)
56   , AllowsUnalignedMem(false)
57   , stackAlignment(4)
58   , CPUString("generic")
59   , TargetType(isELF) // Default to ELF unless otherwise specified.
60   , TargetABI(ARM_ABI_APCS) {
61   // Default to soft float ABI
62   if (FloatABIType == FloatABI::Default)
63     FloatABIType = FloatABI::Soft;
64
65   // Determine default and user specified characteristics
66
67   // When no arch is specified either by CPU or by attributes, make the default
68   // ARMv4T.
69   const char *ARMArchFeature = "";
70   if (CPUString == "generic" && (FS.empty() || FS == "generic")) {
71     ARMArchVersion = V4T;
72     ARMArchFeature = ",+v4t";
73   }
74
75   // Set the boolean corresponding to the current target triple, or the default
76   // if one cannot be determined, to true.
77   unsigned Len = TT.length();
78   unsigned Idx = 0;
79
80   if (Len >= 5 && TT.substr(0, 4) == "armv")
81     Idx = 4;
82   else if (Len >= 6 && TT.substr(0, 5) == "thumb") {
83     IsThumb = true;
84     if (Len >= 7 && TT[5] == 'v')
85       Idx = 6;
86   }
87   if (Idx) {
88     unsigned SubVer = TT[Idx];
89     if (SubVer >= '7' && SubVer <= '9') {
90       ARMArchVersion = V7A;
91       ARMArchFeature = ",+v7a";
92       if (Len >= Idx+2 && TT[Idx+1] == 'm') {
93         ARMArchVersion = V7M;
94         ARMArchFeature = ",+v7m";
95       }
96     } else if (SubVer == '6') {
97       ARMArchVersion = V6;
98       ARMArchFeature = ",+v6";
99       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2') {
100         ARMArchVersion = V6T2;
101         ARMArchFeature = ",+v6t2";
102       }
103     } else if (SubVer == '5') {
104       ARMArchVersion = V5T;
105       ARMArchFeature = ",+v5t";
106       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == 'e') {
107         ARMArchVersion = V5TE;
108         ARMArchFeature = ",+v5te";
109       }
110     } else if (SubVer == '4') {
111       if (Len >= Idx+2 && TT[Idx+1] == 't') {
112         ARMArchVersion = V4T;
113         ARMArchFeature = ",+v4t";
114       } else {
115         ARMArchVersion = V4;
116         ARMArchFeature = "";
117       }
118     }
119   }
120
121   if (Len >= 10) {
122     if (TT.find("-darwin") != std::string::npos)
123       // arm-darwin
124       TargetType = isDarwin;
125   }
126
127   if (TT.find("eabi") != std::string::npos)
128     TargetABI = ARM_ABI_AAPCS;
129
130   // Parse features string.  If the first entry in FS (the CPU) is missing,
131   // insert the architecture feature derived from the target triple.  This is
132   // important for setting features that are implied based on the architecture
133   // version.
134   std::string FSWithArch;
135   if (FS.empty())
136     FSWithArch = std::string(ARMArchFeature);
137   else if (FS.find(',') == 0)
138     FSWithArch = std::string(ARMArchFeature) + FS;
139   else
140     FSWithArch = FS;
141   CPUString = ParseSubtargetFeatures(FSWithArch, CPUString);
142
143   // After parsing Itineraries, set ItinData.IssueWidth.
144   computeIssueWidth();
145
146   // Thumb2 implies at least V6T2.
147   if (ARMArchVersion >= V6T2)
148     ThumbMode = Thumb2;
149   else if (ThumbMode >= Thumb2)
150     ARMArchVersion = V6T2;
151
152   if (isAAPCS_ABI())
153     stackAlignment = 8;
154
155   if (isTargetDarwin())
156     IsR9Reserved = ReserveR9 | (ARMArchVersion < V6);
157
158   if (!isThumb() || hasThumb2())
159     PostRAScheduler = true;
160
161   // v6+ may or may not support unaligned mem access depending on the system
162   // configuration.
163   if (!StrictAlign && hasV6Ops() && isTargetDarwin())
164     AllowsUnalignedMem = true;
165 }
166
167 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
168 bool
169 ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
170                                  Reloc::Model RelocM) const {
171   if (RelocM == Reloc::Static)
172     return false;
173
174   // Materializable GVs (in JIT lazy compilation mode) do not require an extra
175   // load from stub.
176   bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
177
178   if (!isTargetDarwin()) {
179     // Extra load is needed for all externally visible.
180     if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
181       return false;
182     return true;
183   } else {
184     if (RelocM == Reloc::PIC_) {
185       // If this is a strong reference to a definition, it is definitely not
186       // through a stub.
187       if (!isDecl && !GV->isWeakForLinker())
188         return false;
189
190       // Unless we have a symbol with hidden visibility, we have to go through a
191       // normal $non_lazy_ptr stub because this symbol might be resolved late.
192       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
193         return true;
194
195       // If symbol visibility is hidden, we have a stub for common symbol
196       // references and external declarations.
197       if (isDecl || GV->hasCommonLinkage())
198         // Hidden $non_lazy_ptr reference.
199         return true;
200
201       return false;
202     } else {
203       // If this is a strong reference to a definition, it is definitely not
204       // through a stub.
205       if (!isDecl && !GV->isWeakForLinker())
206         return false;
207
208       // Unless we have a symbol with hidden visibility, we have to go through a
209       // normal $non_lazy_ptr stub because this symbol might be resolved late.
210       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
211         return true;
212     }
213   }
214
215   return false;
216 }
217
218 unsigned ARMSubtarget::getMispredictionPenalty() const {
219   // If we have a reasonable estimate of the pipeline depth, then we can
220   // estimate the penalty of a misprediction based on that.
221   if (isCortexA8())
222     return 13;
223   else if (isCortexA9())
224     return 8;
225
226   // Otherwise, just return a sensible default.
227   return 10;
228 }
229
230 void ARMSubtarget::computeIssueWidth() {
231   unsigned allStage1Units = 0;
232   for (const InstrItinerary *itin = InstrItins.Itineraries;
233        itin->FirstStage != ~0U; ++itin) {
234     const InstrStage *IS = InstrItins.Stages + itin->FirstStage;
235     allStage1Units |= IS->getUnits();
236   }
237   InstrItins.IssueWidth = 0;
238   while (allStage1Units) {
239     ++InstrItins.IssueWidth;
240     // clear the lowest bit
241     allStage1Units ^= allStage1Units & ~(allStage1Units - 1);
242   }
243   assert(InstrItins.IssueWidth <= 2 && "itinerary bug, too many stage 1 units");
244 }
245
246 bool ARMSubtarget::enablePostRAScheduler(
247            CodeGenOpt::Level OptLevel,
248            TargetSubtarget::AntiDepBreakMode& Mode,
249            RegClassVector& CriticalPathRCs) const {
250   Mode = TargetSubtarget::ANTIDEP_CRITICAL;
251   CriticalPathRCs.clear();
252   CriticalPathRCs.push_back(&ARM::GPRRegClass);
253   return PostRAScheduler && OptLevel >= CodeGenOpt::Default;
254 }