Revert r118097 to fix buildbots.
[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   , SlowVMLx(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   , FPOnlySP(false)
55   , AllowsUnalignedMem(false)
56   , stackAlignment(4)
57   , CPUString("generic")
58   , TargetType(isELF) // Default to ELF unless otherwise specified.
59   , TargetABI(ARM_ABI_APCS) {
60   // Default to soft float ABI
61   if (FloatABIType == FloatABI::Default)
62     FloatABIType = FloatABI::Soft;
63
64   // Determine default and user specified characteristics
65
66   // Parse features string.
67   CPUString = ParseSubtargetFeatures(FS, CPUString);
68
69   // When no arch is specified either by CPU or by attributes, make the default
70   // ARMv4T.
71   if (CPUString == "generic" && (FS.empty() || FS == "generic"))
72     ARMArchVersion = V4T;
73
74   // Set the boolean corresponding to the current target triple, or the default
75   // if one cannot be determined, to true.
76   unsigned Len = TT.length();
77   unsigned Idx = 0;
78
79   if (Len >= 5 && TT.substr(0, 4) == "armv")
80     Idx = 4;
81   else if (Len >= 6 && TT.substr(0, 5) == "thumb") {
82     IsThumb = true;
83     if (Len >= 7 && TT[5] == 'v')
84       Idx = 6;
85   }
86   if (Idx) {
87     unsigned SubVer = TT[Idx];
88     if (SubVer >= '7' && SubVer <= '9') {
89       ARMArchVersion = V7A;
90       if (Len >= Idx+2 && TT[Idx+1] == 'm')
91         ARMArchVersion = V7M;
92     } else if (SubVer == '6') {
93       ARMArchVersion = V6;
94       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2')
95         ARMArchVersion = V6T2;
96     } else if (SubVer == '5') {
97       ARMArchVersion = V5T;
98       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == 'e')
99         ARMArchVersion = V5TE;
100     } else if (SubVer == '4') {
101       if (Len >= Idx+2 && TT[Idx+1] == 't')
102         ARMArchVersion = V4T;
103       else
104         ARMArchVersion = V4;
105     }
106   }
107
108   // Thumb2 implies at least V6T2.
109   if (ARMArchVersion >= V6T2)
110     ThumbMode = Thumb2;
111   else if (ThumbMode >= Thumb2)
112     ARMArchVersion = V6T2;
113
114   if (Len >= 10) {
115     if (TT.find("-darwin") != std::string::npos)
116       // arm-darwin
117       TargetType = isDarwin;
118   }
119
120   if (TT.find("eabi") != std::string::npos)
121     TargetABI = ARM_ABI_AAPCS;
122
123   if (isAAPCS_ABI())
124     stackAlignment = 8;
125
126   if (isTargetDarwin())
127     IsR9Reserved = ReserveR9 | (ARMArchVersion < V6);
128
129   if (!isThumb() || hasThumb2())
130     PostRAScheduler = true;
131
132   // v6+ may or may not support unaligned mem access depending on the system
133   // configuration.
134   if (!StrictAlign && hasV6Ops() && isTargetDarwin())
135     AllowsUnalignedMem = true;
136 }
137
138 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
139 bool
140 ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
141                                  Reloc::Model RelocM) const {
142   if (RelocM == Reloc::Static)
143     return false;
144
145   // Materializable GVs (in JIT lazy compilation mode) do not require an extra
146   // load from stub.
147   bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
148
149   if (!isTargetDarwin()) {
150     // Extra load is needed for all externally visible.
151     if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
152       return false;
153     return true;
154   } else {
155     if (RelocM == Reloc::PIC_) {
156       // If this is a strong reference to a definition, it is definitely not
157       // through a stub.
158       if (!isDecl && !GV->isWeakForLinker())
159         return false;
160
161       // Unless we have a symbol with hidden visibility, we have to go through a
162       // normal $non_lazy_ptr stub because this symbol might be resolved late.
163       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
164         return true;
165
166       // If symbol visibility is hidden, we have a stub for common symbol
167       // references and external declarations.
168       if (isDecl || GV->hasCommonLinkage())
169         // Hidden $non_lazy_ptr reference.
170         return true;
171
172       return false;
173     } else {
174       // If this is a strong reference to a definition, it is definitely not
175       // through a stub.
176       if (!isDecl && !GV->isWeakForLinker())
177         return false;
178     
179       // Unless we have a symbol with hidden visibility, we have to go through a
180       // normal $non_lazy_ptr stub because this symbol might be resolved late.
181       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
182         return true;
183     }
184   }
185
186   return false;
187 }
188
189 unsigned ARMSubtarget::getMispredictionPenalty() const {
190   // If we have a reasonable estimate of the pipeline depth, then we can
191   // estimate the penalty of a misprediction based on that.
192   if (isCortexA8())
193     return 13;
194   else if (isCortexA9())
195     return 8;
196   
197   // Otherwise, just return a sensible default.
198   return 10;
199 }
200
201 bool ARMSubtarget::enablePostRAScheduler(
202            CodeGenOpt::Level OptLevel,
203            TargetSubtarget::AntiDepBreakMode& Mode,
204            RegClassVector& CriticalPathRCs) const {
205   Mode = TargetSubtarget::ANTIDEP_CRITICAL;
206   CriticalPathRCs.clear();
207   CriticalPathRCs.push_back(&ARM::GPRRegClass);
208   return PostRAScheduler && OptLevel >= CodeGenOpt::Default;
209 }