Add a variable to track whether or not we've used a unique section,
[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/MC/MCAsmInfo.h"
21 #include "llvm/MC/MCCodeGenInfo.h"
22 #include "llvm/Support/CommandLine.h"
23 using namespace llvm;
24
25 //---------------------------------------------------------------------------
26 // Command-line options that tend to be useful on more than one back-end.
27 //
28
29 namespace llvm {
30   bool HasDivModLibcall;
31   bool AsmVerbosityDefault(false);
32 }
33
34 static cl::opt<bool>
35 DataSections("fdata-sections",
36   cl::desc("Emit data into separate sections"),
37   cl::init(false));
38 static cl::opt<bool>
39 FunctionSections("ffunction-sections",
40   cl::desc("Emit functions into separate sections"),
41   cl::init(false));
42
43 //---------------------------------------------------------------------------
44 // TargetMachine Class
45 //
46
47 TargetMachine::TargetMachine(const Target &T,
48                              StringRef TT, StringRef CPU, StringRef FS,
49                              const TargetOptions &Options)
50   : TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
51     CodeGenInfo(0), AsmInfo(0),
52     MCRelaxAll(false),
53     MCNoExecStack(false),
54     MCSaveTempLabels(false),
55     MCUseLoc(true),
56     MCUseCFI(true),
57     MCUseDwarfDirectory(false),
58     DebugUseUniqueSections(false),
59     RequireStructuredCFG(false),
60     Options(Options) {
61 }
62
63 TargetMachine::~TargetMachine() {
64   delete CodeGenInfo;
65   delete AsmInfo;
66 }
67
68 /// \brief Reset the target options based on the function's attributes.
69 void TargetMachine::resetTargetOptions(const MachineFunction *MF) const {
70   const Function *F = MF->getFunction();
71   TargetOptions &TO = MF->getTarget().Options;
72
73 #define RESET_OPTION(X, Y)                                              \
74   do {                                                                  \
75     if (F->hasFnAttribute(Y))                                           \
76       TO.X =                                                            \
77         (F->getAttributes().                                            \
78            getAttribute(AttributeSet::FunctionIndex,                    \
79                         Y).getValueAsString() == "true");               \
80   } while (0)
81
82   RESET_OPTION(NoFramePointerElim, "no-frame-pointer-elim");
83   RESET_OPTION(LessPreciseFPMADOption, "less-precise-fpmad");
84   RESET_OPTION(UnsafeFPMath, "unsafe-fp-math");
85   RESET_OPTION(NoInfsFPMath, "no-infs-fp-math");
86   RESET_OPTION(NoNaNsFPMath, "no-nans-fp-math");
87   RESET_OPTION(UseSoftFloat, "use-soft-float");
88   RESET_OPTION(DisableTailCalls, "disable-tail-calls");
89 }
90
91 /// getRelocationModel - Returns the code generation relocation model. The
92 /// choices are static, PIC, and dynamic-no-pic, and target default.
93 Reloc::Model TargetMachine::getRelocationModel() const {
94   if (!CodeGenInfo)
95     return Reloc::Default;
96   return CodeGenInfo->getRelocationModel();
97 }
98
99 /// getCodeModel - Returns the code model. The choices are small, kernel,
100 /// medium, large, and target default.
101 CodeModel::Model TargetMachine::getCodeModel() const {
102   if (!CodeGenInfo)
103     return CodeModel::Default;
104   return CodeGenInfo->getCodeModel();
105 }
106
107 /// Get the IR-specified TLS model for Var.
108 static TLSModel::Model getSelectedTLSModel(const GlobalVariable *Var) {
109   switch (Var->getThreadLocalMode()) {
110   case GlobalVariable::NotThreadLocal:
111     llvm_unreachable("getSelectedTLSModel for non-TLS variable");
112     break;
113   case GlobalVariable::GeneralDynamicTLSModel:
114     return TLSModel::GeneralDynamic;
115   case GlobalVariable::LocalDynamicTLSModel:
116     return TLSModel::LocalDynamic;
117   case GlobalVariable::InitialExecTLSModel:
118     return TLSModel::InitialExec;
119   case GlobalVariable::LocalExecTLSModel:
120     return TLSModel::LocalExec;
121   }
122   llvm_unreachable("invalid TLS model");
123 }
124
125 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
126   // If GV is an alias then use the aliasee for determining
127   // thread-localness.
128   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
129     GV = GA->resolveAliasedGlobal(false);
130   const GlobalVariable *Var = cast<GlobalVariable>(GV);
131
132   bool isLocal = Var->hasLocalLinkage();
133   bool isDeclaration = Var->isDeclaration();
134   bool isPIC = getRelocationModel() == Reloc::PIC_;
135   bool isPIE = Options.PositionIndependentExecutable;
136   // FIXME: what should we do for protected and internal visibility?
137   // For variables, is internal different from hidden?
138   bool isHidden = Var->hasHiddenVisibility();
139
140   TLSModel::Model Model;
141   if (isPIC && !isPIE) {
142     if (isLocal || isHidden)
143       Model = TLSModel::LocalDynamic;
144     else
145       Model = TLSModel::GeneralDynamic;
146   } else {
147     if (!isDeclaration || isHidden)
148       Model = TLSModel::LocalExec;
149     else
150       Model = TLSModel::InitialExec;
151   }
152
153   // If the user specified a more specific model, use that.
154   TLSModel::Model SelectedModel = getSelectedTLSModel(Var);
155   if (SelectedModel > Model)
156     return SelectedModel;
157
158   return Model;
159 }
160
161 /// getOptLevel - Returns the optimization level: None, Less,
162 /// Default, or Aggressive.
163 CodeGenOpt::Level TargetMachine::getOptLevel() const {
164   if (!CodeGenInfo)
165     return CodeGenOpt::Default;
166   return CodeGenInfo->getOptLevel();
167 }
168
169 void TargetMachine::setOptLevel(CodeGenOpt::Level Level) const {
170   if (CodeGenInfo)
171     CodeGenInfo->setOptLevel(Level);
172 }
173
174 bool TargetMachine::getAsmVerbosityDefault() {
175   return AsmVerbosityDefault;
176 }
177
178 void TargetMachine::setAsmVerbosityDefault(bool V) {
179   AsmVerbosityDefault = V;
180 }
181
182 bool TargetMachine::getFunctionSections() {
183   return FunctionSections;
184 }
185
186 bool TargetMachine::getDataSections() {
187   return DataSections;
188 }
189
190 void TargetMachine::setFunctionSections(bool V) {
191   FunctionSections = V;
192 }
193
194 void TargetMachine::setDataSections(bool V) {
195   DataSections = V;
196 }