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