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