LLVM  8.0.1
ObjectYAML.h
Go to the documentation of this file.
1 //===- 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 
18 #include <memory>
19 
20 namespace llvm {
21 namespace yaml {
22 
23 class IO;
24 
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 
33 template <> 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
This file declares classes for handling the YAML representation of ELF.
This class represents lattice values for constants.
Definition: AllocatorList.h:24
std::unique_ptr< COFFYAML::Object > Coff
Definition: ObjectYAML.h:27
This file declares classes for handling the YAML representation of wasm binaries. ...
std::unique_ptr< MachOYAML::Object > MachO
Definition: ObjectYAML.h:28
This file declares classes for handling the YAML representation of Mach-O.
std::unique_ptr< MachOYAML::UniversalBinary > FatMachO
Definition: ObjectYAML.h:29
std::unique_ptr< WasmYAML::Object > Wasm
Definition: ObjectYAML.h:30
std::unique_ptr< ELFYAML::Object > Elf
Definition: ObjectYAML.h:26