[yaml2obj] Add support for sh_addralign via `AddressAlign` key.
[oota-llvm.git] / include / llvm / Object / ELFYAML.h
1 //===- ELFYAML.h - ELF YAMLIO implementation --------------------*- 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 /// \file
11 /// \brief This file declares classes for handling the YAML representation
12 /// of ELF.
13 ///
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_OBJECT_ELFYAML_H
17 #define LLVM_OBJECT_ELFYAML_H
18
19 #include "llvm/Object/YAML.h"
20 #include "llvm/Support/ELF.h"
21
22 namespace llvm {
23 namespace ELFYAML {
24
25 // These types are invariant across 32/64-bit ELF, so for simplicity just
26 // directly give them their exact sizes. We don't need to worry about
27 // endianness because these are just the types in the YAMLIO structures,
28 // and are appropriately converted to the necessary endianness when
29 // reading/generating binary object files.
30 // The naming of these types is intended to be ELF_PREFIX, where PREFIX is
31 // the common prefix of the respective constants. E.g. ELF_EM corresponds
32 // to the `e_machine` constants, like `EM_X86_64`.
33 // In the future, these would probably be better suited by C++11 enum
34 // class's with appropriate fixed underlying type.
35 LLVM_YAML_STRONG_TYPEDEF(uint16_t, ELF_ET)
36 LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_EM)
37 LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFCLASS)
38 LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFDATA)
39 LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_SHT)
40 // Just use 64, since it can hold 32-bit values too.
41 LLVM_YAML_STRONG_TYPEDEF(uint64_t, ELF_SHF)
42
43 // For now, hardcode 64 bits everywhere that 32 or 64 would be needed
44 // since 64-bit can hold 32-bit values too.
45 struct FileHeader {
46   ELF_ELFCLASS Class;
47   ELF_ELFDATA Data;
48   ELF_ET Type;
49   ELF_EM Machine;
50   llvm::yaml::Hex64 Entry;
51 };
52 struct Section {
53   StringRef Name;
54   ELF_SHT Type;
55   ELF_SHF Flags;
56   llvm::yaml::Hex64 Address;
57   object::yaml::BinaryRef Content;
58   llvm::yaml::Hex64 AddressAlign;
59 };
60 struct Object {
61   FileHeader Header;
62   std::vector<Section> Sections;
63 };
64
65 } // end namespace ELFYAML
66 } // end namespace llvm
67
68 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::Section)
69
70 namespace llvm {
71 namespace yaml {
72
73 template <>
74 struct ScalarEnumerationTraits<ELFYAML::ELF_ET> {
75   static void enumeration(IO &IO, ELFYAML::ELF_ET &Value);
76 };
77
78 template <>
79 struct ScalarEnumerationTraits<ELFYAML::ELF_EM> {
80   static void enumeration(IO &IO, ELFYAML::ELF_EM &Value);
81 };
82
83 template <>
84 struct ScalarEnumerationTraits<ELFYAML::ELF_ELFCLASS> {
85   static void enumeration(IO &IO, ELFYAML::ELF_ELFCLASS &Value);
86 };
87
88 template <>
89 struct ScalarEnumerationTraits<ELFYAML::ELF_ELFDATA> {
90   static void enumeration(IO &IO, ELFYAML::ELF_ELFDATA &Value);
91 };
92
93 template <>
94 struct ScalarEnumerationTraits<ELFYAML::ELF_SHT> {
95   static void enumeration(IO &IO, ELFYAML::ELF_SHT &Value);
96 };
97
98 template <>
99 struct ScalarBitSetTraits<ELFYAML::ELF_SHF> {
100   static void bitset(IO &IO, ELFYAML::ELF_SHF &Value);
101 };
102
103 template <>
104 struct MappingTraits<ELFYAML::FileHeader> {
105   static void mapping(IO &IO, ELFYAML::FileHeader &FileHdr);
106 };
107
108 template <>
109 struct MappingTraits<ELFYAML::Section> {
110   static void mapping(IO &IO, ELFYAML::Section &Section);
111 };
112
113 template <>
114 struct MappingTraits<ELFYAML::Object> {
115   static void mapping(IO &IO, ELFYAML::Object &Object);
116 };
117
118 } // end namespace yaml
119 } // end namespace llvm
120
121 #endif