Report error if codegen tries to instantiate a ARM target when the cpu does support...
[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 ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS,
31                            bool isT)
32   : ARMArchVersion(V4)
33   , ARMFPUType(None)
34   , UseNEONForSinglePrecisionFP(false)
35   , SlowVMLx(false)
36   , SlowFPBrcc(false)
37   , IsThumb(isT)
38   , ThumbMode(Thumb1)
39   , NoARM(false)
40   , PostRAScheduler(false)
41   , IsR9Reserved(ReserveR9)
42   , UseMovt(UseMOVT)
43   , HasFP16(false)
44   , HasHardwareDivide(false)
45   , HasT2ExtractPack(false)
46   , HasDataBarrier(false)
47   , Pref32BitThumb(false)
48   , stackAlignment(4)
49   , CPUString("generic")
50   , TargetType(isELF) // Default to ELF unless otherwise specified.
51   , TargetABI(ARM_ABI_APCS) {
52   // default to soft float ABI
53   if (FloatABIType == FloatABI::Default)
54     FloatABIType = FloatABI::Soft;
55
56   // Determine default and user specified characteristics
57
58   // Parse features string.
59   CPUString = ParseSubtargetFeatures(FS, CPUString);
60
61   // When no arch is specified either by CPU or by attributes, make the default
62   // ARMv4T.
63   if (CPUString == "generic" && (FS.empty() || FS == "generic"))
64     ARMArchVersion = V4T;
65
66   // Set the boolean corresponding to the current target triple, or the default
67   // if one cannot be determined, to true.
68   unsigned Len = TT.length();
69   unsigned Idx = 0;
70
71   if (Len >= 5 && TT.substr(0, 4) == "armv")
72     Idx = 4;
73   else if (Len >= 6 && TT.substr(0, 5) == "thumb") {
74     IsThumb = true;
75     if (Len >= 7 && TT[5] == 'v')
76       Idx = 6;
77   }
78   if (Idx) {
79     unsigned SubVer = TT[Idx];
80     if (SubVer >= '7' && SubVer <= '9') {
81       ARMArchVersion = V7A;
82       if (Len >= Idx+2 && TT[Idx+1] == 'm')
83         ARMArchVersion = V7M;
84     } else if (SubVer == '6') {
85       ARMArchVersion = V6;
86       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2')
87         ARMArchVersion = V6T2;
88     } else if (SubVer == '5') {
89       ARMArchVersion = V5T;
90       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == 'e')
91         ARMArchVersion = V5TE;
92     } else if (SubVer == '4') {
93       if (Len >= Idx+2 && TT[Idx+1] == 't')
94         ARMArchVersion = V4T;
95       else
96         ARMArchVersion = V4;
97     }
98   }
99
100   // Thumb2 implies at least V6T2.
101   if (ARMArchVersion >= V6T2)
102     ThumbMode = Thumb2;
103   else if (ThumbMode >= Thumb2)
104     ARMArchVersion = V6T2;
105
106   if (Len >= 10) {
107     if (TT.find("-darwin") != std::string::npos)
108       // arm-darwin
109       TargetType = isDarwin;
110   }
111
112   if (TT.find("eabi") != std::string::npos)
113     TargetABI = ARM_ABI_AAPCS;
114
115   if (isAAPCS_ABI())
116     stackAlignment = 8;
117
118   if (isTargetDarwin())
119     IsR9Reserved = ReserveR9 | (ARMArchVersion < V6);
120
121   if (!isThumb() || hasThumb2())
122     PostRAScheduler = true;
123 }
124
125 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
126 bool
127 ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
128                                  Reloc::Model RelocM) const {
129   if (RelocM == Reloc::Static)
130     return false;
131
132   // Materializable GVs (in JIT lazy compilation mode) do not require an extra
133   // load from stub.
134   bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
135
136   if (!isTargetDarwin()) {
137     // Extra load is needed for all externally visible.
138     if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
139       return false;
140     return true;
141   } else {
142     if (RelocM == Reloc::PIC_) {
143       // If this is a strong reference to a definition, it is definitely not
144       // through a stub.
145       if (!isDecl && !GV->isWeakForLinker())
146         return false;
147
148       // Unless we have a symbol with hidden visibility, we have to go through a
149       // normal $non_lazy_ptr stub because this symbol might be resolved late.
150       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
151         return true;
152
153       // If symbol visibility is hidden, we have a stub for common symbol
154       // references and external declarations.
155       if (isDecl || GV->hasCommonLinkage())
156         // Hidden $non_lazy_ptr reference.
157         return true;
158
159       return false;
160     } else {
161       // If this is a strong reference to a definition, it is definitely not
162       // through a stub.
163       if (!isDecl && !GV->isWeakForLinker())
164         return false;
165     
166       // Unless we have a symbol with hidden visibility, we have to go through a
167       // normal $non_lazy_ptr stub because this symbol might be resolved late.
168       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
169         return true;
170     }
171   }
172
173   return false;
174 }
175
176 bool ARMSubtarget::enablePostRAScheduler(
177            CodeGenOpt::Level OptLevel,
178            TargetSubtarget::AntiDepBreakMode& Mode,
179            RegClassVector& CriticalPathRCs) const {
180   Mode = TargetSubtarget::ANTIDEP_CRITICAL;
181   CriticalPathRCs.clear();
182   CriticalPathRCs.push_back(&ARM::GPRRegClass);
183   return PostRAScheduler && OptLevel >= CodeGenOpt::Default;
184 }