LLVM 22.0.0git
DWP.h
Go to the documentation of this file.
1#ifndef LLVM_DWP_DWP_H
2#define LLVM_DWP_DWP_H
3
4#include "DWPStringPool.h"
5#include "llvm/ADT/ArrayRef.h"
10#include "llvm/MC/MCSection.h"
11#include "llvm/MC/MCStreamer.h"
14#include "llvm/Support/Error.h"
15#include <deque>
16#include <vector>
17
18namespace llvm {
24
31
32// Holds data for Skeleton, Split Compilation, and Type Unit Headers (only in
33// v5) as defined in Dwarf 5 specification, 7.5.1.2, 7.5.1.3 and Dwarf 4
34// specification 7.5.1.1.
36 // unit_length field. Note that the type is uint64_t even in 32-bit dwarf.
38
39 // version field.
41
42 // unit_type field. Initialized only if Version >= 5.
44
45 // address_size field.
47
48 // debug_abbrev_offset field. Note that the type is uint64_t even in 32-bit
49 // dwarf. It is assumed to be 0.
51
52 // dwo_id field. This resides in the header only if Version >= 5.
53 // In earlier versions, it is read from DW_AT_GNU_dwo_id.
54 std::optional<uint64_t> Signature;
55
56 // Derived from the length of Length field.
58
59 // The size of the Header in bytes. This is derived while parsing the header,
60 // and is stored as a convenience.
62};
63
66 const char *Name = "";
67 const char *DWOName = "";
68};
69
71 OnCuIndexOverflow OverflowOptValue);
72
74 const StringMap<std::pair<MCSection *, DWARFSectionKind>> &KnownSections,
75 const MCSection *StrSection, const MCSection *StrOffsetSection,
76 const MCSection *TypesSection, const MCSection *CUIndexSection,
77 const MCSection *TUIndexSection, const MCSection *InfoSection,
78 const object::SectionRef &Section, MCStreamer &Out,
79 std::deque<SmallString<32>> &UncompressedSections,
80 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry,
81 StringRef &CurStrSection, StringRef &CurStrOffsetSection,
82 std::vector<StringRef> &CurTypesSection,
83 std::vector<StringRef> &CurInfoSection, StringRef &AbbrevSection,
84 StringRef &CurCUIndexSection, StringRef &CurTUIndexSection,
85 std::vector<std::pair<DWARFSectionKind, uint32_t>> &SectionLength);
86
89
91 MCSection *StrOffsetSection,
92 StringRef CurStrSection,
93 StringRef CurStrOffsetSection,
95
97buildDuplicateError(const std::pair<uint64_t, UnitIndexEntry> &PrevE,
98 const CompileUnitIdentifiers &ID, StringRef DWPName);
99
100LLVM_ABI void
101writeIndex(MCStreamer &Out, MCSection *Section,
102 ArrayRef<unsigned> ContributionOffsets,
103 const MapVector<uint64_t, UnitIndexEntry> &IndexEntries,
104 uint32_t IndexVersion);
105
106} // namespace llvm
107#endif // LLVM_DWP_DWP_H
Analysis containing CSE Info
Definition CSEInfo.cpp:27
#define LLVM_ABI
Definition Compiler.h:213
This file implements a map that provides insertion order iteration.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:41
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
Tagged union holding either a T or a Error.
Definition Error.h:485
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition MCSection.h:496
Streaming machine code generation interface.
Definition MCStreamer.h:220
This class implements a map that also provides access to all stored values in a deterministic order.
Definition MapVector.h:36
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition StringMap.h:133
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
This is a value type class that represents a single section in the list of sections in the object fil...
Definition ObjectFile.h:83
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
DwarfFormat
Constants that define the DWARF format as 32 or 64 bit.
Definition Dwarf.h:92
@ DWARF32
Definition Dwarf.h:92
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI Error buildDuplicateError(const std::pair< uint64_t, UnitIndexEntry > &PrevE, const CompileUnitIdentifiers &ID, StringRef DWPName)
Definition DWP.cpp:544
LLVM_ABI void writeIndex(MCStreamer &Out, MCSection *Section, ArrayRef< unsigned > ContributionOffsets, const MapVector< uint64_t, UnitIndexEntry > &IndexEntries, uint32_t IndexVersion)
Definition DWP.cpp:490
LLVM_ABI void writeStringsAndOffsets(MCStreamer &Out, DWPStringPool &Strings, MCSection *StrOffsetSection, StringRef CurStrSection, StringRef CurStrOffsetSection, uint16_t Version)
Definition DWP.cpp:426
FunctionAddr VTableAddr uintptr_t uintptr_t Version
Definition InstrProf.h:302
LLVM_ABI Error write(MCStreamer &Out, ArrayRef< std::string > Inputs, OnCuIndexOverflow OverflowOptValue)
Definition DWP.cpp:622
LLVM_ABI Error handleSection(const StringMap< std::pair< MCSection *, DWARFSectionKind > > &KnownSections, const MCSection *StrSection, const MCSection *StrOffsetSection, const MCSection *TypesSection, const MCSection *CUIndexSection, const MCSection *TUIndexSection, const MCSection *InfoSection, const object::SectionRef &Section, MCStreamer &Out, std::deque< SmallString< 32 > > &UncompressedSections, uint32_t(&ContributionOffsets)[8], UnitIndexEntry &CurEntry, StringRef &CurStrSection, StringRef &CurStrOffsetSection, std::vector< StringRef > &CurTypesSection, std::vector< StringRef > &CurInfoSection, StringRef &AbbrevSection, StringRef &CurCUIndexSection, StringRef &CurTUIndexSection, std::vector< std::pair< DWARFSectionKind, uint32_t > > &SectionLength)
Definition DWP.cpp:553
LLVM_ABI Expected< InfoSectionUnitHeader > parseInfoSectionUnitHeader(StringRef Info)
Definition DWP.cpp:356
OnCuIndexOverflow
Definition DWP.h:19
@ SoftStop
Definition DWP.h:21
@ HardStop
Definition DWP.h:20
@ Continue
Definition DWP.h:22
const char * DWOName
Definition DWP.h:67
const char * Name
Definition DWP.h:66
dwarf::DwarfFormat Format
Definition DWP.h:57
std::optional< uint64_t > Signature
Definition DWP.h:54
uint64_t DebugAbbrevOffset
Definition DWP.h:50
StringRef DWPName
Definition DWP.h:29
std::string DWOName
Definition DWP.h:28
DWARFUnitIndex::Entry::SectionContribution Contributions[8]
Definition DWP.h:26
std::string Name
Definition DWP.h:27