15#ifndef LLVM_OBJECTYAML_DWARFYAML_H
16#define LLVM_OBJECTYAML_DWARFYAML_H
26#include <unordered_map>
39 std::optional<yaml::Hex64>
Code;
46 std::optional<uint64_t>
ID;
74 std::optional<llvm::yaml::Hex64>
Offset;
224 std::optional<std::vector<EntryType>>
Entries;
235 std::optional<std::vector<yaml::Hex64>>
Offsets;
236 std::vector<ListEntries<EntryType>>
Lists;
273 mutable std::unordered_map<uint64_t, AbbrevTableInfo> AbbrevTableInfoMap;
274 mutable std::unordered_map<uint64_t, std::string> AbbrevTableContents;
315template <>
struct MappingTraits<DWARFYAML::
Data> {
316 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Data &DWARF);
320 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AbbrevTable &AbbrevTable);
324 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Abbrev &Abbrev);
327template <>
struct MappingTraits<DWARFYAML::AttributeAbbrev> {
328 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AttributeAbbrev &AttAbbrev);
331template <>
struct MappingTraits<DWARFYAML::ARangeDescriptor> {
332 LLVM_ABI static void mapping(IO &IO, DWARFYAML::ARangeDescriptor &Descriptor);
336 LLVM_ABI static void mapping(IO &IO, DWARFYAML::ARange &ARange);
340 LLVM_ABI static void mapping(IO &IO, DWARFYAML::RangeEntry &Entry);
344 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Ranges &Ranges);
348 LLVM_ABI static void mapping(IO &IO, DWARFYAML::PubEntry &Entry);
352 LLVM_ABI static void mapping(IO &IO, DWARFYAML::PubSection &Section);
356 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Unit &Unit);
359template <>
struct MappingTraits<DWARFYAML::DebugNamesSection> {
360 LLVM_ABI static void mapping(IO &IO, DWARFYAML::DebugNamesSection &);
363 LLVM_ABI static void mapping(IO &IO, DWARFYAML::DebugNameEntry &);
365template <>
struct MappingTraits<DWARFYAML::DebugNameAbbreviation> {
366 LLVM_ABI static void mapping(IO &IO, DWARFYAML::DebugNameAbbreviation &);
369 LLVM_ABI static void mapping(IO &IO, DWARFYAML::IdxForm &);
373 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Entry &Entry);
377 LLVM_ABI static void mapping(IO &IO, DWARFYAML::FormValue &FormValue);
381 LLVM_ABI static void mapping(IO &IO, DWARFYAML::File &File);
384template <>
struct MappingTraits<DWARFYAML::LineTableOpcode> {
385 LLVM_ABI static void mapping(IO &IO,
386 DWARFYAML::LineTableOpcode &LineTableOpcode);
390 LLVM_ABI static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
394 LLVM_ABI static void mapping(IO &IO, DWARFYAML::SegAddrPair &SegAddrPair);
398 LLVM_ABI static void mapping(IO &IO,
399 DWARFYAML::DWARFOperation &DWARFOperation);
402template <
typename EntryType>
404 static void mapping(IO &IO, DWARFYAML::ListTable<EntryType> &ListTable);
407template <
typename EntryType>
409 static void mapping(IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries);
411 DWARFYAML::ListEntries<EntryType> &ListEntries);
415 LLVM_ABI static void mapping(IO &IO, DWARFYAML::RnglistEntry &RnglistEntry);
419 LLVM_ABI static void mapping(IO &IO, DWARFYAML::LoclistEntry &LoclistEntry);
423 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AddrTableEntry &AddrTable);
426template <>
struct MappingTraits<DWARFYAML::StringOffsetsTable> {
427 LLVM_ABI static void mapping(IO &IO,
428 DWARFYAML::StringOffsetsTable &StrOffsetsTable);
438#define HANDLE_DW_TAG(unused, name, unused2, unused3, unused4) \
439 io.enumCase(value, "DW_TAG_" #name, dwarf::DW_TAG_##name);
442 static void enumeration(IO &io,
dwarf::Tag &value) {
443#include "llvm/BinaryFormat/Dwarf.def"
444 io.enumFallback<Hex16>(value);
448#define HANDLE_DW_LNS(unused, name) \
449 io.enumCase(value, "DW_LNS_" #name, dwarf::DW_LNS_##name);
453#include "llvm/BinaryFormat/Dwarf.def"
454 io.enumFallback<Hex8>(value);
458#define HANDLE_DW_LNE(unused, name) \
459 io.enumCase(value, "DW_LNE_" #name, dwarf::DW_LNE_##name);
463#include "llvm/BinaryFormat/Dwarf.def"
464 io.enumFallback<Hex16>(value);
468#define HANDLE_DW_AT(unused, name, unused2, unused3) \
469 io.enumCase(value, "DW_AT_" #name, dwarf::DW_AT_##name);
473#include "llvm/BinaryFormat/Dwarf.def"
474 io.enumFallback<Hex16>(value);
478#define HANDLE_DW_FORM(unused, name, unused2, unused3) \
479 io.enumCase(value, "DW_FORM_" #name, dwarf::DW_FORM_##name);
482 static void enumeration(IO &io,
dwarf::Form &value) {
483#include "llvm/BinaryFormat/Dwarf.def"
484 io.enumFallback<Hex16>(value);
488#define HANDLE_DW_IDX(unused, name) \
489 io.enumCase(value, "DW_IDX_" #name, dwarf::DW_IDX_##name);
493#include "llvm/BinaryFormat/Dwarf.def"
494 io.enumFallback<Hex16>(value);
498#define HANDLE_DW_UT(unused, name) \
499 io.enumCase(value, "DW_UT_" #name, dwarf::DW_UT_##name);
503#include "llvm/BinaryFormat/Dwarf.def"
504 io.enumFallback<Hex8>(value);
512 io.enumFallback<Hex16>(value);
516#define HANDLE_DW_RLE(unused, name) \
517 io.enumCase(value, "DW_RLE_" #name, dwarf::DW_RLE_##name);
521#include "llvm/BinaryFormat/Dwarf.def"
525#define HANDLE_DW_LLE(unused, name) \
526 io.enumCase(value, "DW_LLE_" #name, dwarf::DW_LLE_##name);
530#include "llvm/BinaryFormat/Dwarf.def"
534#define HANDLE_DW_OP(id, name, operands, arity, version, vendor) \
535 io.enumCase(value, "DW_OP_" #name, dwarf::DW_OP_##name);
539#include "llvm/BinaryFormat/Dwarf.def"
540 io.enumFallback<yaml::Hex8>(value);
This file contains constants used for implementing Dwarf debug support.
This file implements a set that has insertion order iteration characteristics.
#define LLVM_YAML_IS_SEQUENCE_VECTOR(type)
Utility for declaring that a std::vector of a particular type should be considered a YAML sequence.
Tagged union holding either a T or a Error.
A vector that has set insertion semantics.
StringRef - Represent a constant reference to a string, i.e.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
void validate(const Triple &TT, const FeatureBitset &FeatureBits)
LineNumberOps
Line Number Standard Opcode Encodings.
LoclistEntries
DWARF v5 loc list entry encoding values.
UnitType
Constants for unit types in DWARF v5.
DwarfFormat
Constants that define the DWARF format as 32 or 64 bit.
RnglistEntries
DWARF v5 range list entry encoding values.
LineNumberExtendedOps
Line Number Extended Opcode Encodings.
This is an optimization pass for GlobalISel generic memory operations.
FunctionAddr VTableAddr uintptr_t uintptr_t Data
llvm::yaml::Hex64 Address
std::optional< yaml::Hex64 > Length
dwarf::DwarfFormat Format
std::vector< ARangeDescriptor > Descriptors
std::optional< yaml::Hex8 > AddrSize
std::vector< Abbrev > Table
std::optional< uint64_t > ID
std::vector< AttributeAbbrev > Attributes
std::optional< yaml::Hex64 > Code
llvm::dwarf::Constants Children
std::optional< yaml::Hex64 > Length
std::optional< yaml::Hex8 > AddrSize
dwarf::DwarfFormat Format
yaml::Hex8 SegSelectorSize
std::vector< SegAddrPair > SegAddrPairs
llvm::dwarf::Attribute Attribute
Class that contains helpful context information when mapping YAML into DWARF data structures.
std::vector< yaml::Hex64 > Values
dwarf::LocationAtom Operator
std::vector< Unit > Units
std::vector< LineTable > DebugLines
std::optional< std::vector< AddrTableEntry > > DebugAddr
std::optional< std::vector< Ranges > > DebugRanges
std::optional< std::vector< ListTable< LoclistEntry > > > DebugLoclists
std::vector< AbbrevTable > DebugAbbrev
LLVM_ABI Expected< AbbrevTableInfo > getAbbrevTableInfoByID(uint64_t ID) const
std::optional< PubSection > GNUPubNames
std::optional< std::vector< ARange > > DebugAranges
LLVM_ABI StringRef getAbbrevTableContentByIndex(uint64_t Index) const
std::optional< PubSection > GNUPubTypes
LLVM_ABI SetVector< StringRef > getNonEmptySectionNames() const
std::optional< std::vector< StringOffsetsTable > > DebugStrOffsets
std::optional< std::vector< StringRef > > DebugStrings
std::optional< std::vector< ListTable< RnglistEntry > > > DebugRnglists
std::optional< PubSection > PubNames
std::optional< DebugNamesSection > DebugNames
std::optional< PubSection > PubTypes
LLVM_ABI bool isEmpty() const
std::vector< IdxForm > Indices
std::vector< yaml::Hex64 > Values
std::vector< DebugNameAbbreviation > Abbrevs
std::vector< DebugNameEntry > Entries
std::vector< FormValue > Values
llvm::yaml::Hex32 AbbrCode
dwarf::LineNumberOps Opcode
std::optional< uint64_t > ExtLen
std::vector< llvm::yaml::Hex64 > StandardOpcodeData
dwarf::LineNumberExtendedOps SubOpcode
std::vector< llvm::yaml::Hex8 > UnknownOpcodeData
std::optional< uint64_t > Length
std::optional< uint8_t > OpcodeBase
std::vector< LineTableOpcode > Opcodes
std::optional< uint64_t > PrologueLength
dwarf::DwarfFormat Format
std::vector< File > Files
std::vector< StringRef > IncludeDirs
std::optional< std::vector< uint8_t > > StandardOpcodeLengths
uint8_t SegmentSelectorSize
std::optional< std::vector< EntryType > > Entries
std::optional< yaml::BinaryRef > Content
std::optional< yaml::Hex8 > AddrSize
std::optional< std::vector< yaml::Hex64 > > Offsets
yaml::Hex8 SegSelectorSize
dwarf::DwarfFormat Format
std::vector< ListEntries< EntryType > > Lists
std::optional< uint32_t > OffsetEntryCount
std::optional< yaml::Hex64 > Length
std::vector< yaml::Hex64 > Values
std::optional< yaml::Hex64 > DescriptionsLength
dwarf::LoclistEntries Operator
std::vector< DWARFOperation > Descriptions
llvm::yaml::Hex8 Descriptor
llvm::yaml::Hex32 DieOffset
dwarf::DwarfFormat Format
std::vector< PubEntry > Entries
Class that describes a range list entry, or a base address selection entry within a range list in the...
llvm::yaml::Hex64 HighOffset
llvm::yaml::Hex64 LowOffset
Class that describes a single range list inside the .debug_ranges section.
std::vector< RangeEntry > Entries
std::optional< llvm::yaml::Hex64 > Offset
std::optional< llvm::yaml::Hex8 > AddrSize
std::vector< yaml::Hex64 > Values
dwarf::RnglistEntries Operator
std::optional< yaml::Hex64 > Length
std::vector< yaml::Hex64 > Offsets
dwarf::DwarfFormat Format
std::optional< uint64_t > AbbrevTableID
dwarf::DwarfFormat Format
std::optional< yaml::Hex64 > Length
yaml::Hex64 TypeSignatureOrDwoID
std::optional< uint8_t > AddrSize
llvm::dwarf::UnitType Type
std::vector< Entry > Entries
std::optional< yaml::Hex64 > AbbrOffset
This class should be specialized by any type that needs to be converted to/from a YAML mapping.
This class should be specialized by any integral type that converts to/from a YAML scalar where there...