blob: 00ce86430fca42dfc19bfc8ccc56b03dd5872532 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- ObjectYAML.h ---------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_OBJECTYAML_OBJECTYAML_H
11#define LLVM_OBJECTYAML_OBJECTYAML_H
12
13#include "llvm/ObjectYAML/COFFYAML.h"
14#include "llvm/ObjectYAML/ELFYAML.h"
15#include "llvm/ObjectYAML/MachOYAML.h"
16#include "llvm/ObjectYAML/WasmYAML.h"
17#include "llvm/Support/YAMLTraits.h"
18#include <memory>
19
20namespace llvm {
21namespace yaml {
22
23class IO;
24
25struct YamlObjectFile {
26 std::unique_ptr<ELFYAML::Object> Elf;
27 std::unique_ptr<COFFYAML::Object> Coff;
28 std::unique_ptr<MachOYAML::Object> MachO;
29 std::unique_ptr<MachOYAML::UniversalBinary> FatMachO;
30 std::unique_ptr<WasmYAML::Object> Wasm;
31};
32
33template <> struct MappingTraits<YamlObjectFile> {
34 static void mapping(IO &IO, YamlObjectFile &ObjectFile);
35};
36
37} // end namespace yaml
38} // end namespace llvm
39
40#endif // LLVM_OBJECTYAML_OBJECTYAML_H