LLVM 24.0.0git
TargetMachine.cpp
Go to the documentation of this file.
1//===-- TargetMachine.cpp - General Target Information ---------------------==//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file describes the general parts of a Target machine.
10//
11//===----------------------------------------------------------------------===//
12
15#include "llvm/IR/Function.h"
16#include "llvm/IR/GlobalValue.h"
18#include "llvm/IR/Mangler.h"
19#include "llvm/IR/Module.h"
20#include "llvm/MC/MCAsmInfo.h"
21#include "llvm/MC/MCContext.h"
22#include "llvm/MC/MCInstrInfo.h"
24#include "llvm/MC/MCStreamer.h"
29using namespace llvm;
30
32 "no-kernel-info-end-lto",
33 cl::desc("remove the kernel-info pass at the end of the full LTO pipeline"),
34 cl::init(false), cl::Hidden);
35
36//---------------------------------------------------------------------------
37// TargetMachine Class
38//
39
41 const Triple &TT, StringRef CPU, StringRef FS,
43 : TheTarget(T), DL(DataLayoutString), TargetTriple(TT),
44 TargetCPU(std::string(CPU)), TargetFS(std::string(FS)), AsmInfo(nullptr),
45 MRI(nullptr), MII(nullptr), STI(nullptr), RequireStructuredCFG(false),
47
49
52 raw_pwrite_stream *DwoOut,
53 CodeGenFileType FileType, MCContext &Ctx) {
54 return nullptr;
55}
56
58 if (getTargetTriple().getArch() != Triple::x86_64)
59 return false;
60
61 // Remaining logic below is ELF-specific. For other object file formats where
62 // the large code model is mostly used for JIT compilation, just look at the
63 // code model.
64 if (!getTargetTriple().isOSBinFormatELF())
66
67 auto *GO = GVal->getAliaseeObject();
68
69 // Be conservative if we can't find an underlying GlobalObject.
70 if (!GO)
71 return true;
72
73 auto *GV = dyn_cast<GlobalVariable>(GO);
74
75 auto IsPrefix = [](StringRef Name, StringRef Prefix) {
76 return Name.consume_front(Prefix) && (Name.empty() || Name[0] == '.');
77 };
78
79 // Functions/GlobalIFuncs are only large under the large code model.
80 if (!GV) {
81 // Handle explicit sections as we do for GlobalVariables with an explicit
82 // section, see comments below.
83 if (GO->hasSection()) {
84 StringRef Name = GO->getSection();
85 return IsPrefix(Name, ".ltext");
86 }
88 }
89
90 if (GV->isThreadLocal())
91 return false;
92
93 // For x86-64, we treat an explicit GlobalVariable small code model to mean
94 // that the global should be placed in a small section, and ditto for large.
95 if (auto CM = GV->getCodeModel()) {
96 if (*CM == CodeModel::Small)
97 return false;
98 if (*CM == CodeModel::Large)
99 return true;
100 }
101
102 // Treat all globals in user-defined sections as small, except for the
103 // standard large sections of .lbss, .ldata, .lrodata. This reduces the risk
104 // of linking together small and large sections, resulting in small
105 // references to large data sections. The code model attribute overrides this
106 // above.
107 if (GV->hasSection() || GV->hasImplicitSection()) {
110 if (!SectionName.empty()) {
111 return IsPrefix(SectionName, ".lbss") ||
112 IsPrefix(SectionName, ".ldata") ||
113 IsPrefix(SectionName, ".lrodata");
114 }
115 }
116
117 // Respect large data threshold for medium and large code models.
120 if (!GV->getValueType()->isSized())
121 return true;
122 // Linker defined start/stop symbols can point to arbitrary points in the
123 // binary, so treat them as large.
124 if (GV->isDeclaration() && (GV->getName() == "__ehdr_start" ||
125 GV->getName().starts_with("__start_") ||
126 GV->getName().starts_with("__stop_")))
127 return true;
128 // Linkers do not currently support PT_GNU_RELRO for SHF_X86_64_LARGE
129 // sections; that would require the linker to emit more than one
130 // PT_GNU_RELRO because large sections are discontiguous by design, and most
131 // ELF dynamic loaders do not support that (bionic appears to support it but
132 // glibc/musl/FreeBSD/NetBSD/OpenBSD appear not to). With current linkers
133 // these sections will end up in .ldata which results in silently disabling
134 // RELRO. If this ever gets supported by downstream components in the future
135 // we could add an opt-in flag for moving these sections to .ldata.rel.ro
136 // which would trigger the creation of a second PT_GNU_RELRO.
137 if (!GV->isDeclarationForLinker() &&
139 .isReadOnlyWithRel())
140 return false;
141 const DataLayout &DL = GV->getDataLayout();
142 uint64_t Size = GV->getGlobalSize(DL);
143 return Size == 0 || Size > LargeDataThreshold;
144 }
145
146 return false;
147}
148
152
153/// Returns the code generation relocation model. The choices are static, PIC,
154/// and dynamic-no-pic.
156
158 switch (getCodeModel()) {
159 case CodeModel::Tiny:
160 return llvm::maxUIntN(10);
161 case CodeModel::Small:
164 return llvm::maxUIntN(31);
165 case CodeModel::Large:
166 return llvm::maxUIntN(64);
167 }
168 llvm_unreachable("Unhandled CodeModel enum");
169}
170
171/// Get the IR-specified TLS model for Var.
173 switch (GV->getThreadLocalMode()) {
175 llvm_unreachable("getSelectedTLSModel for non-TLS variable");
176 break;
184 return TLSModel::LocalExec;
185 }
186 llvm_unreachable("invalid TLS model");
187}
188
190 const Triple &TT = getTargetTriple();
192
193 // According to the llvm language reference, we should be able to
194 // just return false in here if we have a GV, as we know it is
195 // dso_preemptable. At this point in time, the various IR producers
196 // have not been transitioned to always produce a dso_local when it
197 // is possible to do so.
198 //
199 // As a result we still have some logic in here to improve the quality of the
200 // generated code.
201 if (!GV)
202 return false;
203
204 // If the IR producer requested that this GV be treated as dso local, obey.
205 if (GV->isDSOLocal())
206 return true;
207
208 if (TT.isOSBinFormatCOFF()) {
209 // DLLImport explicitly marks the GV as external.
210 if (GV->hasDLLImportStorageClass())
211 return false;
212
213 // On MinGW, variables that haven't been declared with DLLImport may still
214 // end up automatically imported by the linker. To make this feasible,
215 // don't assume the variables to be DSO local unless we actually know
216 // that for sure. This only has to be done for variables; for functions
217 // the linker can insert thunks for calling functions from another DLL.
218 if (TT.isOSCygMing() && GV->isDeclarationForLinker() &&
220 return false;
221
222 // Don't mark 'extern_weak' symbols as DSO local. If these symbols remain
223 // unresolved in the link, they can be resolved to zero, which is outside
224 // the current DSO.
225 if (GV->hasExternalWeakLinkage())
226 return false;
227
228 // Every other GV is local on COFF.
229 return true;
230 }
231
232 if (TT.isOSBinFormatGOFF())
233 return true;
234
235 if (TT.isOSBinFormatMachO()) {
236 if (RM == Reloc::Static)
237 return true;
238 return GV->isStrongDefinitionForLinker();
239 }
240
241 assert(TT.isOSBinFormatELF() || TT.isOSBinFormatWasm() ||
242 TT.isOSBinFormatXCOFF());
243 return false;
244}
245
246bool TargetMachine::useEmulatedTLS() const { return Options.EmulatedTLS; }
247bool TargetMachine::useTLSDESC() const { return Options.EnableTLSDESC; }
248
250 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default;
252 bool IsSharedLibrary = RM == Reloc::PIC_ && !IsPIE;
253 bool IsLocal = shouldAssumeDSOLocal(GV);
254
255 TLSModel::Model Model;
256 if (IsSharedLibrary) {
257 if (IsLocal)
259 else
261 } else {
262 if (IsLocal)
263 Model = TLSModel::LocalExec;
264 else
265 Model = TLSModel::InitialExec;
266 }
267
268 // If the user specified a more specific model, use that.
269 TLSModel::Model SelectedModel = getSelectedTLSModel(GV);
270 if (SelectedModel > Model)
271 return SelectedModel;
272
273 return Model;
274}
275
278 return TargetTransformInfo(F.getDataLayout());
279}
280
282 const GlobalValue *GV, Mangler &Mang,
283 bool MayAlwaysUsePrivate) const {
284 if (MayAlwaysUsePrivate || !GV->hasPrivateLinkage()) {
285 // Simple case: If GV is not private, it is not important to find out if
286 // private labels are legal in this case or not.
287 Mang.getNameWithPrefix(Name, GV, false);
288 return;
289 }
291 TLOF->getNameWithPrefix(Name, GV, *this);
292}
293
296 // XCOFF symbols could have special naming convention.
297 if (MCSymbol *TargetSymbol = TLOF->getTargetSymbol(GV, *this))
298 return TargetSymbol;
299
300 SmallString<128> NameStr;
301 getNameWithPrefix(NameStr, GV, TLOF->getMangler());
302 return TLOF->getContext().getOrCreateSymbol(NameStr);
303}
304
306 // Since Analysis can't depend on Target, use a std::function to invert the
307 // dependency.
308 return TargetIRAnalysis(
309 [this](const Function &F) { return this->getTargetTransformInfo(F); });
310}
311
313 if (Version == "none")
314 return {INT_MAX, INT_MAX}; // Make binutilsIsAtLeast() return true.
315 std::pair<int, int> Ret;
316 if (!Version.consumeInteger(10, Ret.first) && Version.consume_front("."))
317 Version.consumeInteger(10, Ret.second);
318 return Ret;
319}
320
322 StringRef FS) {
323 if (CPU.empty() && FS.empty())
324 return *STI;
325 SmallString<128> Key = CPU;
326 Key += '/';
327 Key += FS;
328 auto &Entry = MCSubtargetMap[Key];
329 if (!Entry)
330 Entry.reset(getTarget().createMCSubtargetInfo(getTargetTriple(), CPU, FS));
331 return *Entry;
332}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition MD5.cpp:54
#define T
static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV)
Get the IR-specified TLS model for Var.
This pass exposes codegen information to IR-level passes.
static MCSubtargetInfo * createMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS)
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Tagged union holding either a T or a Error.
Definition Error.h:485
bool isDSOLocal() const
bool hasPrivateLinkage() const
bool hasExternalWeakLinkage() const
ThreadLocalMode getThreadLocalMode() const
bool hasDLLImportStorageClass() const
bool isDeclarationForLinker() const
Module * getParent()
Get the module that this global value is contained inside of...
LLVM_ABI const GlobalObject * getAliaseeObject() const
Definition Globals.cpp:521
bool isStrongDefinitionForLinker() const
Returns true if this global's definition will be the one chosen by the linker.
Context object for machine code objects.
Definition MCContext.h:83
LLVM_ABI MCSymbol * getOrCreateSymbol(const Twine &Name)
Lookup the symbol inside with the specified Name.
MCContext & getContext() const
Generic base class for all target subtargets.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
LLVM_ABI void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable's name.
Definition Mangler.cpp:121
PIELevel::Level getPIELevel() const
Returns the PIE level (small or large model)
Definition Module.cpp:653
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Analysis pass providing the TargetTransformInfo.
virtual void getNameWithPrefix(SmallVectorImpl< char > &OutName, const GlobalValue *GV, const TargetMachine &TM) const
static SectionKind getKindForGlobal(const GlobalObject *GO, const TargetMachine &TM)
Classify the specified global variable into a set of target independent categories embodied in Sectio...
static StringRef getCustomSectionName(const GlobalObject *GO, const TargetMachine &TM)
Return the section name specified by 'pragma clang section' or the section attribute.
virtual MCSymbol * getTargetSymbol(const GlobalValue *GV, const TargetMachine &TM) const
Targets that have a special convention for their symbols could use this hook to return a specialized ...
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
std::unique_ptr< const MCAsmInfo > AsmInfo
Contains target specific asm information.
TLSModel::Model getTLSModel(const GlobalValue *GV) const
Returns the TLS model which should be used for the given global variable.
bool isPositionIndependent() const
uint64_t getMaxCodeSize() const
Returns the maximum code size possible under the code model.
const Triple & getTargetTriple() const
bool useTLSDESC() const
Returns true if this target uses TLS Descriptors.
StringMap< std::unique_ptr< const MCSubtargetInfo > > MCSubtargetMap
MC subtarget keyed by target features and target CPU.
const MCSubtargetInfo & getMCSubtargetInfo() const
bool useEmulatedTLS() const
Returns true if this target uses emulated TLS.
std::unique_ptr< const MCInstrInfo > MII
virtual TargetLoweringObjectFile * getObjFileLowering() const
Reloc::Model getRelocationModel() const
Returns the code generation relocation model.
virtual TargetTransformInfo getTargetTransformInfo(const Function &F) const
Return a TargetTransformInfo for a given function.
const DataLayout DL
DataLayout for the target: keep ABI type size and alignment.
bool shouldAssumeDSOLocal(const GlobalValue *GV) const
virtual Expected< std::unique_ptr< MCStreamer > > createMCStreamer(raw_pwrite_stream &Out, raw_pwrite_stream *DwoOut, CodeGenFileType FileType, MCContext &Ctx)
static std::pair< int, int > parseBinutilsVersion(StringRef Version)
std::unique_ptr< const MCSubtargetInfo > STI
TargetIRAnalysis getTargetIRAnalysis() const
Get a TargetIRAnalysis appropriate for the target.
TargetOptions Options
unsigned RequireStructuredCFG
virtual ~TargetMachine()
MCSymbol * getSymbol(const GlobalValue *GV) const
const Target & getTarget() const
const Target & TheTarget
The Target that this machine was created for.
CodeModel::Model getCodeModel() const
Returns the code model.
bool isLargeGlobalValue(const GlobalValue *GV) const
TargetMachine(const Target &T, StringRef DataLayoutString, const Triple &TargetTriple, StringRef CPU, StringRef FS, const TargetOptions &Options)
void getNameWithPrefix(SmallVectorImpl< char > &Name, const GlobalValue *GV, Mangler &Mang, bool MayAlwaysUsePrivate=false) const
std::unique_ptr< const MCRegisterInfo > MRI
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
An abstract base class for streams implementations that also support a pwrite operation.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
constexpr uint64_t maxUIntN(uint64_t N)
Gets the maximum value for a N-bit unsigned integer.
Definition MathExtras.h:208
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
CodeGenFileType
These enums are meant to be passed into addPassesToEmitFile to indicate what type of file to emit,...
Definition CodeGen.h:111
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI llvm::cl::opt< bool > NoKernelInfoEndLTO
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878