blob: 826766890dd1567141dd6834c04a8fa4397cc266 [file] [log] [blame]
Matthias Braunbb8507e2017-10-12 22:57:28 +00001//===-- 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/Analysis/TargetTransformInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000016#include "llvm/CodeGen/TargetLoweringObjectFile.h"
17#include "llvm/CodeGen/TargetSubtargetInfo.h"
Matthias Braunbb8507e2017-10-12 22:57:28 +000018#include "llvm/IR/Function.h"
19#include "llvm/IR/GlobalAlias.h"
20#include "llvm/IR/GlobalValue.h"
21#include "llvm/IR/GlobalVariable.h"
22#include "llvm/IR/LegacyPassManager.h"
23#include "llvm/IR/Mangler.h"
24#include "llvm/MC/MCAsmInfo.h"
25#include "llvm/MC/MCContext.h"
26#include "llvm/MC/MCInstrInfo.h"
27#include "llvm/MC/MCSectionMachO.h"
28#include "llvm/MC/MCTargetOptions.h"
29#include "llvm/MC/SectionKind.h"
Matthias Braunbb8507e2017-10-12 22:57:28 +000030using namespace llvm;
31
32//---------------------------------------------------------------------------
33// TargetMachine Class
34//
35
36TargetMachine::TargetMachine(const Target &T, StringRef DataLayoutString,
37 const Triple &TT, StringRef CPU, StringRef FS,
38 const TargetOptions &Options)
39 : TheTarget(T), DL(DataLayoutString), TargetTriple(TT), TargetCPU(CPU),
40 TargetFS(FS), AsmInfo(nullptr), MRI(nullptr), MII(nullptr), STI(nullptr),
41 RequireStructuredCFG(false), DefaultOptions(Options), Options(Options) {
42}
43
44TargetMachine::~TargetMachine() {
45 delete AsmInfo;
46 delete MRI;
47 delete MII;
48 delete STI;
49}
50
51bool TargetMachine::isPositionIndependent() const {
52 return getRelocationModel() == Reloc::PIC_;
53}
54
55/// \brief Reset the target options based on the function's attributes.
56// FIXME: This function needs to go away for a number of reasons:
57// a) global state on the TargetMachine is terrible in general,
58// b) these target options should be passed only on the function
59// and not on the TargetMachine (via TargetOptions) at all.
60void TargetMachine::resetTargetOptions(const Function &F) const {
61#define RESET_OPTION(X, Y) \
62 do { \
63 if (F.hasFnAttribute(Y)) \
64 Options.X = (F.getFnAttribute(Y).getValueAsString() == "true"); \
65 else \
66 Options.X = DefaultOptions.X; \
67 } while (0)
68
69 RESET_OPTION(UnsafeFPMath, "unsafe-fp-math");
70 RESET_OPTION(NoInfsFPMath, "no-infs-fp-math");
71 RESET_OPTION(NoNaNsFPMath, "no-nans-fp-math");
72 RESET_OPTION(NoSignedZerosFPMath, "no-signed-zeros-fp-math");
73 RESET_OPTION(NoTrappingFPMath, "no-trapping-math");
74
75 StringRef Denormal =
76 F.getFnAttribute("denormal-fp-math").getValueAsString();
77 if (Denormal == "ieee")
78 Options.FPDenormalMode = FPDenormal::IEEE;
79 else if (Denormal == "preserve-sign")
80 Options.FPDenormalMode = FPDenormal::PreserveSign;
81 else if (Denormal == "positive-zero")
82 Options.FPDenormalMode = FPDenormal::PositiveZero;
83 else
84 Options.FPDenormalMode = DefaultOptions.FPDenormalMode;
85}
86
87/// Returns the code generation relocation model. The choices are static, PIC,
88/// and dynamic-no-pic.
89Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
90
91/// Returns the code model. The choices are small, kernel, medium, large, and
92/// target default.
93CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
94
95/// Get the IR-specified TLS model for Var.
96static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
97 switch (GV->getThreadLocalMode()) {
98 case GlobalVariable::NotThreadLocal:
99 llvm_unreachable("getSelectedTLSModel for non-TLS variable");
100 break;
101 case GlobalVariable::GeneralDynamicTLSModel:
102 return TLSModel::GeneralDynamic;
103 case GlobalVariable::LocalDynamicTLSModel:
104 return TLSModel::LocalDynamic;
105 case GlobalVariable::InitialExecTLSModel:
106 return TLSModel::InitialExec;
107 case GlobalVariable::LocalExecTLSModel:
108 return TLSModel::LocalExec;
109 }
110 llvm_unreachable("invalid TLS model");
111}
112
113bool TargetMachine::shouldAssumeDSOLocal(const Module &M,
114 const GlobalValue *GV) const {
Rafael Espindola6f366372017-10-30 16:32:31 +0000115 // If the IR producer requested that this GV be treated as dso local, obey.
116 if (GV && GV->isDSOLocal())
117 return true;
118
119 // According to the llvm language reference, we should be able to just return
120 // false in here if we have a GV, as we know it is dso_preemptable.
121 // At this point in time, the various IR producers have not been transitioned
122 // to always produce a dso_local when it is possible to do so. As a result we
123 // still have some pre-dso_local logic in here to improve the quality of the
124 // generated code:
125
Matthias Braunbb8507e2017-10-12 22:57:28 +0000126 Reloc::Model RM = getRelocationModel();
127 const Triple &TT = getTargetTriple();
128
129 // DLLImport explicitly marks the GV as external.
130 if (GV && GV->hasDLLImportStorageClass())
131 return false;
132
133 // Every other GV is local on COFF.
Rafael Espindolaba02f3f2018-02-22 23:59:46 +0000134 // Make an exception for windows OS in the triple: Some firmware builds use
Matthias Braunbb8507e2017-10-12 22:57:28 +0000135 // *-win32-macho triples. This (accidentally?) produced windows relocations
136 // without GOT tables in older clang versions; Keep this behaviour.
137 if (TT.isOSBinFormatCOFF() || (TT.isOSWindows() && TT.isOSBinFormatMachO()))
138 return true;
139
Rafael Espindolac7e51802018-02-19 16:02:38 +0000140 // If GV is null we know that this is a call to an intrinsic. For ELF and
141 // MachO we don't need to assume those are local since the liker can trivially
142 // convert a call to a PLT to a direct call if the target (in the runtime
143 // library) turns out to be local.
144 if (!GV)
145 return false;
146
Rafael Espindola2393c3b2017-10-27 21:18:48 +0000147 // Most PIC code sequences that assume that a symbol is local cannot
148 // produce a 0 if it turns out the symbol is undefined. While this
149 // is ABI and relocation depended, it seems worth it to handle it
150 // here.
Rafael Espindolac7e51802018-02-19 16:02:38 +0000151 if (isPositionIndependent() && GV->hasExternalWeakLinkage())
Rafael Espindola2393c3b2017-10-27 21:18:48 +0000152 return false;
153
Rafael Espindolac7e51802018-02-19 16:02:38 +0000154 if (!GV->hasDefaultVisibility())
Matthias Braunbb8507e2017-10-12 22:57:28 +0000155 return true;
156
157 if (TT.isOSBinFormatMachO()) {
158 if (RM == Reloc::Static)
159 return true;
Rafael Espindolac7e51802018-02-19 16:02:38 +0000160 return GV->isStrongDefinitionForLinker();
Matthias Braunbb8507e2017-10-12 22:57:28 +0000161 }
162
163 assert(TT.isOSBinFormatELF());
164 assert(RM != Reloc::DynamicNoPIC);
165
166 bool IsExecutable =
167 RM == Reloc::Static || M.getPIELevel() != PIELevel::Default;
168 if (IsExecutable) {
169 // If the symbol is defined, it cannot be preempted.
Rafael Espindolac7e51802018-02-19 16:02:38 +0000170 if (!GV->isDeclarationForLinker())
Matthias Braunbb8507e2017-10-12 22:57:28 +0000171 return true;
172
Sriraman Tallam056b3fd2017-11-08 00:01:05 +0000173 // A symbol marked nonlazybind should not be accessed with a plt. If the
174 // symbol turns out to be external, the linker will convert a direct
175 // access to an access via the plt, so don't assume it is local.
Rafael Espindolac7e51802018-02-19 16:02:38 +0000176 const Function *F = dyn_cast<Function>(GV);
Sriraman Tallam056b3fd2017-11-08 00:01:05 +0000177 if (F && F->hasFnAttribute(Attribute::NonLazyBind))
178 return false;
179
Rafael Espindolac7e51802018-02-19 16:02:38 +0000180 bool IsTLS = GV->isThreadLocal();
Rafael Espindola2393c3b2017-10-27 21:18:48 +0000181 bool IsAccessViaCopyRelocs =
Rafael Espindolac7e51802018-02-19 16:02:38 +0000182 Options.MCOptions.MCPIECopyRelocations && isa<GlobalVariable>(GV);
Matthias Braunbb8507e2017-10-12 22:57:28 +0000183 Triple::ArchType Arch = TT.getArch();
184 bool IsPPC =
185 Arch == Triple::ppc || Arch == Triple::ppc64 || Arch == Triple::ppc64le;
186 // Check if we can use copy relocations. PowerPC has no copy relocations.
187 if (!IsTLS && !IsPPC && (RM == Reloc::Static || IsAccessViaCopyRelocs))
188 return true;
189 }
190
191 // ELF supports preemption of other symbols.
192 return false;
193}
194
195TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
196 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default;
197 Reloc::Model RM = getRelocationModel();
198 bool IsSharedLibrary = RM == Reloc::PIC_ && !IsPIE;
199 bool IsLocal = shouldAssumeDSOLocal(*GV->getParent(), GV);
200
201 TLSModel::Model Model;
202 if (IsSharedLibrary) {
203 if (IsLocal)
204 Model = TLSModel::LocalDynamic;
205 else
206 Model = TLSModel::GeneralDynamic;
207 } else {
208 if (IsLocal)
209 Model = TLSModel::LocalExec;
210 else
211 Model = TLSModel::InitialExec;
212 }
213
214 // If the user specified a more specific model, use that.
215 TLSModel::Model SelectedModel = getSelectedTLSModel(GV);
216 if (SelectedModel > Model)
217 return SelectedModel;
218
219 return Model;
220}
221
222/// Returns the optimization level: None, Less, Default, or Aggressive.
223CodeGenOpt::Level TargetMachine::getOptLevel() const { return OptLevel; }
224
225void TargetMachine::setOptLevel(CodeGenOpt::Level Level) { OptLevel = Level; }
226
Sanjoy Das26d11ca2017-12-22 18:21:59 +0000227TargetTransformInfo TargetMachine::getTargetTransformInfo(const Function &F) {
228 return TargetTransformInfo(F.getParent()->getDataLayout());
Matthias Braunbb8507e2017-10-12 22:57:28 +0000229}
230
231void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name,
232 const GlobalValue *GV, Mangler &Mang,
233 bool MayAlwaysUsePrivate) const {
234 if (MayAlwaysUsePrivate || !GV->hasPrivateLinkage()) {
235 // Simple case: If GV is not private, it is not important to find out if
236 // private labels are legal in this case or not.
237 Mang.getNameWithPrefix(Name, GV, false);
238 return;
239 }
240 const TargetLoweringObjectFile *TLOF = getObjFileLowering();
241 TLOF->getNameWithPrefix(Name, GV, *this);
242}
243
244MCSymbol *TargetMachine::getSymbol(const GlobalValue *GV) const {
245 const TargetLoweringObjectFile *TLOF = getObjFileLowering();
246 SmallString<128> NameStr;
247 getNameWithPrefix(NameStr, GV, TLOF->getMangler());
248 return TLOF->getContext().getOrCreateSymbol(NameStr);
249}
Sanjoy Das26d11ca2017-12-22 18:21:59 +0000250
251TargetIRAnalysis TargetMachine::getTargetIRAnalysis() {
252 // Since Analysis can't depend on Target, use a std::function to invert the
253 // dependency.
254 return TargetIRAnalysis(
255 [this](const Function &F) { return this->getTargetTransformInfo(F); });
256}