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 target object file supports a weak_definition of constant 0 for an
33 /// omitted EH frame.
34 bool SupportsWeakOmittedEHFrame = false;
35
36 /// True if the target object file supports emitting a compact unwind section
37 /// without an associated EH frame section.
38 bool SupportsCompactUnwindWithoutEHFrame = false;
39
40 /// OmitDwarfIfHaveCompactUnwind - True if the target object file
41 /// supports having some functions with compact unwind and other with
42 /// dwarf unwind.
43 bool OmitDwarfIfHaveCompactUnwind = false;
44
45 /// FDE CFI encoding. Controls the encoding of the begin label in the
46 /// .eh_frame section. Unlike the LSDA encoding, personality encoding, and
47 /// type encodings, this is something that the assembler just "knows" about
48 /// its target
49 unsigned FDECFIEncoding = 0;
50
51 /// Compact unwind encoding indicating that we should emit only an EH frame.
52 unsigned CompactUnwindDwarfEHFrameOnly = 0;
53
54 /// SFrame ABI architecture byte.
55 std::optional<sframe::ABI> SFrameABIArch = {};
56
57 /// Section directive for standard text.
58 MCSection *TextSection = nullptr;
59
60 /// Section directive for standard data.
61 MCSection *DataSection = nullptr;
62
63 /// Section that is default initialized to zero.
64 MCSection *BSSSection = nullptr;
65
66 /// Section that is readonly and can contain arbitrary initialized data.
67 /// Targets are not required to have a readonly section. If they don't,
68 /// various bits of code will fall back to using the data section for
69 /// constants.
70 MCSection *ReadOnlySection = nullptr;
71
72 /// If exception handling is supported by the target, this is the section the
73 /// Language Specific Data Area information is emitted to.
74 MCSection *LSDASection = nullptr;
75
76 /// Section containing call graph metadata.
77 MCSection *CallGraphSection = nullptr;
78
79 /// If exception handling is supported by the target and the target can
80 /// support a compact representation of the CIE and FDE, this is the section
81 /// to emit them into.
82 MCSection *CompactUnwindSection = nullptr;
83
84 /// If import call optimization is supported by the target, this is the
85 /// section to emit import call data to.
86 MCSection *ImportCallSection = nullptr;
87
88 // Dwarf sections for debug info. If a target supports debug info, these must
89 // be set.
90 MCSection *DwarfAbbrevSection = nullptr;
91 MCSection *DwarfInfoSection = nullptr;
92 MCSection *DwarfLineSection = nullptr;
93 MCSection *DwarfLineStrSection = nullptr;
94 MCSection *DwarfFrameSection = nullptr;
95 MCSection *DwarfPubTypesSection = nullptr;
96 const MCSection *DwarfDebugInlineSection = nullptr;
97 MCSection *DwarfStrSection = nullptr;
98 MCSection *DwarfLocSection = nullptr;
99 MCSection *DwarfARangesSection = nullptr;
100 MCSection *DwarfRangesSection = nullptr;
101 MCSection *DwarfMacinfoSection = nullptr;
102 MCSection *DwarfMacroSection = nullptr;
103 // The pubnames section is no longer generated by default. The generation
104 // can be enabled by a compiler flag.
105 MCSection *DwarfPubNamesSection = nullptr;
106
107 /// Accelerator table sections. DwarfDebugNamesSection is the DWARF v5
108 /// accelerator table, while DwarfAccelNamesSection, DwarfAccelObjCSection,
109 /// DwarfAccelNamespaceSection, DwarfAccelTypesSection are pre-DWARF v5
110 /// extensions.
111 MCSection *DwarfDebugNamesSection = nullptr;
112 MCSection *DwarfAccelNamesSection = nullptr;
113 MCSection *DwarfAccelObjCSection = nullptr;
114 MCSection *DwarfAccelNamespaceSection = nullptr;
115 MCSection *DwarfAccelTypesSection = nullptr;
116
117 // These are used for the Fission separate debug information files.
118 MCSection *DwarfInfoDWOSection = nullptr;
119 MCSection *DwarfTypesDWOSection = nullptr;
120 MCSection *DwarfAbbrevDWOSection = nullptr;
121 MCSection *DwarfStrDWOSection = nullptr;
122 MCSection *DwarfLineDWOSection = nullptr;
123 MCSection *DwarfLocDWOSection = nullptr;
124 MCSection *DwarfStrOffDWOSection = nullptr;
125 MCSection *DwarfMacinfoDWOSection = nullptr;
126 MCSection *DwarfMacroDWOSection = nullptr;
127
128 /// The DWARF v5 string offset and address table sections.
129 MCSection *DwarfStrOffSection = nullptr;
130 MCSection *DwarfAddrSection = nullptr;
131 /// The DWARF v5 range list section.
132 MCSection *DwarfRnglistsSection = nullptr;
133 /// The DWARF v5 locations list section.
134 MCSection *DwarfLoclistsSection = nullptr;
135
136 /// The DWARF v5 range and location list sections for fission.
137 MCSection *DwarfRnglistsDWOSection = nullptr;
138 MCSection *DwarfLoclistsDWOSection = nullptr;
139
140 // These are for Fission DWP files.
141 MCSection *DwarfCUIndexSection = nullptr;
142 MCSection *DwarfTUIndexSection = nullptr;
143
144 /// Section for newer gnu pubnames.
145 MCSection *DwarfGnuPubNamesSection = nullptr;
146 /// Section for newer gnu pubtypes.
147 MCSection *DwarfGnuPubTypesSection = nullptr;
148
149 // Section for Swift AST
150 MCSection *DwarfSwiftASTSection = nullptr;
151
152 MCSection *COFFDebugSymbolsSection = nullptr;
153 MCSection *COFFDebugTypesSection = nullptr;
154 MCSection *COFFGlobalTypeHashesSection = nullptr;
155
156 /// Extra TLS Variable Data section.
157 ///
158 /// If the target needs to put additional information for a TLS variable,
159 /// it'll go here.
160 MCSection *TLSExtraDataSection = nullptr;
161
162 /// Section directive for Thread Local data. ELF, MachO, COFF, and Wasm.
163 MCSection *TLSDataSection = nullptr; // Defaults to ".tdata".
164
165 /// Section directive for Thread Local uninitialized data.
166 ///
167 /// Null if this target doesn't support a BSS section. ELF and MachO only.
168 MCSection *TLSBSSSection = nullptr; // Defaults to ".tbss".
169
170 /// StackMap section.
171 MCSection *StackMapSection = nullptr;
172
173 /// FaultMap section.
174 MCSection *FaultMapSection = nullptr;
175
176 /// Remarks section.
177 MCSection *RemarksSection = nullptr;
178
179 /// EH frame section.
180 ///
181 /// It is initialized on demand so it can be overwritten (with uniquing).
182 MCSection *EHFrameSection = nullptr;
183
184 /// SFrame section.
185 MCSection *SFrameSection = nullptr;
186
187 /// Section containing metadata on function stack sizes.
188 MCSection *StackSizesSection = nullptr;
189
190 /// Section for pseudo probe information used by AutoFDO
191 MCSection *PseudoProbeSection = nullptr;
192 MCSection *PseudoProbeDescSection = nullptr;
193
194 // Section for metadata of llvm statistics.
195 MCSection *LLVMStatsSection = nullptr;
196
197 // ELF specific sections.
198 MCSection *DataRelROSection = nullptr;
199 MCSection *MergeableConst4Section = nullptr;
200 MCSection *MergeableConst8Section = nullptr;
201 MCSection *MergeableConst16Section = nullptr;
202 MCSection *MergeableConst32Section = nullptr;
203
204 // MachO specific sections.
205
206 /// Section for thread local structure information.
207 ///
208 /// Contains the source code name of the variable, visibility and a pointer to
209 /// the initial value (.tdata or .tbss).
210 MCSection *TLSTLVSection = nullptr; // Defaults to ".tlv".
211
212 /// Section for thread local data initialization functions.
213 // Defaults to ".thread_init_func".
214 const MCSection *TLSThreadInitSection = nullptr;
215
216 MCSection *CStringSection = nullptr;
217 MCSection *UStringSection = nullptr;
218 MCSection *TextCoalSection = nullptr;
219 MCSection *ConstTextCoalSection = nullptr;
220 MCSection *ConstDataSection = nullptr;
221 MCSection *DataCoalSection = nullptr;
222 MCSection *ConstDataCoalSection = nullptr;
223 MCSection *DataCommonSection = nullptr;
224 MCSection *DataBSSSection = nullptr;
225 MCSection *FourByteConstantSection = nullptr;
226 MCSection *EightByteConstantSection = nullptr;
227 MCSection *SixteenByteConstantSection = nullptr;
228 MCSection *LazySymbolPointerSection = nullptr;
229 MCSection *NonLazySymbolPointerSection = nullptr;
230 MCSection *ThreadLocalPointerSection = nullptr;
231 MCSection *AddrSigSection = nullptr;
232
233 /// COFF specific sections.
234 MCSection *DrectveSection = nullptr;
235 MCSection *PDataSection = nullptr;
236 MCSection *XDataSection = nullptr;
237 MCSection *SXDataSection = nullptr;
238 MCSection *GEHContSection = nullptr;
239 MCSection *GFIDsSection = nullptr;
240 MCSection *GIATsSection = nullptr;
241 MCSection *GLJMPSection = nullptr;
242
243 // GOFF specific sections.
244 MCSection *PPA2ListSection = nullptr;
245 MCSection *ADASection = nullptr;
246 MCSection *IDRLSection = nullptr;
247
248 // XCOFF specific sections
249 MCSection *TOCBaseSection = nullptr;
250 MCSection *ReadOnly8Section = nullptr;
251 MCSection *ReadOnly16Section = nullptr;
252
253 // Swift5 Reflection Data Sections
254 std::array<MCSection *, binaryformat::Swift5ReflectionSectionKind::last>
255 Swift5ReflectionSections = {};
256
257public:
258 void initMCObjectFileInfo(MCContext &MCCtx, bool PIC,
259 bool LargeCodeModel = false);
261 MCContext &getContext() const { return *Ctx; }
262
264 return SupportsWeakOmittedEHFrame;
265 }
267 return SupportsCompactUnwindWithoutEHFrame;
268 }
270 return OmitDwarfIfHaveCompactUnwind;
271 }
272
273 unsigned getFDEEncoding() const { return FDECFIEncoding; }
274
276 return CompactUnwindDwarfEHFrameOnly;
277 }
278
279 std::optional<sframe::ABI> getSFrameABIArch() const { return SFrameABIArch; }
280 virtual unsigned getTextSectionAlignment() const { return 4; }
281 MCSection *getTextSection() const { return TextSection; }
282 MCSection *getDataSection() const { return DataSection; }
283 MCSection *getBSSSection() const { return BSSSection; }
284 MCSection *getReadOnlySection() const { return ReadOnlySection; }
285 MCSection *getLSDASection() const { return LSDASection; }
286 MCSection *getImportCallSection() const { return ImportCallSection; }
287 MCSection *getCompactUnwindSection() const { return CompactUnwindSection; }
288 MCSection *getDwarfAbbrevSection() const { return DwarfAbbrevSection; }
289 MCSection *getDwarfInfoSection() const { return DwarfInfoSection; }
291 return getDwarfComdatSection(".debug_info", Hash);
292 }
293 MCSection *getDwarfLineSection() const { return DwarfLineSection; }
294 MCSection *getDwarfLineStrSection() const { return DwarfLineStrSection; }
295 MCSection *getDwarfFrameSection() const { return DwarfFrameSection; }
296 MCSection *getDwarfPubNamesSection() const { return DwarfPubNamesSection; }
297 MCSection *getDwarfPubTypesSection() const { return DwarfPubTypesSection; }
299 return DwarfGnuPubNamesSection;
300 }
302 return DwarfGnuPubTypesSection;
303 }
305 return DwarfDebugInlineSection;
306 }
307 MCSection *getDwarfStrSection() const { return DwarfStrSection; }
308 MCSection *getDwarfLocSection() const { return DwarfLocSection; }
309 MCSection *getDwarfARangesSection() const { return DwarfARangesSection; }
310 MCSection *getDwarfRangesSection() const { return DwarfRangesSection; }
311 MCSection *getDwarfRnglistsSection() const { return DwarfRnglistsSection; }
312 MCSection *getDwarfLoclistsSection() const { return DwarfLoclistsSection; }
313 MCSection *getDwarfMacinfoSection() const { return DwarfMacinfoSection; }
314 MCSection *getDwarfMacroSection() const { return DwarfMacroSection; }
315
317 return DwarfDebugNamesSection;
318 }
320 return DwarfAccelNamesSection;
321 }
322 MCSection *getDwarfAccelObjCSection() const { return DwarfAccelObjCSection; }
324 return DwarfAccelNamespaceSection;
325 }
327 return DwarfAccelTypesSection;
328 }
329 MCSection *getDwarfInfoDWOSection() const { return DwarfInfoDWOSection; }
331 return getDwarfComdatSection(".debug_types", Hash);
332 }
333 MCSection *getDwarfTypesDWOSection() const { return DwarfTypesDWOSection; }
334 MCSection *getDwarfAbbrevDWOSection() const { return DwarfAbbrevDWOSection; }
335 MCSection *getDwarfStrDWOSection() const { return DwarfStrDWOSection; }
336 MCSection *getDwarfLineDWOSection() const { return DwarfLineDWOSection; }
337 MCSection *getDwarfLocDWOSection() const { return DwarfLocDWOSection; }
338 MCSection *getDwarfStrOffDWOSection() const { return DwarfStrOffDWOSection; }
339 MCSection *getDwarfStrOffSection() const { return DwarfStrOffSection; }
340 MCSection *getDwarfAddrSection() const { return DwarfAddrSection; }
342 return DwarfRnglistsDWOSection;
343 }
345 return DwarfLoclistsDWOSection;
346 }
347 MCSection *getDwarfMacroDWOSection() const { return DwarfMacroDWOSection; }
349 return DwarfMacinfoDWOSection;
350 }
351 MCSection *getDwarfCUIndexSection() const { return DwarfCUIndexSection; }
352 MCSection *getDwarfTUIndexSection() const { return DwarfTUIndexSection; }
353 MCSection *getDwarfSwiftASTSection() const { return DwarfSwiftASTSection; }
354
356 return COFFDebugSymbolsSection;
357 }
359 return COFFDebugTypesSection;
360 }
362 return COFFGlobalTypeHashesSection;
363 }
364
365 MCSection *getTLSExtraDataSection() const { return TLSExtraDataSection; }
366 const MCSection *getTLSDataSection() const { return TLSDataSection; }
367 MCSection *getTLSBSSSection() const { return TLSBSSSection; }
368
369 MCSection *getStackMapSection() const { return StackMapSection; }
370 MCSection *getFaultMapSection() const { return FaultMapSection; }
371 MCSection *getRemarksSection() const { return RemarksSection; }
372
373 MCSection *getCallGraphSection(const MCSection &TextSec) const;
374
375 MCSection *getStackSizesSection(const MCSection &TextSec) const;
376
377 MCSection *getBBAddrMapSection(const MCSection &TextSec) const;
378
379 MCSection *getKCFITrapSection(const MCSection &TextSec) const;
380
381 MCSection *getPseudoProbeSection(const MCSection &TextSec) const;
382
383 MCSection *getPseudoProbeDescSection(StringRef FuncName) const;
384
385 MCSection *getLLVMStatsSection() const;
386
387 MCSection *getPCSection(StringRef Name, const MCSection *TextSec) const;
388
389 // ELF specific sections.
390 MCSection *getDataRelROSection() const { return DataRelROSection; }
392 return MergeableConst4Section;
393 }
395 return MergeableConst8Section;
396 }
398 return MergeableConst16Section;
399 }
401 return MergeableConst32Section;
402 }
403
404 // MachO specific sections.
405 const MCSection *getTLSTLVSection() const { return TLSTLVSection; }
407 return TLSThreadInitSection;
408 }
409 const MCSection *getCStringSection() const { return CStringSection; }
410 const MCSection *getUStringSection() const { return UStringSection; }
411 MCSection *getTextCoalSection() const { return TextCoalSection; }
413 return ConstTextCoalSection;
414 }
415 const MCSection *getConstDataSection() const { return ConstDataSection; }
416 const MCSection *getDataCoalSection() const { return DataCoalSection; }
418 return ConstDataCoalSection;
419 }
420 const MCSection *getDataCommonSection() const { return DataCommonSection; }
421 MCSection *getDataBSSSection() const { return DataBSSSection; }
423 return FourByteConstantSection;
424 }
426 return EightByteConstantSection;
427 }
429 return SixteenByteConstantSection;
430 }
432 return LazySymbolPointerSection;
433 }
435 return NonLazySymbolPointerSection;
436 }
438 return ThreadLocalPointerSection;
439 }
440 MCSection *getAddrSigSection() const { return AddrSigSection; }
441
442 // COFF specific sections.
443 MCSection *getDrectveSection() const { return DrectveSection; }
444 MCSection *getPDataSection() const { return PDataSection; }
445 MCSection *getXDataSection() const { return XDataSection; }
446 MCSection *getSXDataSection() const { return SXDataSection; }
447 MCSection *getGEHContSection() const { return GEHContSection; }
448 MCSection *getGFIDsSection() const { return GFIDsSection; }
449 MCSection *getGIATsSection() const { return GIATsSection; }
450 MCSection *getGLJMPSection() const { return GLJMPSection; }
451
452 // GOFF specific sections.
453 MCSection *getPPA2ListSection() const { return PPA2ListSection; }
454 MCSection *getADASection() const { return ADASection; }
455 MCSection *getIDRLSection() const { return IDRLSection; }
456
457 // XCOFF specific sections
458 MCSection *getTOCBaseSection() const { return TOCBaseSection; }
459
460 MCSection *getEHFrameSection() const { return EHFrameSection; }
461 MCSection *getSFrameSection() const { return SFrameSection; }
462
463 bool isPositionIndependent() const { return PositionIndependent; }
464
465 // Swift5 Reflection Data Sections
468 return ReflSectionKind !=
470 ? Swift5ReflectionSections[ReflSectionKind]
471 : nullptr;
472 }
473
474private:
475 bool PositionIndependent = false;
476 MCContext *Ctx = nullptr;
477
478 void initMachOMCObjectFileInfo(const Triple &T);
479 void initELFMCObjectFileInfo(const Triple &T, bool Large);
480 void initGOFFMCObjectFileInfo(const Triple &T);
481 void initCOFFMCObjectFileInfo(const Triple &T);
482 void initSPIRVMCObjectFileInfo(const Triple &T);
483 void initWasmMCObjectFileInfo(const Triple &T);
484 void initXCOFFMCObjectFileInfo(const Triple &T);
485 void initDXContainerObjectFileInfo(const Triple &T);
486 MCSection *getDwarfComdatSection(const char *Name, uint64_t Hash) const;
487};
488
489} // end namespace llvm
490
491#endif
#define LLVM_ABI
Definition: Compiler.h:213
std::string Name
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 * getDwarfLoclistsSection() const
MCSection * getDwarfAccelTypesSection() const
const MCSection * getMergeableConst4Section() const
const MCSection * getMergeableConst16Section() const
const MCSection * getMergeableConst32Section() const
MCSection * getDwarfGnuPubNamesSection() const
MCSection * getDwarfStrOffDWOSection() const
MCSection * getAddrSigSection() const
const MCSection * getTLSTLVSection() const
MCSection * getEHFrameSection() const
MCSection * getDwarfRangesSection() const
MCSection * getADASection() const
MCSection * getPDataSection() const
MCSection * getDwarfInfoSection(uint64_t Hash) const
MCSection * getDwarfAccelNamespaceSection() const
MCSection * getFaultMapSection() const
MCSection * getDwarfLineDWOSection() const
bool getSupportsWeakOmittedEHFrame() const
MCSection * getDwarfStrOffSection() const
MCSection * getDwarfInfoDWOSection() const
const MCSection * getConstTextCoalSection() const
MCSection * getGEHContSection() const
MCSection * getDwarfTypesDWOSection() const
MCSection * getDwarfPubNamesSection() const
bool getSupportsCompactUnwindWithoutEHFrame() const
MCSection * getDwarfMacroSection() const
MCSection * getSXDataSection() const
MCSection * getTextCoalSection() const
MCSection * getDwarfStrSection() const
MCSection * getDwarfLineStrSection() const
unsigned getCompactUnwindDwarfEHFrameOnly() const
MCSection * getGFIDsSection() const
MCSection * getDwarfLoclistsDWOSection() const
const MCSection * getConstDataSection() const
const MCSection * getDataCoalSection() const
MCSection * getBSSSection() const
MCSection * getDwarfTUIndexSection() const
MCSection * getDwarfDebugNamesSection() const
MCSection * getRemarksSection() const
const MCSection * getConstDataCoalSection() const
MCSection * getDwarfMacinfoDWOSection() const
MCSection * getDrectveSection() const
MCSection * getSwift5ReflectionSection(llvm::binaryformat::Swift5ReflectionSectionKind ReflSectionKind)
MCSection * getLazySymbolPointerSection() const
MCSection * getDwarfRnglistsSection() const
MCSection * getDwarfAddrSection() const
MCSection * getDwarfLineSection() const
MCSection * getDwarfInfoSection() const
MCSection * getDwarfFrameSection() const
MCSection * getTLSExtraDataSection() const
const MCSection * getEightByteConstantSection() const
const MCSection * getTLSThreadInitSection() const
MCSection * getPPA2ListSection() const
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 * getDwarfStrDWOSection() const
MCSection * getStackMapSection() const
MCSection * getDwarfAccelNamesSection() const
MCSection * getReadOnlySection() const
MCSection * getThreadLocalPointerSection() const
MCSection * getDwarfAbbrevDWOSection() const
MCSection * getDwarfRnglistsDWOSection() const
const MCSection * getFourByteConstantSection() const
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
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 * getDwarfARangesSection() const
MCSection * getDwarfAccelObjCSection() const
MCSection * getNonLazySymbolPointerSection() const
const MCSection * getSixteenByteConstantSection() const
MCSection * getDwarfLocSection() const
virtual unsigned getTextSectionAlignment() const
MCSection * getDataBSSSection() const
const MCSection * getDataCommonSection() const
MCSection * getTextSection() const
MCSection * getCOFFGlobalTypeHashesSection() const
const MCSection * getUStringSection() const
MCSection * getDwarfMacroDWOSection() const
MCContext & getContext() const
MCSection * getDataSection() const
MCSection * getCompactUnwindSection() const
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition: MCSection.h:496
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.
Definition: AddressRanges.h:18