Add const qualifiers to CodeGen's use of LLVM IR constructs.
[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(const GlobalValue *GV,
120                                  Reloc::Model RelocM) const {
121   if (RelocM == Reloc::Static)
122     return false;
123
124   // Materializable GVs (in JIT lazy compilation mode) do not require an extra
125   // load from stub.
126   bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
127
128   if (!isTargetDarwin()) {
129     // Extra load is needed for all externally visible.
130     if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
131       return false;
132     return true;
133   } else {
134     if (RelocM == Reloc::PIC_) {
135       // If this is a strong reference to a definition, it is definitely not
136       // through a stub.
137       if (!isDecl && !GV->isWeakForLinker())
138         return false;
139
140       // Unless we have a symbol with hidden visibility, we have to go through a
141       // normal $non_lazy_ptr stub because this symbol might be resolved late.
142       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
143         return true;
144
145       // If symbol visibility is hidden, we have a stub for common symbol
146       // references and external declarations.
147       if (isDecl || GV->hasCommonLinkage())
148         // Hidden $non_lazy_ptr reference.
149         return true;
150
151       return false;
152     } else {
153       // If this is a strong reference to a definition, it is definitely not
154       // through a stub.
155       if (!isDecl && !GV->isWeakForLinker())
156         return false;
157     
158       // Unless we have a symbol with hidden visibility, we have to go through a
159       // normal $non_lazy_ptr stub because this symbol might be resolved late.
160       if (!GV->hasHiddenVisibility())  // Non-hidden $non_lazy_ptr reference.
161         return true;
162     }
163   }
164
165   return false;
166 }
167
168 bool ARMSubtarget::enablePostRAScheduler(
169            CodeGenOpt::Level OptLevel,
170            TargetSubtarget::AntiDepBreakMode& Mode,
171            RegClassVector& CriticalPathRCs) const {
172   Mode = TargetSubtarget::ANTIDEP_CRITICAL;
173   CriticalPathRCs.clear();
174   CriticalPathRCs.push_back(&ARM::GPRRegClass);
175   return PostRAScheduler && OptLevel >= CodeGenOpt::Default;
176 }