mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
11d3bd2dae
This reverts commit r290204. Still breaking bots... In a meeting now, so I can't fix it immediately. Bot URL: http://lab.llvm.org:8011/builders/clang-s390x-linux/builds/2415 llvm-svn: 290209
96 lines
3.3 KiB
C++
96 lines
3.3 KiB
C++
//===- DWARFYAML.cpp - DWARF YAMLIO implementation ------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines classes for handling the YAML representation of DWARF Debug
|
|
// Info.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ObjectYAML/DWARFYAML.h"
|
|
|
|
namespace llvm {
|
|
|
|
bool DWARFYAML::Data::isEmpty() const {
|
|
return 0 == DebugStrings.size() + AbbrevDecls.size();
|
|
}
|
|
|
|
namespace yaml {
|
|
|
|
void MappingTraits<DWARFYAML::Data>::mapping(
|
|
IO &IO, DWARFYAML::Data &DWARF) {
|
|
IO.mapOptional("debug_str", DWARF.DebugStrings);
|
|
IO.mapOptional("debug_abbrev", DWARF.AbbrevDecls);
|
|
if(!DWARF.ARanges.empty() || !IO.outputting())
|
|
IO.mapOptional("debug_aranges", DWARF.ARanges);
|
|
if(!DWARF.PubNames.Entries.empty() || !IO.outputting())
|
|
IO.mapOptional("debug_pubnames", DWARF.PubNames);
|
|
if(!DWARF.PubTypes.Entries.empty() || !IO.outputting())
|
|
IO.mapOptional("debug_pubtypes", DWARF.PubTypes);
|
|
if(!DWARF.GNUPubNames.Entries.empty() || !IO.outputting())
|
|
IO.mapOptional("debug_gnu_pubnames", DWARF.GNUPubNames);
|
|
if(!DWARF.GNUPubTypes.Entries.empty() || !IO.outputting())
|
|
IO.mapOptional("debug_gnu_pubtypes", DWARF.GNUPubTypes);
|
|
}
|
|
|
|
void MappingTraits<DWARFYAML::Abbrev>::mapping(
|
|
IO &IO, DWARFYAML::Abbrev &Abbrev) {
|
|
IO.mapRequired("Code", Abbrev.Code);
|
|
IO.mapRequired("Tag", Abbrev.Tag);
|
|
IO.mapRequired("Children", Abbrev.Children);
|
|
IO.mapRequired("Attributes", Abbrev.Attributes);
|
|
}
|
|
|
|
void MappingTraits<DWARFYAML::AttributeAbbrev>::mapping(
|
|
IO &IO, DWARFYAML::AttributeAbbrev &AttAbbrev) {
|
|
IO.mapRequired("Attribute", AttAbbrev.Attribute);
|
|
IO.mapRequired("Form", AttAbbrev.Form);
|
|
}
|
|
|
|
void MappingTraits<DWARFYAML::ARangeDescriptor>::mapping(
|
|
IO &IO, DWARFYAML::ARangeDescriptor &Descriptor) {
|
|
IO.mapRequired("Address", Descriptor.Address);
|
|
IO.mapRequired("Length", Descriptor.Length);
|
|
}
|
|
|
|
void MappingTraits<DWARFYAML::ARange>::mapping(IO &IO,
|
|
DWARFYAML::ARange &Range) {
|
|
IO.mapRequired("Length", Range.Length);
|
|
IO.mapRequired("Version", Range.Version);
|
|
IO.mapRequired("CuOffset", Range.CuOffset);
|
|
IO.mapRequired("AddrSize", Range.AddrSize);
|
|
IO.mapRequired("SegSize", Range.SegSize);
|
|
IO.mapRequired("Descriptors", Range.Descriptors);
|
|
}
|
|
|
|
void MappingTraits<DWARFYAML::PubEntry>::mapping(IO &IO,
|
|
DWARFYAML::PubEntry &Entry) {
|
|
IO.mapRequired("DieOffset", Entry.DieOffset);
|
|
if (reinterpret_cast<DWARFYAML::PubSection *>(IO.getContext())->IsGNUStyle)
|
|
IO.mapRequired("Descriptor", Entry.Descriptor);
|
|
IO.mapRequired("Name", Entry.Name);
|
|
}
|
|
|
|
void MappingTraits<DWARFYAML::PubSection>::mapping(
|
|
IO &IO, DWARFYAML::PubSection &Section) {
|
|
auto OldContext = IO.getContext();
|
|
IO.setContext(&Section);
|
|
|
|
IO.mapRequired("Length", Section.Length);
|
|
IO.mapRequired("Version", Section.Version);
|
|
IO.mapRequired("UnitOffset", Section.UnitOffset);
|
|
IO.mapRequired("UnitSize", Section.UnitSize);
|
|
IO.mapRequired("Entries", Section.Entries);
|
|
|
|
IO.setContext(OldContext);
|
|
}
|
|
|
|
} // namespace llvm::yaml
|
|
|
|
} // namespace llvm
|