LLVM 22.0.0git
MCObjectFileInfo.h
Go to the documentation of this file.
1//===-- llvm/MC/MCObjectFileInfo.h - Object File Info -----------*- C++ -*-===//
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 common object file formats.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_MC_MCOBJECTFILEINFO_H
14#define LLVM_MC_MCOBJECTFILEINFO_H
15
18#include "llvm/MC/MCSection.h"
22
23#include <array>
24#include <optional>
25
26namespace llvm {
27class MCContext;
28class MCSection;
29
31protected:
32 /// True if the target object file supports emitting a compact unwind section
33 /// without an associated EH frame section.
35
36 /// OmitDwarfIfHaveCompactUnwind - True if the target object file
37 /// supports having some functions with compact unwind and other with
38 /// dwarf unwind.
40
41 /// FDE CFI encoding. Controls the encoding of the begin label in the
42 /// .eh_frame section. Unlike the LSDA encoding, personality encoding, and
43 /// type encodings, this is something that the assembler just "knows" about
44 /// its target
45 unsigned FDECFIEncoding = 0;
46
47 /// Compact unwind encoding indicating that we should emit only an EH frame.
49
50 /// SFrame ABI architecture byte.
51 std::optional<sframe::ABI> SFrameABIArch = {};
52
53 /// Section directive for standard text.
55
56 /// Section directive for standard data.
58
59 /// Section that is default initialized to zero.
61
62 /// Section that is readonly and can contain arbitrary initialized data.
63 /// Targets are not required to have a readonly section. If they don't,
64 /// various bits of code will fall back to using the data section for
65 /// constants.
67
68 /// If exception handling is supported by the target, this is the section the
69 /// Language Specific Data Area information is emitted to.
71
72 /// Section containing call graph metadata.
74
75 /// If exception handling is supported by the target and the target can
76 /// support a compact representation of the CIE and FDE, this is the section
77 /// to emit them into.
79
80 /// If import call optimization is supported by the target, this is the
81 /// section to emit import call data to.
83
84 // Dwarf sections for debug info. If a target supports debug info, these must
85 // be set.
99 // The pubnames section is no longer generated by default. The generation
100 // can be enabled by a compiler flag.
102
103 /// Accelerator table sections. DwarfDebugNamesSection is the DWARF v5
104 /// accelerator table, while DwarfAccelNamesSection, DwarfAccelObjCSection,
105 /// DwarfAccelNamespaceSection, DwarfAccelTypesSection are pre-DWARF v5
106 /// extensions.
112
113 // These are used for the Fission separate debug information files.
123
124 /// The DWARF v5 string offset and address table sections.
127 /// The DWARF v5 range list section.
129 /// The DWARF v5 locations list section.
131
132 /// The DWARF v5 range and location list sections for fission.
135
136 // These are for Fission DWP files.
139
140 /// Section for newer gnu pubnames.
142 /// Section for newer gnu pubtypes.
144
145 // Section for Swift AST
147
151
152 /// Extra TLS Variable Data section.
153 ///
154 /// If the target needs to put additional information for a TLS variable,
155 /// it'll go here.
157
158 /// Section directive for Thread Local data. ELF, MachO, COFF, and Wasm.
159 MCSection *TLSDataSection = nullptr; // Defaults to ".tdata".
160
161 /// Section directive for Thread Local uninitialized data.
162 ///
163 /// Null if this target doesn't support a BSS section. ELF and MachO only.
164 MCSection *TLSBSSSection = nullptr; // Defaults to ".tbss".
165
166 /// StackMap section.
168
169 /// FaultMap section.
171
172 /// Remarks section.
174
175 /// EH frame section.
176 ///
177 /// It is initialized on demand so it can be overwritten (with uniquing).
179
180 /// SFrame section.
182
183 /// Section containing metadata on function stack sizes.
185
186 /// Section for pseudo probe information used by AutoFDO
189
190 // Section for metadata of llvm statistics.
192
193 // ELF specific sections.
199
200 // MachO specific sections.
201
202 /// Section for thread local structure information.
203 ///
204 /// Contains the source code name of the variable, visibility and a pointer to
205 /// the initial value (.tdata or .tbss).
206 MCSection *TLSTLVSection = nullptr; // Defaults to ".tlv".
207
208 /// Section for thread local data initialization functions.
209 // Defaults to ".thread_init_func".
211
228
229 /// COFF specific sections.
238
239 // GOFF specific sections.
243
244 // XCOFF specific sections
248
249 // Swift5 Reflection Data Sections
250 std::array<MCSection *, binaryformat::Swift5ReflectionSectionKind::last>
252
253public:
254 void initMCObjectFileInfo(MCContext &MCCtx, bool PIC,
255 bool LargeCodeModel = false);
257 MCContext &getContext() const { return *Ctx; }
258
265
266 unsigned getFDEEncoding() const { return FDECFIEncoding; }
267
271
272 std::optional<sframe::ABI> getSFrameABIArch() const { return SFrameABIArch; }
273 virtual unsigned getTextSectionAlignment() const { return 4; }
276 MCSection *getBSSSection() const { return BSSSection; }
284 return getDwarfComdatSection(".debug_info", Hash);
285 }
308
324 return getDwarfComdatSection(".debug_types", Hash);
325 }
347
357
359 const MCSection *getTLSDataSection() const { return TLSDataSection; }
361
365
366 MCSection *getCallGraphSection(const MCSection &TextSec) const;
367
368 MCSection *getStackSizesSection(const MCSection &TextSec) const;
369
370 MCSection *getBBAddrMapSection(const MCSection &TextSec) const;
371
372 MCSection *getKCFITrapSection(const MCSection &TextSec) const;
373
374 MCSection *getPseudoProbeSection(const MCSection &TextSec) const;
375
376 MCSection *getPseudoProbeDescSection(StringRef FuncName) const;
377
378 MCSection *getLLVMStatsSection() const;
379
380 MCSection *getPCSection(StringRef Name, const MCSection *TextSec) const;
381
382 // ELF specific sections.
396
397 // MachO specific sections.
398 const MCSection *getTLSTLVSection() const { return TLSTLVSection; }
401 }
402 const MCSection *getCStringSection() const { return CStringSection; }
403 const MCSection *getUStringSection() const { return UStringSection; }
407 }
412 }
434
435 // COFF specific sections.
444
445 // GOFF specific sections.
447 MCSection *getADASection() const { return ADASection; }
449
450 // XCOFF specific sections
452
455
456 bool isPositionIndependent() const { return PositionIndependent; }
457
458 // Swift5 Reflection Data Sections
466
467private:
468 bool PositionIndependent = false;
469 MCContext *Ctx = nullptr;
470
471 void initMachOMCObjectFileInfo(const Triple &T);
472 void initELFMCObjectFileInfo(const Triple &T, bool Large);
473 void initGOFFMCObjectFileInfo(const Triple &T);
474 void initCOFFMCObjectFileInfo(const Triple &T);
475 void initSPIRVMCObjectFileInfo(const Triple &T);
476 void initWasmMCObjectFileInfo(const Triple &T);
477 void initXCOFFMCObjectFileInfo(const Triple &T);
478 void initDXContainerObjectFileInfo(const Triple &T);
479 MCSection *getDwarfComdatSection(const char *Name, uint64_t Hash) const;
480};
481
482} // end namespace llvm
483
484#endif
#define LLVM_ABI
Definition Compiler.h:213
#define T
PassInstrumentationCallbacks PIC
This file contains data-structure definitions and constants to support unwinding based on ....
Defines the llvm::VersionTuple class, which represents a version in the form major[....
Context object for machine code objects.
Definition MCContext.h:83
MCSection * getTLSBSSSection() const
MCSection * getDataRelROSection() const
MCSection * NonLazySymbolPointerSection
MCSection * TLSBSSSection
Section directive for Thread Local uninitialized data.
MCSection * CallGraphSection
Section containing call graph metadata.
MCSection * DwarfDebugNamesSection
Accelerator table sections.
const MCSection * TLSThreadInitSection
Section for thread local data initialization functions.
MCSection * DwarfStrOffSection
The DWARF v5 string offset and address table sections.
MCSection * getDwarfLoclistsSection() const
MCSection * getDwarfAccelTypesSection() const
MCSection * MergeableConst16Section
const MCSection * getMergeableConst4Section() const
MCSection * COFFGlobalTypeHashesSection
const MCSection * getMergeableConst16Section() const
MCSection * SFrameSection
SFrame section.
const MCSection * getMergeableConst32Section() const
MCSection * DwarfGnuPubTypesSection
Section for newer gnu pubtypes.
MCSection * TextSection
Section directive for standard text.
MCSection * getDwarfGnuPubNamesSection() const
MCSection * getDwarfStrOffDWOSection() const
MCSection * getAddrSigSection() const
MCSection * TLSDataSection
Section directive for Thread Local data. ELF, MachO, COFF, and Wasm.
const MCSection * getTLSTLVSection() const
MCSection * getEHFrameSection() const
MCSection * getDwarfRangesSection() const
MCSection * getADASection() const
MCSection * getPDataSection() const
MCSection * ThreadLocalPointerSection
MCSection * getDwarfInfoSection(uint64_t Hash) const
MCSection * getDwarfAccelNamespaceSection() const
MCSection * LSDASection
If exception handling is supported by the target, this is the section the Language Specific Data Area...
MCSection * getFaultMapSection() const
MCSection * CompactUnwindSection
If exception handling is supported by the target and the target can support a compact representation ...
MCSection * getDwarfLineDWOSection() const
MCSection * COFFDebugSymbolsSection
MCSection * getDwarfStrOffSection() const
MCSection * getDwarfInfoDWOSection() const
const MCSection * getConstTextCoalSection() const
MCSection * getGEHContSection() const
std::array< MCSection *, binaryformat::Swift5ReflectionSectionKind::last > Swift5ReflectionSections
MCSection * getDwarfTypesDWOSection() const
MCSection * DwarfLoclistsSection
The DWARF v5 locations list section.
MCSection * getDwarfPubNamesSection() const
bool getSupportsCompactUnwindWithoutEHFrame() const
MCSection * getDwarfMacroSection() const
MCSection * getSXDataSection() const
MCSection * getTextCoalSection() const
MCSection * PseudoProbeSection
Section for pseudo probe information used by AutoFDO.
MCSection * getDwarfStrSection() const
MCSection * getDwarfLineStrSection() const
unsigned getCompactUnwindDwarfEHFrameOnly() const
MCSection * FourByteConstantSection
MCSection * getGFIDsSection() const
MCSection * getDwarfLoclistsDWOSection() const
const MCSection * getConstDataSection() const
const MCSection * getDataCoalSection() const
MCSection * DwarfRnglistsSection
The DWARF v5 range list section.
const MCSection * DwarfDebugInlineSection
MCSection * getBSSSection() const
MCSection * getDwarfTUIndexSection() const
MCSection * getDwarfDebugNamesSection() const
MCSection * getRemarksSection() const
const MCSection * getConstDataCoalSection() const
MCSection * getDwarfMacinfoDWOSection() const
MCSection * LazySymbolPointerSection
MCSection * getDrectveSection() const
MCSection * getSwift5ReflectionSection(llvm::binaryformat::Swift5ReflectionSectionKind ReflSectionKind)
MCSection * RemarksSection
Remarks section.
MCSection * getLazySymbolPointerSection() const
MCSection * getDwarfRnglistsSection() const
MCSection * getDwarfAddrSection() const
MCSection * TLSExtraDataSection
Extra TLS Variable Data section.
MCSection * getDwarfLineSection() const
MCSection * getDwarfInfoSection() const
MCSection * getDwarfFrameSection() const
MCSection * getTLSExtraDataSection() const
const MCSection * getEightByteConstantSection() const
MCSection * EHFrameSection
EH frame section.
bool OmitDwarfIfHaveCompactUnwind
OmitDwarfIfHaveCompactUnwind - True if the target object file supports having some functions with com...
const MCSection * getTLSThreadInitSection() const
MCSection * DrectveSection
COFF specific sections.
MCSection * getPPA2ListSection() const
MCSection * FaultMapSection
FaultMap section.
MCSection * TLSTLVSection
Section for thread local structure information.
MCSection * getLSDASection() const
MCSection * getDwarfPubTypesSection() const
bool isPositionIndependent() const
unsigned getFDEEncoding() const
const MCSection * getDwarfDebugInlineSection() const
MCSection * getDwarfTypesSection(uint64_t Hash) const
MCSection * getDwarfGnuPubTypesSection() const
const MCSection * getMergeableConst8Section() const
MCSection * DwarfRnglistsDWOSection
The DWARF v5 range and location list sections for fission.
MCSection * getDwarfStrDWOSection() const
MCSection * ImportCallSection
If import call optimization is supported by the target, this is the section to emit import call data ...
MCSection * MergeableConst32Section
MCSection * SixteenByteConstantSection
MCSection * getStackMapSection() const
MCSection * getDwarfAccelNamesSection() const
MCSection * getReadOnlySection() const
MCSection * getThreadLocalPointerSection() const
MCSection * getDwarfAbbrevDWOSection() const
MCSection * getDwarfRnglistsDWOSection() const
const MCSection * getFourByteConstantSection() const
std::optional< sframe::ABI > SFrameABIArch
SFrame ABI architecture byte.
bool SupportsCompactUnwindWithoutEHFrame
True if the target object file supports emitting a compact unwind section without an associated EH fr...
MCSection * ReadOnlySection
Section that is readonly and can contain arbitrary initialized data.
MCSection * getDwarfAbbrevSection() const
MCSection * getDwarfSwiftASTSection() const
MCSection * getIDRLSection() const
MCSection * getCOFFDebugSymbolsSection() const
MCSection * getXDataSection() const
bool getOmitDwarfIfHaveCompactUnwind() const
MCSection * getGLJMPSection() const
MCSection * getTOCBaseSection() const
const MCSection * getCStringSection() const
const MCSection * getTLSDataSection() const
unsigned FDECFIEncoding
FDE CFI encoding.
MCSection * getCOFFDebugTypesSection() const
std::optional< sframe::ABI > getSFrameABIArch() const
MCSection * getGIATsSection() const
MCSection * getSFrameSection() const
MCSection * getDwarfCUIndexSection() const
MCSection * getImportCallSection() const
MCSection * getDwarfMacinfoSection() const
MCSection * getDwarfLocDWOSection() const
MCSection * DwarfLoclistsDWOSection
MCSection * getDwarfARangesSection() const
MCSection * getDwarfAccelObjCSection() const
MCSection * BSSSection
Section that is default initialized to zero.
MCSection * getNonLazySymbolPointerSection() const
const MCSection * getSixteenByteConstantSection() const
MCSection * getDwarfLocSection() const
virtual unsigned getTextSectionAlignment() const
MCSection * getDataBSSSection() const
MCSection * EightByteConstantSection
MCSection * StackSizesSection
Section containing metadata on function stack sizes.
unsigned CompactUnwindDwarfEHFrameOnly
Compact unwind encoding indicating that we should emit only an EH frame.
const MCSection * getDataCommonSection() const
MCSection * getTextSection() const
MCSection * getCOFFGlobalTypeHashesSection() const
MCSection * DwarfGnuPubNamesSection
Section for newer gnu pubnames.
MCSection * StackMapSection
StackMap section.
const MCSection * getUStringSection() const
MCSection * getDwarfMacroDWOSection() const
MCContext & getContext() const
MCSection * DwarfAccelNamespaceSection
MCSection * getDataSection() const
MCSection * getCompactUnwindSection() const
MCSection * DataSection
Section directive for standard data.
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition MCSection.h:517
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
Swift5ReflectionSectionKind
Definition Swift.h:14
This is an optimization pass for GlobalISel generic memory operations.