15#ifndef LLVM_OBJECTYAML_DWARFYAML_H
16#define LLVM_OBJECTYAML_DWARFYAML_H
27#include <unordered_map>
40 std::optional<yaml::Hex64>
Code;
47 std::optional<uint64_t>
ID;
75 std::optional<llvm::yaml::Hex64>
Offset;
243 std::optional<std::vector<EntryType>>
Entries;
254 std::optional<std::vector<yaml::Hex64>>
Offsets;
255 std::vector<ListEntries<EntryType>>
Lists;
295 mutable std::unordered_map<uint64_t, std::string> AbbrevTableContents;
338template <>
struct MappingTraits<DWARFYAML::
Data> {
339 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Data &DWARF);
343 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AbbrevTable &AbbrevTable);
347 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Abbrev &Abbrev);
350template <>
struct MappingTraits<DWARFYAML::AttributeAbbrev> {
351 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AttributeAbbrev &AttAbbrev);
354template <>
struct MappingTraits<DWARFYAML::ARangeDescriptor> {
355 LLVM_ABI static void mapping(IO &IO, DWARFYAML::ARangeDescriptor &Descriptor);
359 LLVM_ABI static void mapping(IO &IO, DWARFYAML::ARange &ARange);
363 LLVM_ABI static void mapping(IO &IO, DWARFYAML::RangeEntry &Entry);
367 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Ranges &Ranges);
371 LLVM_ABI static void mapping(IO &IO, DWARFYAML::PubEntry &Entry);
375 LLVM_ABI static void mapping(IO &IO, DWARFYAML::PubSection &Section);
379 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Unit &Unit);
382template <>
struct MappingTraits<DWARFYAML::DebugNamesSection> {
383 LLVM_ABI static void mapping(IO &IO, DWARFYAML::DebugNamesSection &);
386 LLVM_ABI static void mapping(IO &IO, DWARFYAML::DebugNameEntry &);
388template <>
struct MappingTraits<DWARFYAML::DebugNameAbbreviation> {
389 LLVM_ABI static void mapping(IO &IO, DWARFYAML::DebugNameAbbreviation &);
392 LLVM_ABI static void mapping(IO &IO, DWARFYAML::IdxForm &);
396 LLVM_ABI static void mapping(IO &IO, DWARFYAML::Entry &Entry);
400 LLVM_ABI static void mapping(IO &IO, DWARFYAML::FormValue &FormValue);
404 LLVM_ABI static void mapping(IO &IO, DWARFYAML::File &File);
408 LLVM_ABI static void mapping(IO &IO, DWARFYAML::LnctForm &);
411template <>
struct MappingTraits<DWARFYAML::LineTableOpcode> {
412 LLVM_ABI static void mapping(IO &IO,
413 DWARFYAML::LineTableOpcode &LineTableOpcode);
417 LLVM_ABI static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
421 LLVM_ABI static void mapping(IO &IO, DWARFYAML::SegAddrPair &SegAddrPair);
425 LLVM_ABI static void mapping(IO &IO,
426 DWARFYAML::DWARFOperation &DWARFOperation);
429template <
typename EntryType>
431 static void mapping(IO &IO, DWARFYAML::ListTable<EntryType> &ListTable);
434template <
typename EntryType>
436 static void mapping(IO &IO, DWARFYAML::ListEntries<EntryType> &ListEntries);
438 DWARFYAML::ListEntries<EntryType> &ListEntries);
442 LLVM_ABI static void mapping(IO &IO, DWARFYAML::RnglistEntry &RnglistEntry);
446 LLVM_ABI static void mapping(IO &IO, DWARFYAML::LoclistEntry &LoclistEntry);
450 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AddrTableEntry &AddrTable);
453template <>
struct MappingTraits<DWARFYAML::StringOffsetsTable> {
454 LLVM_ABI static void mapping(IO &IO,
455 DWARFYAML::StringOffsetsTable &StrOffsetsTable);
465#define HANDLE_DW_TAG(unused, name, unused2, unused3, unused4) \
466 io.enumCase(value, "DW_TAG_" #name, dwarf::DW_TAG_##name);
469 static void enumeration(IO &io,
dwarf::Tag &value) {
470#include "llvm/BinaryFormat/Dwarf.def"
471 io.enumFallback<Hex16>(value);
475#define HANDLE_DW_LNS(unused, name) \
476 io.enumCase(value, "DW_LNS_" #name, dwarf::DW_LNS_##name);
480#include "llvm/BinaryFormat/Dwarf.def"
481 io.enumFallback<Hex8>(value);
485#define HANDLE_DW_LNE(unused, name) \
486 io.enumCase(value, "DW_LNE_" #name, dwarf::DW_LNE_##name);
490#include "llvm/BinaryFormat/Dwarf.def"
491 io.enumFallback<Hex16>(value);
495#define HANDLE_DW_LNCT(unused, name) \
496 io.enumCase(value, "DW_LNCT_" #name, dwarf::DW_LNCT_##name);
500#include "llvm/BinaryFormat/Dwarf.def"
501 io.enumFallback<Hex16>(value);
505#define HANDLE_DW_AT(unused, name, unused2, unused3) \
506 io.enumCase(value, "DW_AT_" #name, dwarf::DW_AT_##name);
510#include "llvm/BinaryFormat/Dwarf.def"
511 io.enumFallback<Hex16>(value);
515#define HANDLE_DW_FORM(unused, name, unused2, unused3) \
516 io.enumCase(value, "DW_FORM_" #name, dwarf::DW_FORM_##name);
519 static void enumeration(IO &io,
dwarf::Form &value) {
520#include "llvm/BinaryFormat/Dwarf.def"
521 io.enumFallback<Hex16>(value);
525#define HANDLE_DW_IDX(unused, name) \
526 io.enumCase(value, "DW_IDX_" #name, dwarf::DW_IDX_##name);
530#include "llvm/BinaryFormat/Dwarf.def"
531 io.enumFallback<Hex16>(value);
535#define HANDLE_DW_UT(unused, name) \
536 io.enumCase(value, "DW_UT_" #name, dwarf::DW_UT_##name);
540#include "llvm/BinaryFormat/Dwarf.def"
541 io.enumFallback<Hex8>(value);
549 io.enumFallback<Hex16>(value);
553#define HANDLE_DW_RLE(unused, name) \
554 io.enumCase(value, "DW_RLE_" #name, dwarf::DW_RLE_##name);
558#include "llvm/BinaryFormat/Dwarf.def"
562#define HANDLE_DW_LLE(unused, name) \
563 io.enumCase(value, "DW_LLE_" #name, dwarf::DW_LLE_##name);
567#include "llvm/BinaryFormat/Dwarf.def"
571#define HANDLE_DW_OP(id, name, operands, arity, version, vendor) \
572 io.enumCase(value, "DW_OP_" #name, dwarf::DW_OP_##name);
576#include "llvm/BinaryFormat/Dwarf.def"
577 io.enumFallback<yaml::Hex8>(value);
This file defines the DenseMap class.
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.
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
uint8_t FileNameEntryFormatCount
std::vector< std::vector< FormValue > > FileNames
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
uint64_t DirectoriesCount
std::vector< StringRef > IncludeDirs
std::vector< LnctForm > DirectoryEntryFormat
std::vector< LnctForm > FileNameEntryFormat
std::optional< std::vector< uint8_t > > StandardOpcodeLengths
uint8_t DirectoryEntryFormatCount
uint8_t SegmentSelectorSize
std::vector< std::vector< FormValue > > Directories
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...