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