mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
832d563044
Summary: This patch adds the ability to read a yaml form of a minidump file and write it out as binary. Apart from the minidump header and the stream directory, only three basic stream kinds are supported: - Text: This kind is used for streams which contain textual data. This is typically the contents of a /proc file on linux (e.g. /proc/PID/maps). In this case, we just put the raw stream contents into the yaml. - SystemInfo: This stream contains various bits of information about the host system in binary form. We expose the data in a structured form. - Raw: This kind is used as a fallback when we don't have any special knowledge about the stream. In this case, we just print the stream contents in hex. For this code to be really useful, more stream kinds will need to be added (particularly for things like lists of memory regions and loaded modules). However, these can be added incrementally. Reviewers: jhenderson, zturner, clayborg, aprantl Subscribers: mgorny, lemo, llvm-commits, lldb-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59482 llvm-svn: 356753
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
//===- ObjectYAML.h ---------------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_OBJECTYAML_OBJECTYAML_H
|
|
#define LLVM_OBJECTYAML_OBJECTYAML_H
|
|
|
|
#include "llvm/ObjectYAML/COFFYAML.h"
|
|
#include "llvm/ObjectYAML/ELFYAML.h"
|
|
#include "llvm/ObjectYAML/MachOYAML.h"
|
|
#include "llvm/ObjectYAML/MinidumpYAML.h"
|
|
#include "llvm/ObjectYAML/WasmYAML.h"
|
|
#include "llvm/Support/YAMLTraits.h"
|
|
#include <memory>
|
|
|
|
namespace llvm {
|
|
namespace yaml {
|
|
|
|
class IO;
|
|
|
|
struct YamlObjectFile {
|
|
std::unique_ptr<ELFYAML::Object> Elf;
|
|
std::unique_ptr<COFFYAML::Object> Coff;
|
|
std::unique_ptr<MachOYAML::Object> MachO;
|
|
std::unique_ptr<MachOYAML::UniversalBinary> FatMachO;
|
|
std::unique_ptr<MinidumpYAML::Object> Minidump;
|
|
std::unique_ptr<WasmYAML::Object> Wasm;
|
|
};
|
|
|
|
template <> struct MappingTraits<YamlObjectFile> {
|
|
static void mapping(IO &IO, YamlObjectFile &ObjectFile);
|
|
};
|
|
|
|
} // end namespace yaml
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_OBJECTYAML_OBJECTYAML_H
|