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