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