//===- COFFYAML.h - COFF YAMLIO implementation ------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file declares classes for handling the YAML representation of COFF. // //===----------------------------------------------------------------------===// #ifndef LLVM_OBJECT_COFFYAML_H #define LLVM_OBJECT_COFFYAML_H #include "llvm/Object/YAML.h" #include "llvm/Support/COFF.h" namespace llvm { namespace COFF { inline Characteristics operator|(Characteristics a, Characteristics b) { uint32_t Ret = static_cast(a) | static_cast(b); return static_cast(Ret); } inline SectionCharacteristics operator|(SectionCharacteristics a, SectionCharacteristics b) { uint32_t Ret = static_cast(a) | static_cast(b); return static_cast(Ret); } } // The structure of the yaml files is not an exact 1:1 match to COFF. In order // to use yaml::IO, we use these structures which are closer to the source. namespace COFFYAML { struct Relocation { uint32_t VirtualAddress; uint16_t Type; StringRef SymbolName; }; struct Section { COFF::section Header; unsigned Alignment; object::yaml::BinaryRef SectionData; std::vector Relocations; StringRef Name; Section(); }; struct Symbol { COFF::symbol Header; COFF::SymbolBaseType SimpleType; COFF::SymbolComplexType ComplexType; object::yaml::BinaryRef AuxiliaryData; StringRef Name; Symbol(); }; struct Object { COFF::header Header; std::vector
Sections; std::vector Symbols; Object(); }; } } LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Section) LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Symbol) LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Relocation) namespace llvm { namespace yaml { template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, COFF::MachineTypes &Value); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, COFF::SymbolBaseType &Value); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, COFF::SymbolStorageClass &Value); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, COFF::SymbolComplexType &Value); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, COFF::RelocationTypeX86 &Value); }; template <> struct ScalarBitSetTraits { static void bitset(IO &IO, COFF::Characteristics &Value); }; template <> struct ScalarBitSetTraits { static void bitset(IO &IO, COFF::SectionCharacteristics &Value); }; template <> struct MappingTraits { static void mapping(IO &IO, COFFYAML::Relocation &Rel); }; template <> struct MappingTraits { static void mapping(IO &IO, COFF::header &H); }; template <> struct MappingTraits { static void mapping(IO &IO, COFFYAML::Symbol &S); }; template <> struct MappingTraits { static void mapping(IO &IO, COFFYAML::Section &Sec); }; template <> struct MappingTraits { static void mapping(IO &IO, COFFYAML::Object &Obj); }; } // end namespace yaml } // end namespace llvm #endif