1 //===- MCContext.h - Machine Code Context -----------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_MC_MCCONTEXT_H
10 #define LLVM_MC_MCCONTEXT_H
12 #include "llvm/ADT/DenseMap.h"
13 #include "llvm/ADT/Optional.h"
14 #include "llvm/ADT/SetVector.h"
15 #include "llvm/ADT/SmallString.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/StringMap.h"
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/ADT/Twine.h"
20 #include "llvm/BinaryFormat/Dwarf.h"
21 #include "llvm/MC/MCAsmMacro.h"
22 #include "llvm/MC/MCDwarf.h"
23 #include "llvm/MC/MCSubtargetInfo.h"
24 #include "llvm/MC/SectionKind.h"
25 #include "llvm/Support/Allocator.h"
26 #include "llvm/Support/Compiler.h"
27 #include "llvm/Support/Error.h"
28 #include "llvm/Support/MD5.h"
29 #include "llvm/Support/raw_ostream.h"
42 class CodeViewContext
;
45 class MCObjectFileInfo
;
59 /// Context object for machine code objects. This class owns all of the
60 /// sections that it creates.
64 using SymbolTable
= StringMap
<MCSymbol
*, BumpPtrAllocator
&>;
67 /// The SourceMgr for this object, if any.
68 const SourceMgr
*SrcMgr
;
70 /// The SourceMgr for inline assembly, if any.
71 SourceMgr
*InlineSrcMgr
;
73 /// The MCAsmInfo for this target.
76 /// The MCRegisterInfo for this target.
77 const MCRegisterInfo
*MRI
;
79 /// The MCObjectFileInfo for this target.
80 const MCObjectFileInfo
*MOFI
;
82 std::unique_ptr
<CodeViewContext
> CVContext
;
84 /// Allocator object used for creating machine code objects.
86 /// We use a bump pointer allocator to avoid the need to track all allocated
88 BumpPtrAllocator Allocator
;
90 SpecificBumpPtrAllocator
<MCSectionCOFF
> COFFAllocator
;
91 SpecificBumpPtrAllocator
<MCSectionELF
> ELFAllocator
;
92 SpecificBumpPtrAllocator
<MCSectionMachO
> MachOAllocator
;
93 SpecificBumpPtrAllocator
<MCSectionWasm
> WasmAllocator
;
95 /// Bindings of names to symbols.
98 /// A mapping from a local label number and an instance count to a symbol.
99 /// For example, in the assembly
103 /// We have three labels represented by the pairs (1, 0), (2, 0) and (1, 1)
104 DenseMap
<std::pair
<unsigned, unsigned>, MCSymbol
*> LocalSymbols
;
106 /// Keeps tracks of names that were used both for used declared and
107 /// artificial symbols. The value is "true" if the name has been used for a
108 /// non-section symbol (there can be at most one of those, plus an unlimited
109 /// number of section symbols with the same name).
110 StringMap
<bool, BumpPtrAllocator
&> UsedNames
;
112 /// The next ID to dole out to an unnamed assembler temporary symbol with
114 StringMap
<unsigned> NextID
;
116 /// Instances of directional local labels.
117 DenseMap
<unsigned, MCLabel
*> Instances
;
118 /// NextInstance() creates the next instance of the directional local label
119 /// for the LocalLabelVal and adds it to the map if needed.
120 unsigned NextInstance(unsigned LocalLabelVal
);
121 /// GetInstance() gets the current instance of the directional local label
122 /// for the LocalLabelVal and adds it to the map if needed.
123 unsigned GetInstance(unsigned LocalLabelVal
);
125 /// The file name of the log file from the environment variable
126 /// AS_SECURE_LOG_FILE. Which must be set before the .secure_log_unique
127 /// directive is used or it is an error.
129 /// The stream that gets written to for the .secure_log_unique directive.
130 std::unique_ptr
<raw_fd_ostream
> SecureLog
;
131 /// Boolean toggled when .secure_log_unique / .secure_log_reset is seen to
132 /// catch errors if .secure_log_unique appears twice without
133 /// .secure_log_reset appearing between them.
134 bool SecureLogUsed
= false;
136 /// The compilation directory to use for DW_AT_comp_dir.
137 SmallString
<128> CompilationDir
;
139 /// Prefix replacement map for source file information.
140 std::map
<const std::string
, const std::string
> DebugPrefixMap
;
142 /// The main file name if passed in explicitly.
143 std::string MainFileName
;
145 /// The dwarf file and directory tables from the dwarf .file directive.
146 /// We now emit a line table for each compile unit. To reduce the prologue
147 /// size of each line table, the files and directories used by each compile
148 /// unit are separated.
149 std::map
<unsigned, MCDwarfLineTable
> MCDwarfLineTablesCUMap
;
151 /// The current dwarf line information from the last dwarf .loc directive.
152 MCDwarfLoc CurrentDwarfLoc
;
153 bool DwarfLocSeen
= false;
155 /// Generate dwarf debugging info for assembly source files.
156 bool GenDwarfForAssembly
= false;
158 /// The current dwarf file number when generate dwarf debugging info for
159 /// assembly source files.
160 unsigned GenDwarfFileNumber
= 0;
162 /// Sections for generating the .debug_ranges and .debug_aranges sections.
163 SetVector
<MCSection
*> SectionsForRanges
;
165 /// The information gathered from labels that will have dwarf label
166 /// entries when generating dwarf assembly source files.
167 std::vector
<MCGenDwarfLabelEntry
> MCGenDwarfLabelEntries
;
169 /// The string to embed in the debug information for the compile unit, if
171 StringRef DwarfDebugFlags
;
173 /// The string to embed in as the dwarf AT_producer for the compile unit, if
175 StringRef DwarfDebugProducer
;
177 /// The maximum version of dwarf that we should emit.
178 uint16_t DwarfVersion
= 4;
180 /// Honor temporary labels, this is useful for debugging semantic
181 /// differences between temporary and non-temporary labels (primarily on
183 bool AllowTemporaryLabels
= true;
184 bool UseNamesOnTempLabels
= true;
186 /// The Compile Unit ID that we are currently processing.
187 unsigned DwarfCompileUnitID
= 0;
189 struct ELFSectionKey
{
190 std::string SectionName
;
194 ELFSectionKey(StringRef SectionName
, StringRef GroupName
,
196 : SectionName(SectionName
), GroupName(GroupName
), UniqueID(UniqueID
) {
199 bool operator<(const ELFSectionKey
&Other
) const {
200 if (SectionName
!= Other
.SectionName
)
201 return SectionName
< Other
.SectionName
;
202 if (GroupName
!= Other
.GroupName
)
203 return GroupName
< Other
.GroupName
;
204 return UniqueID
< Other
.UniqueID
;
208 struct COFFSectionKey
{
209 std::string SectionName
;
214 COFFSectionKey(StringRef SectionName
, StringRef GroupName
,
215 int SelectionKey
, unsigned UniqueID
)
216 : SectionName(SectionName
), GroupName(GroupName
),
217 SelectionKey(SelectionKey
), UniqueID(UniqueID
) {}
219 bool operator<(const COFFSectionKey
&Other
) const {
220 if (SectionName
!= Other
.SectionName
)
221 return SectionName
< Other
.SectionName
;
222 if (GroupName
!= Other
.GroupName
)
223 return GroupName
< Other
.GroupName
;
224 if (SelectionKey
!= Other
.SelectionKey
)
225 return SelectionKey
< Other
.SelectionKey
;
226 return UniqueID
< Other
.UniqueID
;
230 struct WasmSectionKey
{
231 std::string SectionName
;
235 WasmSectionKey(StringRef SectionName
, StringRef GroupName
,
237 : SectionName(SectionName
), GroupName(GroupName
), UniqueID(UniqueID
) {
240 bool operator<(const WasmSectionKey
&Other
) const {
241 if (SectionName
!= Other
.SectionName
)
242 return SectionName
< Other
.SectionName
;
243 if (GroupName
!= Other
.GroupName
)
244 return GroupName
< Other
.GroupName
;
245 return UniqueID
< Other
.UniqueID
;
249 StringMap
<MCSectionMachO
*> MachOUniquingMap
;
250 std::map
<ELFSectionKey
, MCSectionELF
*> ELFUniquingMap
;
251 std::map
<COFFSectionKey
, MCSectionCOFF
*> COFFUniquingMap
;
252 std::map
<WasmSectionKey
, MCSectionWasm
*> WasmUniquingMap
;
253 StringMap
<bool> RelSecNames
;
255 SpecificBumpPtrAllocator
<MCSubtargetInfo
> MCSubtargetAllocator
;
257 /// Do automatic reset in destructor
260 bool HadError
= false;
262 MCSymbol
*createSymbolImpl(const StringMapEntry
<bool> *Name
,
264 MCSymbol
*createSymbol(StringRef Name
, bool AlwaysAddSuffix
,
267 MCSymbol
*getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal
,
270 MCSectionELF
*createELFSectionImpl(StringRef Section
, unsigned Type
,
271 unsigned Flags
, SectionKind K
,
273 const MCSymbolELF
*Group
,
275 const MCSymbolELF
*Associated
);
277 /// Map of currently defined macros.
278 StringMap
<MCAsmMacro
> MacroMap
;
281 explicit MCContext(const MCAsmInfo
*MAI
, const MCRegisterInfo
*MRI
,
282 const MCObjectFileInfo
*MOFI
,
283 const SourceMgr
*Mgr
= nullptr, bool DoAutoReset
= true);
284 MCContext(const MCContext
&) = delete;
285 MCContext
&operator=(const MCContext
&) = delete;
288 const SourceMgr
*getSourceManager() const { return SrcMgr
; }
290 void setInlineSourceManager(SourceMgr
*SM
) { InlineSrcMgr
= SM
; }
292 const MCAsmInfo
*getAsmInfo() const { return MAI
; }
294 const MCRegisterInfo
*getRegisterInfo() const { return MRI
; }
296 const MCObjectFileInfo
*getObjectFileInfo() const { return MOFI
; }
298 CodeViewContext
&getCVContext();
300 void setAllowTemporaryLabels(bool Value
) { AllowTemporaryLabels
= Value
; }
301 void setUseNamesOnTempLabels(bool Value
) { UseNamesOnTempLabels
= Value
; }
303 /// \name Module Lifetime Management
306 /// reset - return object to right after construction state to prepare
307 /// to process a new module
312 /// \name Symbol Management
315 /// Create and return a new linker temporary symbol with a unique but
316 /// unspecified name.
317 MCSymbol
*createLinkerPrivateTempSymbol();
319 /// Create and return a new assembler temporary symbol with a unique but
320 /// unspecified name.
321 MCSymbol
*createTempSymbol(bool CanBeUnnamed
= true);
323 MCSymbol
*createTempSymbol(const Twine
&Name
, bool AlwaysAddSuffix
,
324 bool CanBeUnnamed
= true);
326 /// Create the definition of a directional local symbol for numbered label
327 /// (used for "1:" definitions).
328 MCSymbol
*createDirectionalLocalSymbol(unsigned LocalLabelVal
);
330 /// Create and return a directional local symbol for numbered label (used
331 /// for "1b" or 1f" references).
332 MCSymbol
*getDirectionalLocalSymbol(unsigned LocalLabelVal
, bool Before
);
334 /// Lookup the symbol inside with the specified \p Name. If it exists,
335 /// return it. If not, create a forward reference and return it.
337 /// \param Name - The symbol name, which must be unique across all symbols.
338 MCSymbol
*getOrCreateSymbol(const Twine
&Name
);
340 /// Gets a symbol that will be defined to the final stack offset of a local
341 /// variable after codegen.
343 /// \param Idx - The index of a local variable passed to \@llvm.localescape.
344 MCSymbol
*getOrCreateFrameAllocSymbol(StringRef FuncName
, unsigned Idx
);
346 MCSymbol
*getOrCreateParentFrameOffsetSymbol(StringRef FuncName
);
348 MCSymbol
*getOrCreateLSDASymbol(StringRef FuncName
);
350 /// Get the symbol for \p Name, or null.
351 MCSymbol
*lookupSymbol(const Twine
&Name
) const;
353 /// Set value for a symbol.
354 void setSymbolValue(MCStreamer
&Streamer
, StringRef Sym
, uint64_t Val
);
356 /// getSymbols - Get a reference for the symbol table for clients that
357 /// want to, for example, iterate over all symbols. 'const' because we
358 /// still want any modifications to the table itself to use the MCContext
360 const SymbolTable
&getSymbols() const { return Symbols
; }
364 /// \name Section Management
368 /// Pass this value as the UniqueID during section creation to get the
369 /// generic section with the given name and characteristics. The usual
370 /// sections such as .text use this ID.
371 GenericSectionID
= ~0U
374 /// Return the MCSection for the specified mach-o section. This requires
375 /// the operands to be valid.
376 MCSectionMachO
*getMachOSection(StringRef Segment
, StringRef Section
,
377 unsigned TypeAndAttributes
,
378 unsigned Reserved2
, SectionKind K
,
379 const char *BeginSymName
= nullptr);
381 MCSectionMachO
*getMachOSection(StringRef Segment
, StringRef Section
,
382 unsigned TypeAndAttributes
, SectionKind K
,
383 const char *BeginSymName
= nullptr) {
384 return getMachOSection(Segment
, Section
, TypeAndAttributes
, 0, K
,
388 MCSectionELF
*getELFSection(const Twine
&Section
, unsigned Type
,
390 return getELFSection(Section
, Type
, Flags
, 0, "");
393 MCSectionELF
*getELFSection(const Twine
&Section
, unsigned Type
,
394 unsigned Flags
, unsigned EntrySize
,
395 const Twine
&Group
) {
396 return getELFSection(Section
, Type
, Flags
, EntrySize
, Group
, ~0);
399 MCSectionELF
*getELFSection(const Twine
&Section
, unsigned Type
,
400 unsigned Flags
, unsigned EntrySize
,
401 const Twine
&Group
, unsigned UniqueID
) {
402 return getELFSection(Section
, Type
, Flags
, EntrySize
, Group
, UniqueID
,
406 MCSectionELF
*getELFSection(const Twine
&Section
, unsigned Type
,
407 unsigned Flags
, unsigned EntrySize
,
408 const Twine
&Group
, unsigned UniqueID
,
409 const MCSymbolELF
*Associated
);
411 MCSectionELF
*getELFSection(const Twine
&Section
, unsigned Type
,
412 unsigned Flags
, unsigned EntrySize
,
413 const MCSymbolELF
*Group
, unsigned UniqueID
,
414 const MCSymbolELF
*Associated
);
416 /// Get a section with the provided group identifier. This section is
417 /// named by concatenating \p Prefix with '.' then \p Suffix. The \p Type
418 /// describes the type of the section and \p Flags are used to further
419 /// configure this named section.
420 MCSectionELF
*getELFNamedSection(const Twine
&Prefix
, const Twine
&Suffix
,
421 unsigned Type
, unsigned Flags
,
422 unsigned EntrySize
= 0);
424 MCSectionELF
*createELFRelSection(const Twine
&Name
, unsigned Type
,
425 unsigned Flags
, unsigned EntrySize
,
426 const MCSymbolELF
*Group
,
427 const MCSectionELF
*RelInfoSection
);
429 void renameELFSection(MCSectionELF
*Section
, StringRef Name
);
431 MCSectionELF
*createELFGroupSection(const MCSymbolELF
*Group
);
433 MCSectionCOFF
*getCOFFSection(StringRef Section
, unsigned Characteristics
,
434 SectionKind Kind
, StringRef COMDATSymName
,
436 unsigned UniqueID
= GenericSectionID
,
437 const char *BeginSymName
= nullptr);
439 MCSectionCOFF
*getCOFFSection(StringRef Section
, unsigned Characteristics
,
441 const char *BeginSymName
= nullptr);
443 MCSectionCOFF
*getCOFFSection(StringRef Section
);
445 /// Gets or creates a section equivalent to Sec that is associated with the
446 /// section containing KeySym. For example, to create a debug info section
447 /// associated with an inline function, pass the normal debug info section
448 /// as Sec and the function symbol as KeySym.
450 getAssociativeCOFFSection(MCSectionCOFF
*Sec
, const MCSymbol
*KeySym
,
451 unsigned UniqueID
= GenericSectionID
);
453 MCSectionWasm
*getWasmSection(const Twine
&Section
, SectionKind K
) {
454 return getWasmSection(Section
, K
, nullptr);
457 MCSectionWasm
*getWasmSection(const Twine
&Section
, SectionKind K
,
458 const char *BeginSymName
) {
459 return getWasmSection(Section
, K
, "", ~0, BeginSymName
);
462 MCSectionWasm
*getWasmSection(const Twine
&Section
, SectionKind K
,
463 const Twine
&Group
, unsigned UniqueID
) {
464 return getWasmSection(Section
, K
, Group
, UniqueID
, nullptr);
467 MCSectionWasm
*getWasmSection(const Twine
&Section
, SectionKind K
,
468 const Twine
&Group
, unsigned UniqueID
,
469 const char *BeginSymName
);
471 MCSectionWasm
*getWasmSection(const Twine
&Section
, SectionKind K
,
472 const MCSymbolWasm
*Group
, unsigned UniqueID
,
473 const char *BeginSymName
);
475 // Create and save a copy of STI and return a reference to the copy.
476 MCSubtargetInfo
&getSubtargetCopy(const MCSubtargetInfo
&STI
);
480 /// \name Dwarf Management
483 /// Get the compilation directory for DW_AT_comp_dir
484 /// The compilation directory should be set with \c setCompilationDir before
485 /// calling this function. If it is unset, an empty string will be returned.
486 StringRef
getCompilationDir() const { return CompilationDir
; }
488 /// Set the compilation directory for DW_AT_comp_dir
489 void setCompilationDir(StringRef S
) { CompilationDir
= S
.str(); }
491 /// Get the debug prefix map.
492 const std::map
<const std::string
, const std::string
> &
493 getDebugPrefixMap() const {
494 return DebugPrefixMap
;
497 /// Add an entry to the debug prefix map.
498 void addDebugPrefixMapEntry(const std::string
&From
, const std::string
&To
);
500 // Remaps all debug directory paths in-place as per the debug prefix map.
501 void RemapDebugPaths();
503 /// Get the main file name for use in error messages and debug
504 /// info. This can be set to ensure we've got the correct file name
505 /// after preprocessing or for -save-temps.
506 const std::string
&getMainFileName() const { return MainFileName
; }
508 /// Set the main file name and override the default.
509 void setMainFileName(StringRef S
) { MainFileName
= S
; }
511 /// Creates an entry in the dwarf file and directory tables.
512 Expected
<unsigned> getDwarfFile(StringRef Directory
, StringRef FileName
,
514 MD5::MD5Result
*Checksum
,
515 Optional
<StringRef
> Source
, unsigned CUID
);
517 bool isValidDwarfFileNumber(unsigned FileNumber
, unsigned CUID
= 0);
519 const std::map
<unsigned, MCDwarfLineTable
> &getMCDwarfLineTables() const {
520 return MCDwarfLineTablesCUMap
;
523 MCDwarfLineTable
&getMCDwarfLineTable(unsigned CUID
) {
524 return MCDwarfLineTablesCUMap
[CUID
];
527 const MCDwarfLineTable
&getMCDwarfLineTable(unsigned CUID
) const {
528 auto I
= MCDwarfLineTablesCUMap
.find(CUID
);
529 assert(I
!= MCDwarfLineTablesCUMap
.end());
533 const SmallVectorImpl
<MCDwarfFile
> &getMCDwarfFiles(unsigned CUID
= 0) {
534 return getMCDwarfLineTable(CUID
).getMCDwarfFiles();
537 const SmallVectorImpl
<std::string
> &getMCDwarfDirs(unsigned CUID
= 0) {
538 return getMCDwarfLineTable(CUID
).getMCDwarfDirs();
541 bool hasMCLineSections() const {
542 for (const auto &Table
: MCDwarfLineTablesCUMap
)
543 if (!Table
.second
.getMCDwarfFiles().empty() || Table
.second
.getLabel())
548 unsigned getDwarfCompileUnitID() { return DwarfCompileUnitID
; }
550 void setDwarfCompileUnitID(unsigned CUIndex
) {
551 DwarfCompileUnitID
= CUIndex
;
554 /// Specifies the "root" file and directory of the compilation unit.
555 /// These are "file 0" and "directory 0" in DWARF v5.
556 void setMCLineTableRootFile(unsigned CUID
, StringRef CompilationDir
,
557 StringRef Filename
, MD5::MD5Result
*Checksum
,
558 Optional
<StringRef
> Source
) {
559 getMCDwarfLineTable(CUID
).setRootFile(CompilationDir
, Filename
, Checksum
,
563 /// Reports whether MD5 checksum usage is consistent (all-or-none).
564 bool isDwarfMD5UsageConsistent(unsigned CUID
) const {
565 return getMCDwarfLineTable(CUID
).isMD5UsageConsistent();
568 /// Saves the information from the currently parsed dwarf .loc directive
569 /// and sets DwarfLocSeen. When the next instruction is assembled an entry
570 /// in the line number table with this information and the address of the
571 /// instruction will be created.
572 void setCurrentDwarfLoc(unsigned FileNum
, unsigned Line
, unsigned Column
,
573 unsigned Flags
, unsigned Isa
,
574 unsigned Discriminator
) {
575 CurrentDwarfLoc
.setFileNum(FileNum
);
576 CurrentDwarfLoc
.setLine(Line
);
577 CurrentDwarfLoc
.setColumn(Column
);
578 CurrentDwarfLoc
.setFlags(Flags
);
579 CurrentDwarfLoc
.setIsa(Isa
);
580 CurrentDwarfLoc
.setDiscriminator(Discriminator
);
584 void clearDwarfLocSeen() { DwarfLocSeen
= false; }
586 bool getDwarfLocSeen() { return DwarfLocSeen
; }
587 const MCDwarfLoc
&getCurrentDwarfLoc() { return CurrentDwarfLoc
; }
589 bool getGenDwarfForAssembly() { return GenDwarfForAssembly
; }
590 void setGenDwarfForAssembly(bool Value
) { GenDwarfForAssembly
= Value
; }
591 unsigned getGenDwarfFileNumber() { return GenDwarfFileNumber
; }
593 void setGenDwarfFileNumber(unsigned FileNumber
) {
594 GenDwarfFileNumber
= FileNumber
;
597 const SetVector
<MCSection
*> &getGenDwarfSectionSyms() {
598 return SectionsForRanges
;
601 bool addGenDwarfSection(MCSection
*Sec
) {
602 return SectionsForRanges
.insert(Sec
);
605 void finalizeDwarfSections(MCStreamer
&MCOS
);
607 const std::vector
<MCGenDwarfLabelEntry
> &getMCGenDwarfLabelEntries() const {
608 return MCGenDwarfLabelEntries
;
611 void addMCGenDwarfLabelEntry(const MCGenDwarfLabelEntry
&E
) {
612 MCGenDwarfLabelEntries
.push_back(E
);
615 void setDwarfDebugFlags(StringRef S
) { DwarfDebugFlags
= S
; }
616 StringRef
getDwarfDebugFlags() { return DwarfDebugFlags
; }
618 void setDwarfDebugProducer(StringRef S
) { DwarfDebugProducer
= S
; }
619 StringRef
getDwarfDebugProducer() { return DwarfDebugProducer
; }
621 dwarf::DwarfFormat
getDwarfFormat() const {
622 // TODO: Support DWARF64
623 return dwarf::DWARF32
;
626 void setDwarfVersion(uint16_t v
) { DwarfVersion
= v
; }
627 uint16_t getDwarfVersion() const { return DwarfVersion
; }
631 char *getSecureLogFile() { return SecureLogFile
; }
632 raw_fd_ostream
*getSecureLog() { return SecureLog
.get(); }
634 void setSecureLog(std::unique_ptr
<raw_fd_ostream
> Value
) {
635 SecureLog
= std::move(Value
);
638 bool getSecureLogUsed() { return SecureLogUsed
; }
639 void setSecureLogUsed(bool Value
) { SecureLogUsed
= Value
; }
641 void *allocate(unsigned Size
, unsigned Align
= 8) {
642 return Allocator
.Allocate(Size
, Align
);
645 void deallocate(void *Ptr
) {}
647 bool hadError() { return HadError
; }
648 void reportError(SMLoc L
, const Twine
&Msg
);
649 // Unrecoverable error has occurred. Display the best diagnostic we can
650 // and bail via exit(1). For now, most MC backend errors are unrecoverable.
651 // FIXME: We should really do something about that.
652 LLVM_ATTRIBUTE_NORETURN
void reportFatalError(SMLoc L
,
655 const MCAsmMacro
*lookupMacro(StringRef Name
) {
656 StringMap
<MCAsmMacro
>::iterator I
= MacroMap
.find(Name
);
657 return (I
== MacroMap
.end()) ? nullptr : &I
->getValue();
660 void defineMacro(StringRef Name
, MCAsmMacro Macro
) {
661 MacroMap
.insert(std::make_pair(Name
, std::move(Macro
)));
664 void undefineMacro(StringRef Name
) { MacroMap
.erase(Name
); }
667 } // end namespace llvm
669 // operator new and delete aren't allowed inside namespaces.
670 // The throw specifications are mandated by the standard.
671 /// Placement new for using the MCContext's allocator.
673 /// This placement form of operator new uses the MCContext's allocator for
674 /// obtaining memory. It is a non-throwing new, which means that it returns
675 /// null on error. (If that is what the allocator does. The current does, so if
676 /// this ever changes, this operator will have to be changed, too.)
677 /// Usage looks like this (assuming there's an MCContext 'Context' in scope):
679 /// // Default alignment (8)
680 /// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
681 /// // Specific alignment
682 /// IntegerLiteral *Ex2 = new (Context, 4) IntegerLiteral(arguments);
684 /// Please note that you cannot use delete on the pointer; it must be
685 /// deallocated using an explicit destructor call followed by
686 /// \c Context.Deallocate(Ptr).
688 /// \param Bytes The number of bytes to allocate. Calculated by the compiler.
689 /// \param C The MCContext that provides the allocator.
690 /// \param Alignment The alignment of the allocated memory (if the underlying
691 /// allocator supports it).
692 /// \return The allocated memory. Could be NULL.
693 inline void *operator new(size_t Bytes
, llvm::MCContext
&C
,
694 size_t Alignment
= 8) noexcept
{
695 return C
.allocate(Bytes
, Alignment
);
697 /// Placement delete companion to the new above.
699 /// This operator is just a companion to the new above. There is no way of
700 /// invoking it directly; see the new operator for more details. This operator
701 /// is called implicitly by the compiler if a placement new expression using
702 /// the MCContext throws in the object constructor.
703 inline void operator delete(void *Ptr
, llvm::MCContext
&C
, size_t) noexcept
{
707 /// This placement form of operator new[] uses the MCContext's allocator for
708 /// obtaining memory. It is a non-throwing new[], which means that it returns
710 /// Usage looks like this (assuming there's an MCContext 'Context' in scope):
712 /// // Default alignment (8)
713 /// char *data = new (Context) char[10];
714 /// // Specific alignment
715 /// char *data = new (Context, 4) char[10];
717 /// Please note that you cannot use delete on the pointer; it must be
718 /// deallocated using an explicit destructor call followed by
719 /// \c Context.Deallocate(Ptr).
721 /// \param Bytes The number of bytes to allocate. Calculated by the compiler.
722 /// \param C The MCContext that provides the allocator.
723 /// \param Alignment The alignment of the allocated memory (if the underlying
724 /// allocator supports it).
725 /// \return The allocated memory. Could be NULL.
726 inline void *operator new[](size_t Bytes
, llvm::MCContext
&C
,
727 size_t Alignment
= 8) noexcept
{
728 return C
.allocate(Bytes
, Alignment
);
731 /// Placement delete[] companion to the new[] above.
733 /// This operator is just a companion to the new[] above. There is no way of
734 /// invoking it directly; see the new[] operator for more details. This operator
735 /// is called implicitly by the compiler if a placement new[] expression using
736 /// the MCContext throws in the object constructor.
737 inline void operator delete[](void *Ptr
, llvm::MCContext
&C
) noexcept
{
741 #endif // LLVM_MC_MCCONTEXT_H