Fix return sequence on armv4 thumb
[oota-llvm.git] / lib / Target / TargetMachine.cpp
1 //===-- TargetMachine.cpp - General Target Information ---------------------==//
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 describes the general parts of a Target machine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Target/TargetMachine.h"
15 #include "llvm/CodeGen/MachineFunction.h"
16 #include "llvm/IR/Function.h"
17 #include "llvm/IR/GlobalAlias.h"
18 #include "llvm/IR/GlobalValue.h"
19 #include "llvm/IR/GlobalVariable.h"
20 #include "llvm/IR/Mangler.h"
21 #include "llvm/MC/MCAsmInfo.h"
22 #include "llvm/MC/MCCodeGenInfo.h"
23 #include "llvm/MC/MCContext.h"
24 #include "llvm/MC/MCTargetOptions.h"
25 #include "llvm/MC/SectionKind.h"
26 #include "llvm/Support/CommandLine.h"
27 #include "llvm/Target/TargetLowering.h"
28 #include "llvm/Target/TargetLoweringObjectFile.h"
29 #include "llvm/Target/TargetSubtargetInfo.h"
30 using namespace llvm;
31
32 //---------------------------------------------------------------------------
33 // TargetMachine Class
34 //
35
36 TargetMachine::TargetMachine(const Target &T,
37                              StringRef TT, StringRef CPU, StringRef FS,
38                              const TargetOptions &Options)
39   : TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
40     CodeGenInfo(nullptr), AsmInfo(nullptr),
41     RequireStructuredCFG(false),
42     Options(Options) {
43 }
44
45 TargetMachine::~TargetMachine() {
46   delete CodeGenInfo;
47   delete AsmInfo;
48 }
49
50 /// \brief Reset the target options based on the function's attributes.
51 void TargetMachine::resetTargetOptions(const MachineFunction *MF) const {
52   const Function *F = MF->getFunction();
53   TargetOptions &TO = MF->getTarget().Options;
54
55 #define RESET_OPTION(X, Y)                                              \
56   do {                                                                  \
57     if (F->hasFnAttribute(Y))                                           \
58       TO.X =                                                            \
59         (F->getAttributes().                                            \
60            getAttribute(AttributeSet::FunctionIndex,                    \
61                         Y).getValueAsString() == "true");               \
62   } while (0)
63
64   RESET_OPTION(NoFramePointerElim, "no-frame-pointer-elim");
65   RESET_OPTION(LessPreciseFPMADOption, "less-precise-fpmad");
66   RESET_OPTION(UnsafeFPMath, "unsafe-fp-math");
67   RESET_OPTION(NoInfsFPMath, "no-infs-fp-math");
68   RESET_OPTION(NoNaNsFPMath, "no-nans-fp-math");
69   RESET_OPTION(UseSoftFloat, "use-soft-float");
70   RESET_OPTION(DisableTailCalls, "disable-tail-calls");
71
72   TO.MCOptions.SanitizeAddress = F->hasFnAttribute(Attribute::SanitizeAddress);
73 }
74
75 /// getRelocationModel - Returns the code generation relocation model. The
76 /// choices are static, PIC, and dynamic-no-pic, and target default.
77 Reloc::Model TargetMachine::getRelocationModel() const {
78   if (!CodeGenInfo)
79     return Reloc::Default;
80   return CodeGenInfo->getRelocationModel();
81 }
82
83 /// getCodeModel - Returns the code model. The choices are small, kernel,
84 /// medium, large, and target default.
85 CodeModel::Model TargetMachine::getCodeModel() const {
86   if (!CodeGenInfo)
87     return CodeModel::Default;
88   return CodeGenInfo->getCodeModel();
89 }
90
91 /// Get the IR-specified TLS model for Var.
92 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
93   switch (GV->getThreadLocalMode()) {
94   case GlobalVariable::NotThreadLocal:
95     llvm_unreachable("getSelectedTLSModel for non-TLS variable");
96     break;
97   case GlobalVariable::GeneralDynamicTLSModel:
98     return TLSModel::GeneralDynamic;
99   case GlobalVariable::LocalDynamicTLSModel:
100     return TLSModel::LocalDynamic;
101   case GlobalVariable::InitialExecTLSModel:
102     return TLSModel::InitialExec;
103   case GlobalVariable::LocalExecTLSModel:
104     return TLSModel::LocalExec;
105   }
106   llvm_unreachable("invalid TLS model");
107 }
108
109 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
110   bool isLocal = GV->hasLocalLinkage();
111   bool isDeclaration = GV->isDeclaration();
112   bool isPIC = getRelocationModel() == Reloc::PIC_;
113   bool isPIE = Options.PositionIndependentExecutable;
114   // FIXME: what should we do for protected and internal visibility?
115   // For variables, is internal different from hidden?
116   bool isHidden = GV->hasHiddenVisibility();
117
118   TLSModel::Model Model;
119   if (isPIC && !isPIE) {
120     if (isLocal || isHidden)
121       Model = TLSModel::LocalDynamic;
122     else
123       Model = TLSModel::GeneralDynamic;
124   } else {
125     if (!isDeclaration || isHidden)
126       Model = TLSModel::LocalExec;
127     else
128       Model = TLSModel::InitialExec;
129   }
130
131   // If the user specified a more specific model, use that.
132   TLSModel::Model SelectedModel = getSelectedTLSModel(GV);
133   if (SelectedModel > Model)
134     return SelectedModel;
135
136   return Model;
137 }
138
139 /// getOptLevel - Returns the optimization level: None, Less,
140 /// Default, or Aggressive.
141 CodeGenOpt::Level TargetMachine::getOptLevel() const {
142   if (!CodeGenInfo)
143     return CodeGenOpt::Default;
144   return CodeGenInfo->getOptLevel();
145 }
146
147 void TargetMachine::setOptLevel(CodeGenOpt::Level Level) const {
148   if (CodeGenInfo)
149     CodeGenInfo->setOptLevel(Level);
150 }
151
152 bool TargetMachine::getAsmVerbosityDefault() const {
153   return Options.MCOptions.AsmVerbose;
154 }
155
156 void TargetMachine::setAsmVerbosityDefault(bool V) {
157   Options.MCOptions.AsmVerbose = V;
158 }
159
160 bool TargetMachine::getFunctionSections() const {
161   return Options.FunctionSections;
162 }
163
164 bool TargetMachine::getDataSections() const {
165   return Options.DataSections;
166 }
167
168 void TargetMachine::setFunctionSections(bool V) {
169   Options.FunctionSections = V;
170 }
171
172 void TargetMachine::setDataSections(bool V) {
173   Options.DataSections = V;
174 }
175
176 void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name,
177                                       const GlobalValue *GV, Mangler &Mang,
178                                       bool MayAlwaysUsePrivate) const {
179   if (MayAlwaysUsePrivate || !GV->hasPrivateLinkage()) {
180     // Simple case: If GV is not private, it is not important to find out if
181     // private labels are legal in this case or not.
182     Mang.getNameWithPrefix(Name, GV, false);
183     return;
184   }
185   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, *this);
186   const TargetLoweringObjectFile &TLOF =
187       getSubtargetImpl()->getTargetLowering()->getObjFileLowering();
188   const MCSection *TheSection = TLOF.SectionForGlobal(GV, GVKind, Mang, *this);
189   bool CannotUsePrivateLabel = TLOF.isSectionAtomizableBySymbols(*TheSection);
190   Mang.getNameWithPrefix(Name, GV, CannotUsePrivateLabel);
191 }
192
193 MCSymbol *TargetMachine::getSymbol(const GlobalValue *GV, Mangler &Mang) const {
194   SmallString<60> NameStr;
195   getNameWithPrefix(NameStr, GV, Mang);
196   const TargetLoweringObjectFile &TLOF =
197       getSubtargetImpl()->getTargetLowering()->getObjFileLowering();
198   return TLOF.getContext().GetOrCreateSymbol(NameStr.str());
199 }